You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Term A post-multiplied by term B is equal to A · B.
So this is doing v * M where v is a length-4 column vector and M is a 4x4 matrix. That's not a legal multiplication: the sizes don't match, right?
Does this algorithm mean to do M * v (so s/post-multiplied/pre-multiplied/ or switching the order of args to "post-multiplied" around) or does this algorithm mean to have v be a row vector?
Looking at what implementations do here, it looks to me like Blink does M * v. So does Gecko, as far as I can tell.