Gazebo Rendering
API Reference
7.4.2
insert_drive_file
Tutorials
library_books
Classes
toc
Namespaces
insert_drive_file
Files
launch
Gazebo Website
Index
List
Hierarchy
Members: All
Members: Functions
Members: Variables
Members: Typedefs
Members: Enumerations
Members: Enumerator
List
Members
Functions
Typedefs
Variables
Enumerations
Enumerator
src
gz-rendering
ogre
include
gz
rendering
ogre
gz/rendering/ogre/OgreVisual.hh
Go to the documentation of this file.
1
/*
2
* Copyright (C) 2015 Open Source Robotics Foundation
3
*
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
* you may not use this file except in compliance with the License.
6
* You may obtain a copy of the License at
7
*
8
* http://www.apache.org/licenses/LICENSE-2.0
9
*
10
* Unless required by applicable law or agreed to in writing, software
11
* distributed under the License is distributed on an "AS IS" BASIS,
12
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
* See the License for the specific language governing permissions and
14
* limitations under the License.
15
*
16
*/
17
#ifndef GZ_RENDERING_OGRE_OGREVISUAL_HH_
18
#define GZ_RENDERING_OGRE_OGREVISUAL_HH_
19
20
#include <memory>
21
#include <vector>
22
23
#include "
gz/rendering/base/BaseVisual.hh
"
24
#include "
gz/rendering/ogre/OgreNode.hh
"
25
#include "
gz/rendering/ogre/OgreRenderTypes.hh
"
26
27
namespace
gz
28
{
29
namespace
rendering
30
{
31
inline
namespace
GZ_RENDERING_VERSION_NAMESPACE {
32
//
33
// forward declaration
34
class
OgreVisualPrivate;
35
36
class
GZ_RENDERING_OGRE_VISIBLE
OgreVisual
:
37
public
BaseVisual
<OgreNode>
38
{
39
protected
:
OgreVisual
();
40
41
public
:
virtual
~
OgreVisual
();
42
43
// Documentation inherited.
44
public
:
virtual
void
SetWireframe(
bool
_show)
override
;
45
46
// Documentation inherited.
47
public
:
virtual
bool
Wireframe()
const override
;
48
49
// Documentation inherited.
50
public
:
virtual
void
SetVisible(
bool
_visible)
override
;
51
52
// Documentation inherited.
53
public
:
virtual
void
SetVisibilityFlags(uint32_t _flags)
override
;
54
55
// Documentation inherited.
56
public
:
virtual
gz::math::AxisAlignedBox
LocalBoundingBox()
57
const override
;
58
59
// Documentation inherited.
60
public
:
virtual
gz::math::AxisAlignedBox
BoundingBox
()
61
const override
;
62
69
private
:
virtual
void
BoundsHelper(
70
gz::math::AxisAlignedBox
&_box,
bool
_local,
71
const
gz::math::Pose3d
&_pose)
const
;
72
78
private
:
virtual
void
BoundsHelper(
79
gz::math::AxisAlignedBox
&_box,
bool
_local)
const
;
80
81
protected
:
virtual
GeometryStorePtr
Geometries()
const override
;
82
83
// Documentation inherited.
84
protected
:
virtual
bool
AttachGeometry(
GeometryPtr
_geometry)
override
;
85
86
// Documentation inherited.
87
protected
:
virtual
bool
DetachGeometry(
GeometryPtr
_geometry)
override
;
88
89
// Documentation inherited.
90
protected
:
virtual
void
Init()
override
;
91
92
protected
:
OgreGeometryStorePtr
geometries
;
93
94
private
:
OgreVisualPtr
SharedThis();
95
97
private
:
std::unique_ptr<OgreVisualPrivate>
dataPtr;
98
99
private
:
friend
class
OgreScene
;
100
};
101
}
102
}
103
}
104
#endif