VectSharp 2.6.1
A light library for C# vector graphics
|
A coordinate system using a custom method to transform data points. More...
Public Member Functions | |||
CoordinateSystem (Func< T, Point > coordinateFunction) | |||
Create a new CoordinateSystem<T> using the specified method. More... | |||
Point | ToPlotCoordinates (T dataPoint) | ||
Transform the specified dataPoint into a plot Point.
| |||
Point | ToPlotCoordinates (T dataPoint) | ||
Transform the specified dataPoint into a plot Point. More... | |||
Properties | |
Func< T, Point > | CoordinateFunction [get, set] |
The method used to transform the data elements into plot Points. More... | |
A coordinate system using a custom method to transform data points.
T | The type of data elements. |
Definition at line 64 of file CoordinateSystems.cs.
VectSharp.Plots.CoordinateSystem< T >.CoordinateSystem | ( | Func< T, Point > | coordinateFunction | ) |
Create a new CoordinateSystem<T> using the specified method.
coordinateFunction | The method used to transform the data elements into plot Points. |
Definition at line 75 of file CoordinateSystems.cs.
Point VectSharp.Plots.CoordinateSystem< T >.ToPlotCoordinates | ( | T | dataPoint | ) |
Transform the specified dataPoint into a plot Point.
dataPoint | The data point whose coordinates should be determined. |
Implements VectSharp.Plots.ICoordinateSystem< T >.
Definition at line 81 of file CoordinateSystems.cs.
|
getset |
The method used to transform the data elements into plot Points.
Definition at line 69 of file CoordinateSystems.cs.