Ignore:
Timestamp:
04/20/06 13:25:41 (18 years ago)
Author:
mattausch
Message:

after rendering workshop submissioin
x3dparser can use def - use constructs
implemented improved evaluation (samples are only stored in leaves, only propagate pvs size)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/Preprocessing/src/UnigraphicsParser.cpp

    r750 r752  
    9696      cout<<"+"; 
    9797      vector<Vector3> vertices; 
    98       vector<int> vertexIndices; 
     98      VertexIndexContainer vertexIndices; 
    9999 
    100100      /* face */ 
     
    133133      int index = (int)currentMesh->mVertices.size(); 
    134134      for (i=0; i < vertices.size(); i++, index++) { 
    135         currentMesh->mVertices.push_back(vertices[i]); 
    136         vertexIndices.push_back(index); 
     135                currentMesh->mVertices.push_back(vertices[i]); 
     136                vertexIndices.push_back(index); 
    137137      } 
    138138       
     
    184184  fclose(file); 
    185185   
    186    
    187186  *proot = root; 
    188187 
Note: See TracChangeset for help on using the changeset viewer.