TAMSVIZ
Visualization and annotation tool for ROS
Main Page
Classes
Files
File List
src
displays
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
);
Display
Definition:
document.h:130
RenderAsyncContext
Definition:
document.h:124
SceneContext
Definition:
node.h:16
RenderSyncContext
Definition:
document.h:120
MeshDisplayBase
Definition:
mesh.h:12
Interaction
Definition:
interaction.h:22
Generated by
1.8.11