Cairo.PointD.PointD C# (CSharp) Method

PointD() public method

public PointD ( double x, double y )
x double
y double
        public PointD(double x, double y)
        {
            this.x = x;
            this.y = y;
        }
PointD