ImageMagick.DrawablePoint.DrawablePoint C# (CSharp) Метод

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

Initializes a new instance of the DrawablePoint class.
public DrawablePoint ( double x, double y )
x double The X coordinate.
y double The Y coordinate.
    public DrawablePoint(double x, double y)
    {
      X = x;
      Y = y;
    }