document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  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.      }
');