ODEMesh.hh
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2014-2016 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  class GZ_PHYSICS_VISIBLE ODEMesh
35  {
37  public: explicit ODEMesh();
38 
40  public: virtual ~ODEMesh();
41 
46  public: void Init(const common::SubMesh *_subMesh,
47  ODECollisionPtr _collision,
48  const math::Vector3 &_scale);
49 
54  public: void Init(const common::Mesh *_mesh, ODECollisionPtr _collision,
55  const math::Vector3 &_scale);
56 
58  public: virtual void Update();
59 
64  private: void CreateMesh(unsigned int _numVertices,
65  unsigned int _numIndices, ODECollisionPtr _collision,
66  const math::Vector3 &_scale);
67 
69  private: dReal transform[16*2];
70 
72  private: int transformIndex;
73 
75  private: float *vertices;
76 
78  private: int *indices;
79 
81  private: dTriMeshDataID odeData;
82 
84  private: dGeomID collisionId;
85  };
87  }
88 }
89 #endif
A 3D mesh.
Definition: Mesh.hh:44
Triangle mesh helper class.
Definition: ODEMesh.hh:34
The Vector3 class represents the generic vector containing 3 elements.
Definition: Vector3.hh:39
A child mesh.
Definition: Mesh.hh:216
boost::shared_ptr< ODECollision > ODECollisionPtr
Definition: ODETypes.hh:39
ODE wrapper forward declarations and typedefs.
GAZEBO_VISIBLE void Init(google::protobuf::Message &_message, const std::string &_id="")
Initialize a message.