Home | History | Annotate | Download | only in svg

Lines Matching refs:x2

32         SVGPathSegCurvetoCubic(float x, float y, float x1, float y1, float x2, float y2) : SVGPathSeg() , m_x(x) , m_y(y) , m_x1(x1) , m_y1(y1) , m_x2(x2) , m_y2(y2) {}
48 void setX2(float x2) { m_x2 = x2; }
49 float x2() const { return m_x2; }
65 static PassRefPtr<SVGPathSegCurvetoCubicAbs> create(float x, float y, float x1, float y1, float x2, float y2)
67 return adoptRef(new SVGPathSegCurvetoCubicAbs(x, y, x1, y1, x2, y2));
74 SVGPathSegCurvetoCubicAbs(float x, float y, float x1, float y1, float x2, float y2);
79 static PassRefPtr<SVGPathSegCurvetoCubicRel> create(float x, float y, float x1, float y1, float x2, float y2)
81 return adoptRef(new SVGPathSegCurvetoCubicRel(x, y, x1, y1, x2, y2));
88 SVGPathSegCurvetoCubicRel(float x, float y, float x1, float y1, float x2, float y2);