Home | History | Annotate | Download | only in svg

Lines Matching refs:m_current

39     m_current = mode == AbsoluteCoordinates ? targetPoint : m_current + targetPoint;
42 m_path->moveTo(m_current);
48 m_current = mode == AbsoluteCoordinates ? targetPoint : m_current + targetPoint;
49 m_path->addLineTo(m_current);
56 m_path->addBezierCurveTo(m_current + point1, m_current + point2, m_current + targetPoint);
57 m_current += targetPoint;
59 m_current = targetPoint;
60 m_path->addBezierCurveTo(point1, point2, m_current);