Cairo.Point.Point C# (CSharp) Method

Point() public method

public Point ( int x, int y )
x int
y int
        public Point(int x, int y)
        {
            this.x = x;
            this.y = y;
        }
Point