Example #1
0
void Matrix44::translateLocal(double x, double y, double z){
    Matrix44 t = Matrix44();
    t.setTranslationMatrix(x, y, z);
    operator=(t*(*this));
}