Delegate TransformFunc
A callback function that defines the transformation between the zero-based indices of the matrix f and the world coordinates.
Namespace: PLplot
Assembly: PLplotNet.dll
Syntax
public delegate void TransformFunc(Double x, Double y, out Double xp, out Double yp, IntPtr data);
Parameters
Type | Name | Description |
---|---|---|
Double | x | x-position to be transformed. |
Double | y | y-position to be transformed. |
Double | xp | transformed x-position |
Double | yp | transformed y-position |
IntPtr | data | Generic pointer to additional input data that may be required by the callback routine in order to implement the transformation. |