Exemple #1
0
static bool HHVM_METHOD(ImagickDraw, pathMoveToRelative,
    double x, double y) {
  auto wand = getDrawingWandResource(Object{this_});
  DrawPathMoveToRelative(wand->getWand(), x, y);
  return true;
}
Exemple #2
0
MAGICK_NET_EXPORT void DrawingWand_PathMoveToRel(DrawingWand *instance, const double x, const double y, ExceptionInfo **exception)
{
  DrawPathMoveToRelative(instance, x, y);
  MAGICK_NET_SET_DRAW_EXCEPTION;
}