Ignore:
Timestamp:
04/20/09 09:11:32 (16 years ago)
Author:
mattausch
Message:
 
Location:
GTP/trunk/App/Demos/Vis/FriendlyCulling/Converter
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/App/Demos/Vis/FriendlyCulling/Converter/PlyConverter.cpp

    r3359 r3361  
    4444                for (size_t j = 0; j < face.indices.size(); ++ j) 
    4545                { 
    46                         geom->mVertices.push_back(vertices[faces[i].indices[j]]); 
     46                        SimpleVec h = vertices[faces[i].indices[j]]; 
     47                        SimpleVec v; 
     48                         
     49                        v.x = h.x * 14; 
     50                        v.y = h.z * 14; 
     51                        v.z = h.y * 14; 
     52         
     53                        geom->mVertices.push_back(v); 
    4754 
    4855                        /*if (!normals.empty()) 
     
    6976 
    7077                // no face normals? => create normals 
    71                 const SimpleTri tri(geom->mVertices[idx], 
     78                const SimpleTri tri(geom->mVertices[idx + 2], 
    7279                                        geom->mVertices[idx + 1],  
    73                                                         geom->mVertices[idx + 2]); 
     80                                                        geom->mVertices[idx + 0]); 
    7481 
    7582                const SimpleVec n = tri.GetNormal(); 
  • GTP/trunk/App/Demos/Vis/FriendlyCulling/Converter/main.cpp

    r3360 r3361  
    1 #include "ObjConverter.h" 
    2 //#include "PlyConverter.h" 
     1//#include "ObjConverter.h" 
     2#include "PlyConverter.h" 
    33#include <iostream> 
    44#include <time.h> 
     
    1212 
    1313        //ObjConverter2 converter; 
    14         ObjConverter converter; 
    15         //PlyConverter converter; 
     14        //ObjConverter converter; 
     15        PlyConverter converter; 
    1616 
    1717        cout << "converting obj to dem format" << endl; 
Note: See TracChangeset for help on using the changeset viewer.