Advertisement
abraao

Vertice Vtransformado

Oct 12th, 2015
636
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.25 KB | None | 0 0
  1. Vertice Vtransformado[4];
  2.   Vertice V_Transf2[objData->faceCount][3];
  3.    for(int i=0; i < objData->faceCount; i++)
  4.      {   for(int j=0; j < 3; j++)
  5.            {
  6.              V_Transf2[i][j] = m_ModelViewProjection * V2[i][j];
  7.            }
  8.      }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement