cubicBezierP3 function

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

Implementation

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