show/hide this revision's text 2 formatting

Please note that the expression can be done much more efficient mathematically.

P(t) = P0*(1-t)^2 + P1*2*(1-t)t P1*2*(1-t)*t + P2t^2P2*t^2

and

P = P0*u*u + P1*2*u*t + P2*t*t

both hold t multiplications which can be simplified.

For example:

C = A*t + B(1-t) = A*t + B - B*t = t*(A-B) + B = You saved one multiplication = Double performance.

show/hide this revision's text 1

Please note that the expression can be done much more efficient mathematically.

P(t) = P0*(1-t)^2 + P1*2*(1-t)t + P2t^2

and

P = P0*u*u + P1*2*u*t + P2*t*t

both hold t multiplications which can be simplified.

For example:

C = A*t + B(1-t) = A*t + B - B*t = t*(A-B) + B = You saved one multiplication = Double performance.