| 1234567891011121314151617181920 |
- $#include "OctreeQuery.h"
- enum RayQueryLevel
- {
- RAY_AABB_NOSUBOBJECTS = 0,
- RAY_AABB,
- RAY_OBB,
- RAY_TRIANGLE
- };
- struct RayQueryResult
- {
- RayQueryResult();
- Vector3 position_ @ position;
- Vector3 normal_ @ normal;
- float distance_ @ distance;
- Drawable* drawable_ @ drawable;
- Node* node_ @ node;
- unsigned subObject_ @ subObject;
- };
|