static bool HHVM_METHOD(ImagickDraw, pathCurveToSmoothRelative, double x2, double y2, double x, double y) { auto wand = getDrawingWandResource(Object{this_}); DrawPathCurveToSmoothRelative(wand->getWand(), x2, y2, x, y); return true; }
MAGICK_NET_EXPORT void DrawingWand_PathSmoothCurveToRel(DrawingWand *instance, const double x2, const double y2, const double x, const double y, ExceptionInfo **exception) { DrawPathCurveToSmoothRelative(instance, x2, y2, x, y); MAGICK_NET_SET_DRAW_EXCEPTION; }