LWJGL Forum

Programming => Bug Reports / RFE => Topic started by: revelation60 on June 05, 2011, 19:21:11

Title: [RFE] Add getters for matrix properties
Post by: revelation60 on June 05, 2011, 19:21:11
Getters for stuff like translation, and rotation would be really welcome. Now I have to reconstruct them from the elements.

Matrix4f mat;
mat.getTranslation();
mat.get33Block(); // get 3x3 block for example
mat.getRotationAngle();


Thanks!