Interface IPointResamplerFactory
A Factory class to get PointResamplers, which are used to reduce datasets to minimal sets for efficient on-screen rendering.
Namespace:
Assembly: .dll
Syntax
public interface IPointResamplerFactory
Methods
<TX,TY>get(Class<TX> xClass, Class<TY> yClass)
Gets the IPointResampler instance to handle combination of TX and TY generic type parameters.
Declaration
public abstract IPointResampler<TX,TY> <TX,TY>get(Class<TX> xClass, Class<TY> yClass)
Parameters
| Type | Name | Description |
|---|---|---|
| Class<TX> | xClass | The TX type to handle. |
| Class<TY> | yClass | The TY type to handle. |
Returns
| Type | Description |
|---|---|
| IPointResampler<TX,TY> | The IPointResampler instance |