示例#1
0
static bool HHVM_METHOD(ImagickDraw, pathCurveToSmoothAbsolute,
    double x2, double y2, double x, double y) {
  auto wand = getDrawingWandResource(Object{this_});
  DrawPathCurveToSmoothAbsolute(wand->getWand(), x2, y2, x, y);
  return true;
}
示例#2
0
MAGICK_NET_EXPORT void DrawingWand_PathSmoothCurveToAbs(DrawingWand *instance, const double x2, const double y2, const double x, const double y, ExceptionInfo **exception)
{
  DrawPathCurveToSmoothAbsolute(instance, x2, y2, x, y);
  MAGICK_NET_SET_DRAW_EXCEPTION;
}