NPlot.PointD.PointD C# (CSharp) Méthode

PointD() public méthode

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