Class
List
Hierarchy
Modules
Common
Events
Math
Messages
Physics
Rendering
Sensors
Transport
Links
Gazebo Website
Wiki
Tutorials
Download
Report Documentation Issues
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
gazebo
physics
simbody
SimbodyCollision.hh
Go to the documentation of this file.
1
/*
2
* Copyright (C) 2012-2014 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
18
#ifndef _SIMBODY_COLLISION_HH_
19
#define _SIMBODY_COLLISION_HH_
20
21
#include <string>
22
23
#include "
gazebo/physics/PhysicsTypes.hh
"
24
#include "
gazebo/physics/Collision.hh
"
25
#include "
gazebo/util/system.hh
"
26
27
namespace
SimTK
28
{
29
class
ContactGeometry;
30
}
31
32
namespace
gazebo
33
{
34
namespace
physics
35
{
39
41
class
GAZEBO_VISIBLE
SimbodyCollision
:
public
Collision
42
{
44
public
:
SimbodyCollision
(
LinkPtr
_parent);
45
47
public
:
virtual
~
SimbodyCollision
();
48
49
// Documentation inherited
50
public
:
virtual
void
Load(sdf::ElementPtr _ptr);
51
52
// Documentation inherited
53
public
:
virtual
void
OnPoseChange();
54
55
// Documentation inherited
56
public
:
virtual
void
SetCategoryBits(
unsigned
int
_bits);
57
58
// Documentation inherited
59
public
:
virtual
void
SetCollideBits(
unsigned
int
_bits);
60
61
// Documentation inherited
62
public
:
virtual
math::Box
GetBoundingBox()
const
;
63
67
public
:
void
SetCollisionShape(SimTK::ContactGeometry *_shape);
68
71
public
: SimTK::ContactGeometry *GetCollisionShape()
const
;
72
74
private
: SimTK::ContactGeometry *collisionShape;
75
};
77
}
78
}
79
#endif
gazebo::physics::Collision
Base class for all collision entities.
Definition:
Collision.hh:44
gazebo::math::Box
Mathematical representation of a box and related functions.
Definition:
Box.hh:33
system.hh
PhysicsTypes.hh
default namespace for gazebo
gazebo::physics::SimbodyCollision
Simbody collisions.
Definition:
SimbodyCollision.hh:41
Collision.hh
GAZEBO_VISIBLE
#define GAZEBO_VISIBLE
Use to represent "symbol visible" if supported.
Definition:
system.hh:48
gazebo::physics::LinkPtr
boost::shared_ptr< Link > LinkPtr
Definition:
PhysicsTypes.hh:90