Accord.DoublePoint.DoublePoint C# (CSharp) Method

DoublePoint() public method

Initializes a new instance of the DoublePoint structure.
public DoublePoint ( double x, double y ) : System
x double X axis coordinate.
y double Y axis coordinate.
return System
        public DoublePoint(double x, double y)
        {
            this.X = x;
            this.Y = y;
        }