예제 #1
0
static bool HHVM_METHOD(ImagickDraw, pathLineToVerticalAbsolute, double y) {
  auto wand = getDrawingWandResource(Object{this_});
  DrawPathLineToVerticalAbsolute(wand->getWand(), y);
  return true;
}
예제 #2
0
MAGICK_NET_EXPORT void DrawingWand_PathLineToVerticalAbs(DrawingWand *instance, const double y, ExceptionInfo **exception)
{
  DrawPathLineToVerticalAbsolute(instance, y);
  MAGICK_NET_SET_DRAW_EXCEPTION;
}