setTranslationRaw method

void setTranslationRaw (double x, double y, 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;
}