drawTranslate method
DrawTranslate() applies a translation to the current coordinate system which moves the coordinate system origin to the specified coordinate.
x
: new x ordinate for coordinate system originy
: new y ordinate for coordinate system origin
Implementation
void drawTranslate(double x, double y) =>
_magickWandBindings.DrawTranslate(_wandPtr, x, y);