Exemplo n.º 1
0
 /// <summary>
 /// Transforms the Y coordinate from the functional coordinate system to the relative image coordinate system.
 /// </summary>
 /// <param name="y">The Y coordinate from the functional coordinate system</param>
 /// <returns></returns>
 public double transformFunctionYToPixelY(T y)
 {
     return(TransformerAxisY.transformFunctionPointToImagePoint(y));
 }
Exemplo n.º 2
0
 public T transformImageYToFunctionY(double pixelY)
 {
     return(TransformerAxisY.transformImagePointToFunctionPoint(pixelY));
 }