TAMSVIZ
Visualization and annotation tool for ROS
mesh.cpp
1 // TAMSVIZ
2 // (c) 2020 Philipp Ruppel
3 
4 #include "mesh.h"
5 
6 void MeshDisplayBase::renderSync(const RenderSyncContext &context) {
7  _context.nodes.clear();
8  if (visible()) {
9  _node->renderSyncRecursive(context, _context);
10  }
11  Display::renderSync(context);
12 }
13 
14 void MeshDisplayBase::renderAsync(const RenderAsyncContext &context) {
15  for (auto &node : _context.nodes) {
16  node->renderAsync(context);
17  }
18  Display::renderAsync(context);
19 }
20 
21 bool MeshDisplayBase::pick(uint32_t id) const {
22  // if (!visible() || !interactive()) {
23  // return false;
24  // }
25  return _node->pick(id);
26 }
27 
28 bool MeshDisplayBase::interact(const Interaction &interaction) {
29  // if (!visible() || !interactive()) {
30  // return false;
31  // }
32  return _node->interact(interaction);
33 }