#include "ExCFrustum.h"
Aller au code source de ce fichier.
Énumérations | |
enum | FrustumSide { RIGHT = 0, LEFT = 1, BOTTOM = 2, TOP = 3, BACK = 4, FRONT = 5 } |
enum | PlaneData { A = 0, B = 1, C = 2, D = 3 } |
|
Définition à la ligne 26 du fichier 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 }; |
|
Définition à la ligne 37 du fichier ExCFrustum.cpp.
|