AForge.Point.Point C# (CSharp) Метод

Point() публичный Метод

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.
Результат System
        public Point( float x, float y )
        {
            this.X = x;
            this.Y = y;
        }