Ignore:
Timestamp:
01/02/09 10:24:19 (15 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/App/Demos/Vis/FriendlyCulling/VisibilitySolutionConverter/VisibilitySolutionConverter.h

    r3238 r3239  
    1414class ogzstream; 
    1515 
     16struct BvhInterior; 
    1617 
    1718struct BvhNode 
     
    3536        int Count() const { return last - first + 1; } 
    3637 
     38        SimpleVec bmin; 
     39        SimpleVec bmax; 
     40 
     41        BvhInterior *parent; 
    3742        std::vector<int> mTriangleIds; 
    3843}; 
     
    7176                         const std::string &bvhOutputFilename); 
    7277         
    73  
    7478 
    7579protected: 
     
    124128                                        float scale); 
    125129 
     130        bool WriteBinObj(const std::string &filename, 
     131                             const VertexArray &vertices); 
     132 
    126133        bool ExportBinObj(const std::string &filename, 
    127                       const VertexArray &vertices); 
     134                              const VertexArray &vertices); 
     135 
     136        void WriteNextNode(ogzstream &stream,  
     137                               BvhNode *parent); 
     138 
     139 
    128140 
    129141        ////////////////////////////////// 
Note: See TracChangeset for help on using the changeset viewer.