Changeset 92 for trunk/VUT/Ogre/include


Ignore:
Timestamp:
05/11/05 15:29:32 (19 years ago)
Author:
mattausch
Message:

exchanged halfbounding box with full bounding box

Location:
trunk/VUT/Ogre/include
Files:
1 added
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/VUT/Ogre/include/OgrePlatformHierarchyInterface.h

    r86 r92  
    77#include <OgreRenderSystem.h> 
    88 
    9 #include "OgreSolidHalfBoundingBox.h" 
     9//#include "OgreSolidHalfBoundingBox.h" 
     10#include "OgreSolidBoundingBox.h" 
    1011#include "HierarchyInterface.h" 
    1112#include "OgrePlatformOcclusionQuery.h" 
     
    8182        /** Returns pointer to current renderable half bounding box geometry 
    8283        */ 
    83         SolidHalfBoundingBox *GetSolidHalfBoundingBox(); 
     84        //SolidHalfBoundingBox *GetSolidHalfBoundingBox(); 
     85        /** Returns pointer to current renderable bounding box geometry 
     86        */ 
     87        SolidBoundingBox *GetSolidBoundingBox(); 
    8488 
    8589        /** one renderable half of an aabb.  
    8690        */ 
    87         SolidHalfBoundingBox *mSolidHalfBoundingBox; 
     91        SolidBoundingBox *mSolidBoundingBox; 
    8892 
    8993        SceneManager *mSceneManager; 
  • trunk/VUT/Ogre/include/OgreSolidHalfBoundingBox.h

    r86 r92  
    66namespace Ogre { 
    77 
    8 /** Allows the rendering of one half of a solid bounding box. 
     8/** The renderable of one half of a solid bounding box. 
    99    @remarks 
    10         This class builds a wireframe renderable from a given aabb. A pointer to this class can be 
     10        This class builds a solid renderable from a given aabb. A pointer to this class can be 
    1111                added to a render queue to display the bounding box of an object. 
    1212*/ 
  • trunk/VUT/Ogre/include/OgreVisibilityOctreeSceneManager.h

    r87 r92  
    5050        GtpVisibility::VisibilityManager *getVisibilityManager( void ); 
    5151 
     52        //writes out into the Ogre log file 
     53        void WriteLog(); 
     54 
    5255protected: 
    5356         
  • trunk/VUT/Ogre/include/OgreVisibilityTerrainSceneManager.h

    r87 r92  
    5353        GtpVisibility::VisibilityManager *getVisibilityManager(); 
    5454         
     55        //writes out statis into the Ogre log file 
     56        void WriteLog(); 
     57 
    5558protected: 
    56  
     59         
    5760        OctreeHierarchyInterface *mHierarchyInterface; 
    5861        GtpVisibility::VisibilityManager *mVisibilityManager; 
Note: See TracChangeset for help on using the changeset viewer.