Lines Matching refs:e0
162 e0 crs sp crs e1
165 * e0, e1: left/right edges
166 * sp : symmetry/reflection point (sp == (e0+e1)/2)
171 | 0 , t <= e0
173 | Bez((t-e0)/crs) , e0 < t < e0+crs
175 | 1 , e0 + crs <= t <= sp
182 - square -> e0: 0, e1: 1, crs: 0
183 - ramp up -> e0: 0, e1: +inf, crs: 1
184 - ramp down -> e0: -inf, e1: 1, crs: 1
185 - triangle -> e0: 0, e1: 1, crs: 0.5
186 - round -> e0: 0, e1: 1, crs: 0.5 (nonlinear cubic mapper)
187 - smooth -> e0: 0, e1: 1, crs: 0.5 (nonlinear cubic mapper)
194 float e0, e1, crs;
204 float e0, e1, crs;
209 , e0(sinfo.e0)
215 t = std::min(t - e0, e1 - t);