how can i use qarp for cubic curves?
is this for that?
"Quadratic interpolation. Returns lerp(lerp(a, b, x), lerp(b, c, x), x)"
im unsure what lerp is tho plz explain ill check the wiki 2
and is x the time value
a number from 0 to 1
Cubic curves would be... lerp(lerp(lerp(a, b, x), lerp(b, c, x), x), lerp(lerp(b, c, x), lerp(c, d, x), x))
In other words... lerp(qarp(a, b, c, x), qarp(b, c, d, x))
You should use this instead of self-made expression since it performs faster and is looks cleaner :).