Returns the value of the curve at point t.
t
The value of t must be between 0.0 and 1.0, inclusive.
@override double transform(double t) { if (t == 1.0) return 1.0; t *= count; return t - t.truncateToDouble(); }