RenderableAABB.h

Go to the documentation of this file.
00001 #ifndef RENDERABLEAABB_H_
00002 #define RENDERABLEAABB_H_
00003 
00004 #include "irender.h"
00005 #include "math/aabb.h"
00006 
00007 namespace ui
00008 {
00009 
00015     class RenderableAABB: public OpenGLRenderable
00016     {
00017             // The AABB to render
00018             AABB _aabb;
00019 
00020         public:
00021 
00024             RenderableAABB (const AABB& aabb) :
00025                 _aabb(aabb)
00026             {
00027             }
00028 
00031             void render (RenderStateFlags flags) const;
00032     };
00033 
00034 }
00035 
00036 #endif /*RENDERABLEAABB_H_*/

Generated by  doxygen 1.6.2