setTranslationRaw method

void setTranslationRaw(
  1. double x,
  2. double y,
  3. double z
)

Sets the translation vector in this homogeneous transformation matrix.

Implementation

void setTranslationRaw(double x, double y, double z) {
  _m4storage[14] = z;
  _m4storage[13] = y;
  _m4storage[12] = x;
}