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_;
        }