Is Processing doing Post Multiplication for the transformation?
in
Programming Questions
•
2 years ago
Is Processing like Opengl, doing Postmultiplication of transformation?
If so,
translate(A);
rotate(B);
translate(C);
rect();
is interpreted as rect is translate(C) followed by rotate(B) which is finally followed by translate(A)?
am i right?
If so,
translate(A);
rotate(B);
translate(C);
rect();
is interpreted as rect is translate(C) followed by rotate(B) which is finally followed by translate(A)?
am i right?
1