TAMSVIZ
Visualization and annotation tool for ROS
mesh.h
1 // TAMSVIZ
2 // (c) 2020 Philipp Ruppel
3 
4 #pragma once
5 
6 #include "../core/document.h"
7 
8 #include "../scene/material.h"
9 #include "../scene/mesh.h"
10 #include "../scene/node.h"
11 
12 class MeshDisplayBase : public Display {
13  std::shared_ptr<SceneNode> _node = std::make_shared<SceneNode>();
14  SceneContext _context;
15 
16 protected:
17  MeshDisplayBase() {}
18 
19 public:
20  PROPERTY(bool, visible, true);
21  // PROPERTY(bool, interactive, true);
22  const std::shared_ptr<SceneNode> &node() { return _node; }
23  virtual void renderSync(const RenderSyncContext &context) override;
24  virtual void renderAsync(const RenderAsyncContext &context) override;
25  virtual bool pick(uint32_t id) const override;
26  virtual bool interact(const Interaction &interaction) override;
27 };
28 DECLARE_TYPE(MeshDisplayBase, Display);