HomeSort by relevance Sort by last modified time
    Searched refs:CubicBezier (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/ui/gfx/geometry/
cubic_bezier.h 13 class GFX_EXPORT CubicBezier {
15 CubicBezier(double x1, double y1, double x2, double y2);
16 ~CubicBezier();
34 DISALLOW_ASSIGN(CubicBezier);
cubic_bezier_unittest.cc 14 CubicBezier function(0.25, 0.0, 0.75, 1.0);
42 CubicBezier function(0.5, -1.0, 0.5, 2.0);
74 scoped_ptr<CubicBezier> function(
75 new CubicBezier(0.25, (1.0 / 3.0), 0.75, (2.0 / 3.0)));
81 function.reset(new CubicBezier(0.25, -0.5, 0.75, (-1.0 / 6.0)));
87 function.reset(new CubicBezier(0.25, 0.25, 0.75, 0.5));
93 function.reset(new CubicBezier(0.0, 1.0, 1.0, 0.0));
99 function.reset(new CubicBezier(0.25, 0.1, 0.75, 0.9));
105 function.reset(new CubicBezier(0.25, 2.5, 0.75, 0.5));
109 function.reset(new CubicBezier(0.25, 0.5, 0.75, -1.5))
    [all...]
cubic_bezier.cc 69 CubicBezier::CubicBezier(double x1, double y1, double x2, double y2)
76 CubicBezier::~CubicBezier() {
79 double CubicBezier::Solve(double x) const {
83 double CubicBezier::Slope(double x) const {
90 void CubicBezier::Range(double* min, double* max) const {
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
PathTraversalState.cpp 79 struct CubicBezier {
80 CubicBezier() { }
81 CubicBezier(const FloatPoint& s, const FloatPoint& c1, const FloatPoint& c2, const FloatPoint& e)
100 void split(CubicBezier& left, CubicBezier& right) const
207 float distance = curveLength<CubicBezier>(*this, CubicBezier(m_current, newControl1, newControl2, newEnd));
  /external/chromium_org/ui/gfx/animation/
tween.cc 56 return gfx::CubicBezier(0.4, 0, 0.2, 1).Solve(state);
59 return gfx::CubicBezier(0, 0, .2, 1).Solve(state);
62 return gfx::CubicBezier(0.4, 0, 1, 1).Solve(state);
  /external/chromium_org/cc/animation/
timing_function.h 46 gfx::CubicBezier bezier_;
  /external/chromium_org/third_party/WebKit/Source/platform/animation/
TimingFunction.h 239 DEFINE_TIMING_FUNCTION_TYPE_CASTS(CubicBezier);

Completed in 309 milliseconds