Example #1
0
 /// <summary>
 /// Transforms the X coordinate from the functional coordinate system to the image coordinate system.
 /// </summary>
 /// <param name="x">The X coordinate from the functional coordinate system</param>
 /// <returns></returns>
 public double transformFunctionXToPixelX(T x)
 {
     return(TransformerAxisX.transformFunctionPointToImagePoint(x));
 }
Example #2
0
 public T transformImageXtoFunctionX(double pixelX)
 {
     return(TransformerAxisX.transformImagePointToFunctionPoint(pixelX));
 }