All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
ODEMesh.hh
Go to the documentation of this file.
1 /*
2  * Copyright (C) 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 _GAZEBO_ODEMESH_HH_
19 #define _GAZEBO_ODEMESH_HH_
20 
24 #include "gazebo/util/system.hh"
25 
26 namespace gazebo
27 {
28  namespace physics
29  {
32  {
34  public: explicit ODEMesh();
35 
37  public: virtual ~ODEMesh();
38 
43  public: void Init(const common::SubMesh *_subMesh,
44  ODECollisionPtr _collision,
45  const math::Vector3 &_scale);
46 
51  public: void Init(const common::Mesh *_mesh, ODECollisionPtr _collision,
52  const math::Vector3 &_scale);
53 
55  public: virtual void Update();
56 
61  private: void CreateMesh(unsigned int _numVertices,
62  unsigned int _numIndices, ODECollisionPtr _collision,
63  const math::Vector3 &_scale);
64 
66  private: dReal transform[16*2];
67 
69  private: int transformIndex;
70 
72  private: float *vertices;
73 
75  private: int *indices;
76 
78  private: dTriMeshDataID odeData;
79 
81  private: dGeomID collisionId;
82  };
83  }
84 }
85 #endif
A 3D mesh.
Definition: Mesh.hh:40
Triangle mesh helper class.
Definition: ODEMesh.hh:31
The Vector3 class represents the generic vector containing 3 elements.
Definition: Vector3.hh:43
A child mesh.
Definition: Mesh.hh:209
ODE wrapper forward declarations and typedefs.
GAZEBO_VISIBLE void Init(google::protobuf::Message &_message, const std::string &_id="")
Initialize a message.
boost::shared_ptr< ODECollision > ODECollisionPtr
Definition: ODETypes.hh:36
#define GAZEBO_VISIBLE
Use to represent "symbol visible" if supported.
Definition: system.hh:48