]> git.tdb.fi Git - libs/gl.git/blobdiff - source/renderable.h
Remove dynamic allocation from VertexFormat
[libs/gl.git] / source / renderable.h
index b53fa9ac839307347bb614db7052dcfbe5a7a8cb..9a534e9038579f37256c2722f6681235dc062eea 100644 (file)
@@ -2,6 +2,7 @@
 #define MSP_GL_RENDERABLE_H_
 
 #include <string>
+#include <msp/geometry/boundingsphere.h>
 #include "tag.h"
 
 namespace Msp {
@@ -38,18 +39,23 @@ public:
        matrix exists. */
        virtual const Matrix *get_matrix() const { return 0; }
 
+       /** Returns a bounding sphere that completely encloses the Renderable.  The
+       bounding sphere is expressed in the renderable's coordinates.  Null is
+       returned if the bounding sphere cannot be determined. */
+       virtual const Geometry::BoundingSphere<float, 3> *get_bounding_sphere() const { return 0; }
+
        /** Called when starting to render a new frame. */
        virtual void setup_frame() const { }
 
        /** Called when a complete frame has been rendered. */
        virtual void finish_frame() const { }
 
-       /** Renders the renderable without a renderer.  This can be convenient in
+       /** Renders the Renderable without a renderer.  This can be convenient in
        some simple cases, but most renderables don't need to implement this
        method. */
        virtual void render(const Tag & = Tag()) const;
 
-       /** Renders the renderable.  Implementors should take care to return the
+       /** Renders the Renderable.  Implementors should take care to return the
        renderer to the state it was in, for example by using Renderer::Push. */
        virtual void render(Renderer &, const Tag & = Tag()) const = 0;
 };