| 
    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 | |||
| CoordinateSystem1D (Func< T, double > coordinateFunction) | |||
| Creates a new CoordinateSystem1D<T> using the specified coordinateFunction .   More... | |||
| double | ToPlotCoordinates (T dataPoint) | ||
Transform the specified dataPoint  into a double. 
 
  | |||
| double | ToPlotCoordinates (T dataPoint) | ||
Transform the specified dataPoint  into a double.   More... | |||
Properties | |
| Func< T, double > | CoordinateFunction [get, set] | 
| The method used to transform data points.   More... | |
A coordinate system using a custom method to transform data points.
| T | The type of data elements. | 
Definition at line 1056 of file CoordinateSystems.cs.
| VectSharp.Plots.CoordinateSystem1D< T >.CoordinateSystem1D | ( | Func< T, double > | coordinateFunction | ) | 
Creates a new CoordinateSystem1D<T> using the specified coordinateFunction .
| coordinateFunction | The method used to transform data points. | 
Definition at line 1067 of file CoordinateSystems.cs.
| double VectSharp.Plots.CoordinateSystem1D< T >.ToPlotCoordinates | ( | T | dataPoint | ) | 
Transform the specified dataPoint  into a double. 
| dataPoint | The data point whose coordinates should be determined. | 
double representing the dataPoint  in plot space.Implements VectSharp.Plots.ICoordinateSystem1D< T >.
Definition at line 1073 of file CoordinateSystems.cs.
      
  | 
  getset | 
The method used to transform data points.
Definition at line 1061 of file CoordinateSystems.cs.