lookupTranslations static method

Vector3 lookupTranslations(
  1. 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],
    );