Ignore:
Timestamp:
01/12/09 03:36:41 (15 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

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

    r3216 r3270  
    1313class Camera; 
    1414class SceneEntity; 
     15class Plane3; 
     16 
    1517 
    1618/** Class that converts geometric objects to scene entities 
     
    1921{ 
    2022public: 
    21          
    2223        /** Creates a scene entity. 
    2324        */ 
    2425        SceneEntityConverter() {}; 
    25         /** Converts this box to a scene entity 
     26        /** Converts a box to a scene entity 
    2627        */ 
    2728        SceneEntity *ConvertBox(const AxisAlignedBox3 &box, Material *mat, Transform3 *trafo);   
    28         /** Converts the box to a scene entity 
     29        /** Converts a sphere to a scene entity 
    2930        */ 
    3031        SceneEntity *ConvertSphere(float radius, float xspans, float yspans, Material *mat, Transform3 *trafo);  
     32        /** Converts a plane to a scene entity 
     33        */ 
     34        SceneEntity *ConvertPlane(const Plane3 &plane,  
     35                                      float xsize,  
     36                                                          float ysize, 
     37                                                          float xspans,  
     38                                                          float yspans, 
     39                                                          Material *mat,  
     40                                                          Transform3 *trafo); 
    3141}; 
    3242 
Note: See TracChangeset for help on using the changeset viewer.