Home | History | Annotate | Download | only in cairo

Lines Matching defs:anticlockwise

147 void Path::addArc(const FloatPoint& p, float r, float startAngle, float endAngle, bool anticlockwise)
158 && ((anticlockwise && (endAngle < startAngle)) || (!anticlockwise && (startAngle < endAngle)))) {
159 if (anticlockwise)
166 if (anticlockwise)
238 // anticlockwise logic
239 bool anticlockwise = false;
249 anticlockwise = true;
251 anticlockwise = true;
255 addArc(p, radius, sa, ea, anticlockwise);