TAMSVIZ
Visualization and annotation tool for ROS
transform.h
1 // TAMSVIZ
2 // (c) 2020 Philipp Ruppel
3 
4 #pragma once
5 
6 #include "marker.h"
7 
9  std::vector<Frame> _frames;
10  std::shared_ptr<InstancedMeshRenderer> _mesh_renderer;
11  PROPERTY(double, radius, 0.01, min = 0.0);
12  PROPERTY(double, length, 0.2, min = 0.0);
13  PROPERTY(std::shared_ptr<Material>, material,
14  std::make_shared<Material>(1, 1, 1));
15  Watcher _watcher;
16  virtual void renderSync(const RenderSyncContext &context) override;
17 };
18 DECLARE_TYPE_C(TransformationsDisplay, MeshDisplayBase, Transform);
Definition: watcher.h:8