Ignore:
Timestamp:
11/24/06 00:24:41 (18 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/Preprocessing/src/Preprocessor.h

    r1785 r1786  
    121121        bool ExportKdTree(const string filename); 
    122122 
    123   virtual int 
    124   GenerateRays(const int number, 
    125                            const SamplingStrategy &strategy, 
    126                            SimpleRayContainer &rays); 
    127    
    128   virtual int GenerateRays(const int number, 
    129                                                    const int raysType, 
    130                                                    SimpleRayContainer &rays); 
    131    
    132   bool GenerateRayBundle(SimpleRayContainer &rayBundle, 
    133                                                  const SimpleRay &mainRay, 
    134                                                  const int number, 
    135                                                  const int shuffleType) const; 
    136    
    137   virtual void CastRays(SimpleRayContainer &rays, 
    138                                                 VssRayContainer &vssRays, 
    139                                                 const bool castDoubleRays, 
    140                                                 const bool pruneInvalidRays = true); 
    141    
     123        virtual int 
     124                GenerateRays(const int number, 
     125                const SamplingStrategy &strategy, 
     126                SimpleRayContainer &rays); 
     127 
     128        virtual int GenerateRays(const int number, 
     129                const int raysType, 
     130                SimpleRayContainer &rays); 
     131 
     132        bool GenerateRayBundle(SimpleRayContainer &rayBundle, 
     133                const SimpleRay &mainRay, 
     134                const int number, 
     135                const int shuffleType) const; 
     136 
     137        virtual void CastRays(SimpleRayContainer &rays, 
     138                VssRayContainer &vssRays, 
     139                const bool castDoubleRays, 
     140                const bool pruneInvalidRays = true); 
     141 
    142142        /** Returns a view cells manager of the given name. 
    143143        */ 
     
    148148        bool InitRayCast(const string externKdTree, const string internKdTree); 
    149149 
    150 bool ExportObj(const string filename, const ObjectContainer &objects); 
    151  
     150        bool ExportObj(const string filename, const ObjectContainer &objects); 
     151 
     152        Intersectable *GetParentObject(const int index) const; 
     153Vector3 GetParentNormal(const int index) const; 
    152154        //////////////////////////////////////////////// 
    153155 
     
    202204        bool mExportObj; 
    203205 
    204   ofstream mStats; 
     206        ofstream mStats; 
    205207 
    206208  GlRendererBuffer *renderer; 
     
    214216        bool ExportBinaryObj(const string filename, SceneGraphNode *root); 
    215217 
    216  
    217218        void SetupRay(Ray &ray, const Vector3 &point, const Vector3 &direction) const; 
    218219 
    219220        void EvalPvsStat(); 
    220221 
    221   virtual void 
    222   EvalViewCellHistogram(); 
     222        virtual void EvalViewCellHistogram(); 
    223223 
    224224        ///////////////////////// 
     
    229229        /// samples used for construction of the VSP OSP tree. 
    230230        int mVspOspConstructionSamples; 
    231         /** Simulates rendering of the scene. 
    232         */ 
     231        /// Simulates rendering of the scene. 
    233232        RenderSimulator *mRenderSimulator; 
    234233 
Note: See TracChangeset for help on using the changeset viewer.