NPlot.PointD.PointD C# (CSharp) Method

PointD() public method

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