menu
three_js_curves package
documentation
core/interpolations.dart
PathInterpolations
cubicBezierP1 static method
cubicBezierP1 static method
dark_mode
light_mode
cubicBezierP1
static method
double
cubicBezierP1
(
double
t
,
double
p
)
Implementation
static double cubicBezierP1(double t, double p) { final k = 1 - t; return 3 * k * k * t * p; }
three_js_curves package
documentation
core/interpolations
PathInterpolations
cubicBezierP1 static method
PathInterpolations class