Home
last modified time | relevance | path

Searched refs:cy_ (Results 1 – 2 of 2) sorted by relevance

/external/libchrome/ui/gfx/geometry/
Dcubic_bezier.cc34 cy_ = 3.0 * p1y; in InitCoefficients()
35 by_ = 3.0 * (p2y - p1y) - cy_; in InitCoefficients()
36 ay_ = 1.0 - cy_ - by_; in InitCoefficients()
92 const double c = cy_; in InitRange()
202 return cy_ / 3.0; in GetY1()
210 return (by_ + cy_) / 3.0 + GetY1(); in GetY2()
Dcubic_bezier.h24 return ((ay_ * t + by_) * t + cy_) * t; in SampleCurveY()
32 return (3.0 * ay_ * t + 2.0 * by_) * t + cy_; in SampleCurveDerivativeY()
83 double cy_; variable