ImageMagick.DrawableTranslation.DrawableTranslation C# (CSharp) Method

DrawableTranslation() public method

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