source:
GTP/trunk/App/Demos/Vis/FriendlyCulling/src/LODInfo.h
@
2839
Revision 2839, 346 bytes checked in by mattausch, 16 years ago (diff) |
---|
Line | |
---|---|
1 | #ifndef __LODINFO_H |
2 | #define __LODINFO_H |
3 | |
4 | #include "common.h" |
5 | |
6 | |
7 | namespace CHCDemoEngine |
8 | { |
9 | |
10 | /** Class representing information about an LOD level. |
11 | */ |
12 | struct LODInfo |
13 | { |
14 | public: |
15 | /// distance of this LOD level |
16 | float mSquaredDistance; |
17 | /// shapes belonging to this LOD level |
18 | ShapeContainer mShapes; |
19 | }; |
20 | |
21 | } |
22 | |
23 | #endif // __LODINFO_H |
Note: See TracBrowser
for help on using the repository browser.