Cairo.PointD.PointD C# (CSharp) Метод

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

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