Home | History | Annotate | Download | only in svg

Lines Matching refs:y1

32         SVGPathSegCurvetoQuadratic(float x, float y, float x1, float y1)
33 : SVGPathSeg(), m_x(x), m_y(y), m_x1(x1), m_y1(y1) {}
46 void setY1(float y1) { m_y1 = y1; }
47 float y1() const { return m_y1; }
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);