#ifndef matrix_H #define matrix_H #include /// Matrice identite const GLdouble identity[] = {1,0,0,0, 0,1,0,0, 0,0,1,0, 0,0,0,1}; /// Affichage void printMatrix( const GLdouble* m ) { for( int i=0; i<16; ++i ) std::cout<