Home | History | Annotate | Download | only in svg

Lines Matching refs:ry

241     float ry;
246 if (!m_source->parseArcToSegment(rx, ry, angle, largeArc, sweep, targetPoint))
249 // If rx = 0 or ry = 0 then this arc is treated as a straight line segment (a "lineto") joining the endpoints.
252 ry = fabsf(ry);
253 if (!rx || !ry) {
270 return decomposeArcToCubic(angle, rx, ry, point1, targetPoint, largeArc, sweep);
272 m_consumer->arcTo(rx, ry, angle, largeArc, sweep, targetPoint, m_mode);
404 bool SVGPathParser::decomposeArcToCubic(float angle, float rx, float ry, FloatPoint& point1, FloatPoint& point2, bool largeArcFlag, bool sweepFlag)
414 float squareRy = ry * ry;
423 ry *= sqrtf(radiiScale);
427 pointTransform.scale(1 / rx, 1 / ry);
456 pointTransform.scale(rx, ry);