Lines Matching defs:c1
1191 void SVGPathParser::_curveTo(Point const &c0, Point const &c1, Point const &p)
1193 _pushCurve(new CubicBezier(_current, c0, c1, p));
1195 _cubic_tangent = p + ( p - c1 );
1393 Point c1 = _pop_point();
1395 _curveTo(c0, c1, p);
1402 Point c1 = _pop_point();
1403 _curveTo(_cubic_tangent, c1, p);
1499 Point c1 = _pop_point();
1501 _curveTo(c0, c1, p);
1508 Point c1 = _pop_point();
1509 _curveTo(_cubic_tangent, c1, p);