Returns the value of the curve at point t.
t
The given parametric value t will be between 0.0 and 1.0, inclusive.
@override double transformInternal(double t) { return sin(count * t * pi); }