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

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

Construct
public PhysicalAxis ( Axis a, Point physicalMin, Point physicalMax ) : System
a Axis The axis this is a physical representation of.
physicalMin Point the physical position of the world minimum axis value.
physicalMax Point the physical position of the world maximum axis value.
Результат System
        public PhysicalAxis(Axis a, Point physicalMin, Point physicalMax)
        {
            Axis = a;
            PhysicalMin = physicalMin;
            PhysicalMax = physicalMax;
        }