Ask Your Question
4

What is the method for calculating the aiNode::mTransformation in AI?

asked 2023-05-30 13:20:58 +0000

pufferfish gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2023-05-30 13:32:02 +0000

qstack gravatar image

The aiNode::mTransformation in AI (Assimp) is calculated using a combination of the parent node's transformation matrix and the node's local transformation matrix.

  1. First, the parent node's transformation matrix is retrieved. This is usually the identity matrix for the root node.

  2. Next, the node's local transformation matrix is retrieved from aiNode::mTransformation. This matrix represents any transformation (translation, rotation, scaling) applied directly to the node.

  3. The two matrices are multiplied together to get the final transformation matrix for the node.

  4. This process is repeated for each child node, using the final transformation matrix for the parent as the starting point.

  5. The resulting transformation matrix for each node is used to transform the node's vertices and establish its position in the scene.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-05-30 13:20:58 +0000

Seen: 4 times

Last updated: May 30 '23