Skip to content

Instantly share code, notes, and snippets.

@funwithflutter
Created March 23, 2020 12:58
Show Gist options
  • Save funwithflutter/87e01bd1bc04302636f49a4e409e70ad to your computer and use it in GitHub Desktop.
Save funwithflutter/87e01bd1bc04302636f49a4e409e70ad to your computer and use it in GitHub Desktop.
Sine curve class
class SineCurve extends Curve {
final double count;
SineCurve({this.count = 3});
// t = x
@override
double transformInternal(double t) {
var val = sin(count * 2 * pi * t) * 0.5 + 0.5;
return val; //f(x)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment