Home | History | Annotate | Download | only in MagickWand

Lines Matching refs:y1

75   PathCurveToOperation,                      /* C|c (x1 y1 x2 y2 x y)+ */
76 PathCurveToQuadraticBezierOperation, /* Q|q (x1 y1 x y)+ */
2866 % point to (x,y) using (x1,y1) as the control point at the beginning of
2874 % const double y1,const double x2,const double y2,const double x,
2883 % o y1: y ordinate of control point for curve beginning
2896 const double x1,const double y1,const double x2,const double y2,
2909 mode == AbsolutePathMode ? 'C' : 'c',x1,y1,x2,y2,x,y);
2912 (void) MVGAutoWrapPrintf(wand," %.20g %.20g %.20g %.20g %.20g %.20g",x1,y1,
2917 const double y1,const double x2,const double y2,const double x,const double y)
2923 DrawPathCurveTo(wand,AbsolutePathMode,x1,y1,x2,y2,x,y);
2939 % point to (x,y) using (x1,y1) as the control point at the beginning of
2947 % const double y1,const double x2,const double y2,const double x,
2956 % o y1: y ordinate of control point for curve beginning
2968 const double y1,const double x2,const double y2,const double x,const double y)
2974 DrawPathCurveTo(wand,RelativePathMode,x1,y1,x2,y2,x,y);
2990 % from the current point to (x,y) using (x1,y1) as the control point using
2997 % const double x1,const double y1,onst double x,const double y)
3005 % o y1: y ordinate of the control point
3014 const PathMode mode,const double x1,double y1,const double x,const double y)
3026 mode == AbsolutePathMode ? 'Q' : 'q',x1,y1,x,y);
3029 (void) MVGAutoWrapPrintf(wand," %.20g %.20g %.20g %.20g",x1,y1,x,y);
3033 const double x1,const double y1,const double x,const double y)
3039 DrawPathCurveToQuadraticBezier(wand,AbsolutePathMode,x1,y1,x,y);
3055 % from the current point to (x,y) using (x1,y1) as the control point using
3062 % const double x1,const double y1,const double x,const double y)
3070 % o y1: y ordinate of the control point
3078 const double x1,const double y1,const double x,const double y)
3084 DrawPathCurveToQuadraticBezier(wand,RelativePathMode,x1,y1,x,y);
4321 % const double y1,const double x2,const double y2)
4327 % o y1: y ordinate of first coordinate
4334 WandExport void DrawRectangle(DrawingWand *wand,const double x1,const double y1,
4341 (void) MVGPrintf(wand,"rectangle %.20g %.20g %.20g %.20g\n",x1,y1,x2,y2);
4475 % void DrawRoundRectangle(DrawingWand *wand,double x1,double y1,
4484 % o y1: y ordinate of first coordinate
4495 WandExport void DrawRoundRectangle(DrawingWand *wand,double x1,double y1,
4503 x1,y1,x2,y2,rx,ry);
4733 affine.ty=CurrentContext->bounds.y1;
6749 % void DrawSetViewbox(DrawingWand *wand,const double x1,const double y1,
6758 % o y1: top y ordinate
6766 const double y1,const double x2,const double y2)
6772 (void) MVGPrintf(wand,"viewbox %.20g %.20g %.20g %.20g\n",x1,y1,x2,y2);