Delegate MapFunc
A user supplied function to transform the original map data coordinates to a new coordinate system.
Namespace: PLplot
Assembly: PLplotNet.dll
Syntax
public delegate void MapFunc(Int32 n, Double[] x, Double[] y);
Parameters
Type | Name | Description |
---|---|---|
Int32 | n | Number of elements in the x and y vectors. |
Double[] | x | original X coordinates that should be replaced by the corresponding plot X coordinates |
Double[] | y | original Y coordinates that should be replaced by the corresponding plot Y coordinates |