NPlot.PageAlignedPhysicalAxis.PhysicalToWorld C# (CSharp) Méthode

PhysicalToWorld() public méthode

return the world coordinate corresponding to the supplied physical coordinate.
public PhysicalToWorld ( float physical ) : double
physical float physical coordinate to determine world coordinate for.
Résultat double
        public double PhysicalToWorld( float physical )
        {
            return ((float)(physical-pMin_) / (float)pLength_) * worldLength_ + worldMin_;
        }