TAMSVIZ
Visualization and annotation tool for ROS
axes.h
1 // TAMSVIZ
2 // (c) 2020 Philipp Ruppel
3 
4 #pragma once
5 
6 #include "frame.h"
7 
8 #include "../core/watcher.h"
9 #include "../render/mesh.h"
10 #include "../scene/mesh.h"
11 
12 MeshData makeAxes(double radius, double length, size_t segments);
13 
15  std::shared_ptr<MeshRenderer> _mesh_renderer;
16  PROPERTY(double, radius, 0.05, min = 0.0);
17  PROPERTY(double, length, 1.0, min = 0.0);
18  PROPERTY(std::shared_ptr<Material>, material,
19  std::make_shared<Material>(1, 1, 1));
20  Watcher _watcher;
21  virtual void renderSync(const RenderSyncContext &context) override;
22 };
23 DECLARE_TYPE(AxesDisplay, FrameDisplayBase);
Definition: watcher.h:8
Definition: mesh.h:11