CubicBezierP3 function

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

Implementation

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