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