]> git.mxchange.org Git - simgear.git/blob - simgear/scene/sky/clouds3d/SkyAABBTree.hpp
Clouds3D crashes because there is no Light
[simgear.git] / simgear / scene / sky / clouds3d / SkyAABBTree.hpp
1 //============================================================================
2 // File          : SkyAABBTree.hpp
3 // 
4 // Author        : Wesley Hunt
5 // 
6 // Content       : axis-aligned bounding box tree
7 // 
8 //============================================================================
9 #ifndef __SKYAABBTREE_HPP__
10 #define __SKYAABBTREE_HPP__
11
12 #include "SkyBVTree.hpp"
13 #include "SkyBVTreeSplitter.hpp"
14
15 template <class object>
16 class SkyAABBTree : public SkyBVTree<object, SkyMinMaxBox, SkyAABBTreeSplitter<object> > 
17 {};
18
19 #endif //__SKYAABBTREE_HPP__