Searched defs:ShapeGenerator (Results 1 – 2 of 2) sorted by relevance
201 struct ShapeGenerator { struct202 SkCubicMap shape_mapper,203 ease_mapper;204 float e0, e1, crs;206 ShapeGenerator(const ShapeInfo& sinfo, float ease_lo, float ease_hi) in ShapeGenerator() function213 float operator()(float t) const { in operator ()()
148 struct ShapeGenerator { struct149 float lo, // constant value for t < 0150 hi; // constant value for t > 1151 float (*func)(float); // shape generator for t in [0..1]153 float operator()(float t) const { return this->func(t); } in operator ()()