Arm Community
Site
Search
User
Site
Search
User
Support forums
Mobile, Graphics, and Gaming forum
Tips & Tricks: Viewing Transforms
Locked
Locked
Replies
2 replies
Subscribers
136 subscribers
Views
3566 views
Users
0 members are here
OpenGL ES
Options
Share
More actions
Related
How was your experience today?
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion
Tips & Tricks: Viewing Transforms
guestposter guestposter
over 12 years ago
Note: This was originally posted on 27th October 2009 at
http://forums.arm.com
How OpenGL ES handles matrices...
When you multiply the position vector with several matrices to achieve transformations such as translation, rotation, scaling or projection, the effect when applying the resulting matrix on a position vector is as if the individual matrix multiplication operations were performed from right to left.
The usual sequence of matrices is, from left to right:
1. Projection matrix
2. View matrix
3. Any number of model transformation matrices, from most global to most local.
You must then multiply the resulting matrix by the vertex position with the matrix on the left.
0
Quote