Skip to content
Snippets Groups Projects
Commit e2dbe2e0 authored by Jan Möbius's avatar Jan Möbius
Browse files

overrides

parent 2a2a02ec
No related branches found
No related tags found
No related merge requests found
...@@ -105,16 +105,16 @@ public: ...@@ -105,16 +105,16 @@ public:
ACG_CLASSNAME(PolyLineNodeT); ACG_CLASSNAME(PolyLineNodeT);
/// return available draw modes /// return available draw modes
DrawModes::DrawMode availableDrawModes() const; DrawModes::DrawMode availableDrawModes() const override;
/// update bounding box /// update bounding box
void boundingBox(Vec3d& _bbMin, Vec3d& _bbMax); void boundingBox(Vec3d& _bbMin, Vec3d& _bbMax) override;
/// draw lines and normals /// draw lines and normals
void draw(GLState& /*_state*/,const DrawModes::DrawMode& _drawMode); void draw(GLState& /*_state*/,const DrawModes::DrawMode& _drawMode) override;
/// picking /// picking
void pick(GLState& _state, PickTarget _target); void pick(GLState& _state, PickTarget _target) override;
/** \brief Add the objects to the given renderer /** \brief Add the objects to the given renderer
* *
...@@ -123,7 +123,7 @@ public: ...@@ -123,7 +123,7 @@ public:
* @param _drawMode The active draw mode * @param _drawMode The active draw mode
* @param _mat Current material * @param _mat Current material
*/ */
void getRenderObjects(ACG::IRenderer* _renderer, ACG::GLState& _state , const ACG::SceneGraph::DrawModes::DrawMode& _drawMode , const ACG::SceneGraph::Material* _mat); void getRenderObjects(ACG::IRenderer* _renderer, ACG::GLState& _state , const ACG::SceneGraph::DrawModes::DrawMode& _drawMode , const ACG::SceneGraph::Material* _mat) override;
/// Trigger an update of the vbo /// Trigger an update of the vbo
void update() { updateVBO_ = true; }; void update() { updateVBO_ = true; };
......
...@@ -92,16 +92,16 @@ public: ...@@ -92,16 +92,16 @@ public:
ACG_CLASSNAME(PolyLineCollectionNodeT); ACG_CLASSNAME(PolyLineCollectionNodeT);
/// return available draw modes /// return available draw modes
DrawModes::DrawMode availableDrawModes() const; DrawModes::DrawMode availableDrawModes() const override;
/// update bounding box /// update bounding box
void boundingBox(Vec3d& _bbMin, Vec3d& _bbMax); void boundingBox(Vec3d& _bbMin, Vec3d& _bbMax) override;
/// draw lines and normals /// draw lines and normals
void draw(GLState& /*_state*/,const DrawModes::DrawMode& _drawMode); void draw(GLState& /*_state*/,const DrawModes::DrawMode& _drawMode) override;
/// picking /// picking
void pick(GLState& _state, PickTarget _target); void pick(GLState& _state, PickTarget _target) override;
/** \brief Add the objects to the given renderer /** \brief Add the objects to the given renderer
* *
...@@ -110,7 +110,7 @@ public: ...@@ -110,7 +110,7 @@ public:
* @param _drawMode The active draw mode * @param _drawMode The active draw mode
* @param _mat Current material * @param _mat Current material
*/ */
void getRenderObjects(ACG::IRenderer* _renderer, ACG::GLState& _state , const ACG::SceneGraph::DrawModes::DrawMode& _drawMode , const ACG::SceneGraph::Material* _mat); void getRenderObjects(ACG::IRenderer* _renderer, ACG::GLState& _state , const ACG::SceneGraph::DrawModes::DrawMode& _drawMode , const ACG::SceneGraph::Material* _mat) override;
/// Trigger an update of the vbo /// Trigger an update of the vbo
void update() { updateVBO_ = true; } void update() { updateVBO_ = true; }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment