Home | History | Annotate | Download | only in svg

Lines Matching refs:targetPoint

36 void SVGPathBuilder::moveTo(const FloatPoint& targetPoint, bool closed, PathCoordinateMode mode)
39 m_current = mode == AbsoluteCoordinates ? targetPoint : m_current + targetPoint;
45 void SVGPathBuilder::lineTo(const FloatPoint& targetPoint, PathCoordinateMode mode)
48 m_current = mode == AbsoluteCoordinates ? targetPoint : m_current + targetPoint;
52 void SVGPathBuilder::curveToCubic(const FloatPoint& point1, const FloatPoint& point2, const FloatPoint& targetPoint, PathCoordinateMode mode)
56 m_path->addBezierCurveTo(m_current + point1, m_current + point2, m_current + targetPoint);
57 m_current += targetPoint;
59 m_current = targetPoint;