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