So I’ve always been pretty bad at math or actually just haven’t done much math in the past but have been scripting for 3 years and I know how to do the majority of what I want but when it comes to stuff like Bezier Curves etc… I can’t really wrap my head around it and don’t feel super competent since I can’t memorize it either. Do any of you actually feel the need to memorize equations like I have below and or do you know them off the top of your head or would you say it’s normal even for very successful devs to have to use already made equations and just implement them into their game?
function B(t,p0,p1,p2,p3)
return (1 - t)^3*p0 + 3*(1 - t)^2*t*p1 + 3*(1 - t)*t^2*p2 + t^3*p3
end