Home
last modified time | relevance | path

Searched refs:coeff_ (Results 1 - 2 of 2) sorted by relevance

/foundation/graphic/graphic_3d/lume/metaobject/src/curves/
H A Dbezier_curve.h48 return ((coeff_[0].x * t + coeff_[1].x) * t + coeff_[2].x) * t;
52 return ((coeff_[0].y * t + coeff_[1].y) * t + coeff_[2].y) * t;
56 return (3.f * coeff_[0].x * t + 2.f * coeff_[1].x) * t + coeff_[2].x;
59 BASE_NS::Math::Vec2 coeff_[ member in Curves::Easing::final
[all...]
H A Dbezier_curve.cpp56 coeff_[2] = cp1 * 3.f; in UpdateCoefficients()
57 coeff_[1] = (cp2 - cp1) * 3.f - coeff_[2]; in UpdateCoefficients()
58 coeff_[0] = BASE_NS::Math::Vec2(1.f, 1.f) - coeff_[2] - coeff_[1]; in UpdateCoefficients()

Completed in 1 milliseconds