lookupTranslations static method
- Matrix4 matrix
translations for x,y,z
a b c p
d e i q
g i j r
l m n s
row vector of l m n
Implementation
static Vector3 lookupTranslations(Matrix4 matrix) => Vector3(
matrix[12], //
matrix[13],
matrix[14],
);