Accord.Point.Point C# (CSharp) Method

Point() public method

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