getTranslation method
Returns the translation vector from this homogeneous transformation matrix.
Implementation
Vector3 getTranslation() {
final double z = _m4storage[14];
final double y = _m4storage[13];
final double x = _m4storage[12];
return new Vector3(x, y, z);
}