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

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

Constructor
public PointD ( double x, double y )
x double X-Coordinate of the point.
y double Y-Coordinate of the point.
        public PointD(double x, double y)
        {
            X = x;
            Y = y;
        }