cubicBezierP3 static method

double cubicBezierP3(
  1. double t,
  2. double p
)

Implementation

static double cubicBezierP3(double t, double p) {
  return t * t * t * p;
}