Difference between revisions of "Transform matrix"
Jump to navigation
Jump to search
m (added Category:3D using HotCat) |
m (Text replacement - ". [[Categ" to ". ==References== {{Reflist}} [[Categ") |
||
Line 4: | Line 4: | ||
Transform matrixes are useful in [[scene graphs]], for example in [[RealityKit]]. | Transform matrixes are useful in [[scene graphs]], for example in [[RealityKit]]. | ||
+ | |||
+ | ==References== | ||
+ | {{Reflist}} | ||
[[Category:3D]] | [[Category:3D]] |
Revision as of 19:46, 18 August 2024
A transform matrix is a data structure that holds the scale, rotation, and translation of an object relative to a root node, also called a parent transform.
Transform matrixes are often a 4x4 matrix for 3D. It represents scale, rotation, and translation in that order, known as SRT.
Transform matrixes are useful in scene graphs, for example in RealityKit.