Home | History | Annotate | Download | only in svg

Lines Matching refs:x1

32         SVGPathSegCurvetoQuadratic(float x, float y, float x1, float y1)
33 : SVGPathSeg(), m_x(x), m_y(y), m_x1(x1), m_y1(y1) {}
43 void setX1(float x1) { m_x1 = x1; }
44 float x1() const { return m_x1; }
58 static PassRefPtr<SVGPathSegCurvetoQuadraticAbs> create(float x, float y, float x1, float y1) { return adoptRef(new SVGPathSegCurvetoQuadraticAbs(x, y, x1, y1)); }
64 SVGPathSegCurvetoQuadraticAbs(float x, float y, float x1, float y1);
69 static PassRefPtr<SVGPathSegCurvetoQuadraticRel> create(float x, float y, float x1, float y1) { return adoptRef(new SVGPathSegCurvetoQuadraticRel(x, y, x1, y1)); }
75 SVGPathSegCurvetoQuadraticRel(float x, float y, float x1, float y1);