Lines Matching refs:CubicBezier
16 CubicBezier::CubicBezier(double p1x, double p1y, double p2x, double p2y) { in CubicBezier() function in gfx::CubicBezier
22 CubicBezier::CubicBezier(const CubicBezier& other) = default;
24 void CubicBezier::InitCoefficients(double p1x, in InitCoefficients()
39 void CubicBezier::InitGradients(double p1x, in InitGradients()
78 void CubicBezier::InitRange(double p1y, double p2y) { in InitRange()
135 double CubicBezier::GetDefaultEpsilon() { in GetDefaultEpsilon()
139 double CubicBezier::SolveCurveX(double x, double epsilon) const { in SolveCurveX()
181 double CubicBezier::Solve(double x) const { in Solve()
185 double CubicBezier::SlopeWithEpsilon(double x, double epsilon) const { in SlopeWithEpsilon()
193 double CubicBezier::Slope(double x) const { in Slope()
197 double CubicBezier::GetX1() const { in GetX1()
201 double CubicBezier::GetY1() const { in GetY1()
205 double CubicBezier::GetX2() const { in GetX2()
209 double CubicBezier::GetY2() const { in GetY2()