NPlot.PageAlignedPhysicalAxis.PhysicalToWorld C# (CSharp) Метод

PhysicalToWorld() публичный Метод

return the world coordinate corresponding to the supplied physical coordinate.
public PhysicalToWorld ( float physical ) : double
physical float physical coordinate to determine world coordinate for.
Результат double
        public double PhysicalToWorld( float physical )
        {
            return ((float)(physical-pMin_) / (float)pLength_) * worldLength_ + worldMin_;
        }