Create a translation matrix given a translation vector
Matrix4f tm = translationMatrix(Vector3f(3.0f, 5.0f, 2.5f)); Vector3f t = translation(tm); assert(t == Vector3f(3.0f, 5.0f, 2.5f));
See Implementation
Create a translation matrix given a translation vector