#include "ExCFrustum.h"
Go to the source code of this file.
Enumerations | |
enum | FrustumSide { RIGHT = 0, LEFT = 1, BOTTOM = 2, TOP = 3, BACK = 4, FRONT = 5 } |
enum | PlaneData { A = 0, B = 1, C = 2, D = 3 } |
|
Definition at line 26 of file ExCFrustum.cpp.
00027 { 00028 RIGHT = 0, // The RIGHT side of the frustum 00029 LEFT = 1, // The LEFT side of the frustum 00030 BOTTOM = 2, // The BOTTOM side of the frustum 00031 TOP = 3, // The TOP side of the frustum 00032 BACK = 4, // The BACK side of the frustum 00033 FRONT = 5 // The FRONT side of the frustum 00034 }; |
|
Definition at line 37 of file ExCFrustum.cpp.
|