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

Missing overrides

parent aae16c46
Branches
No related tags found
No related merge requests found
......@@ -112,21 +112,21 @@ public:
ACG_CLASSNAME(VolumeMeshNodeT)
/// return available draw modes
DrawModes::DrawMode availableDrawModes() const;
DrawModes::DrawMode availableDrawModes() const override;
/// update bounding box
void boundingBox(Vec3d& _bbMin, Vec3d& _bbMax);
void boundingBox(Vec3d& _bbMin, Vec3d& _bbMax) override;
/// draw lines and normals
void draw(GLState& _state, const DrawModes::DrawMode& _drawMode);
void draw(GLState& _state, const DrawModes::DrawMode& _drawMode) override;
/** \brief Draws the object deferred
*
*/
void getRenderObjects(IRenderer* _renderer, GLState& _state, const DrawModes::DrawMode& _drawMode, const Material* _mat);
void getRenderObjects(IRenderer* _renderer, GLState& _state, const DrawModes::DrawMode& _drawMode, const Material* _mat) override;
/// picking
void pick(GLState& _state, PickTarget _target);
void pick(GLState& _state, PickTarget _target) override;
// clear all cutplanes
void clear_cut_planes();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment