j´ai une petite question, en c++ comment declare ton une matrice ?
j´ai essaié un truc du genre :
[code] Mx = MatriceX[0][0] = 1,
MatriceX[0][1] = 0,
MatriceX[0][2] = 0,
MatriceX[0][3] = 0,
MatriceX[1][0] = 0,
MatriceX[0][1] = cos(angle),
MatriceX[0][2] = -sin(angle),
MatriceX[0][3] = 0,
MatriceX[2][0] = 0,
MatriceX[0][1] = sin(angle),
MatriceX[0][2] = cos(angle),
MatriceX[0][3] = 0,
MatriceX[3][0] = 0,
MatriceX[0][1] = 0,
MatriceX[0][2] = 0,
MatriceX[0][3] = 1; [/code]
mais c´est pas ça :/