I can’t remember where I read recently that math.pow is often a culprit of performance problems, since the CPU can calculate this very quickly all on it’s own, attempts to optimize it can cause caching problems, which make it worse.
math.pow
I can’t remember where I read recently that
math.powis often a culprit of performance problems, since the CPU can calculate this very quickly all on it’s own, attempts to optimize it can cause caching problems, which make it worse.