All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
DARTPlaneShape.hh
Go to the documentation of this file.
1 /*
2  * Copyright 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 #ifndef _GAZEBO_DARTPLANESHAPE_HH_
18 #define _GAZEBO_DARTPLANESHAPE_HH_
19 
22 
23 namespace gazebo
24 {
25  namespace physics
26  {
28  class DARTPlaneShape : public PlaneShape
29  {
32  public: explicit DARTPlaneShape(CollisionPtr _parent)
33  : PlaneShape(_parent) {}
34 
36  public: virtual ~DARTPlaneShape() {}
37 
38  // Documentation inherited
39  public: virtual void CreatePlane()
40  {
42 
43  DARTCollisionPtr dartCollisionParent =
44  boost::dynamic_pointer_cast<DARTCollision>(this->collisionParent);
45 
46  // math::Vector3 n = this->GetNormal();
47 
48  dart::dynamics::BodyNode *dtBodyNode =
49  dartCollisionParent->GetDARTBodyNode();
50  dart::dynamics::BoxShape *dtBoxShape =
51  new dart::dynamics::BoxShape(Eigen::Vector3d(2100, 2100, 0.01));
52  dtBodyNode->addCollisionShape(dtBoxShape);
53  dtBoxShape->setOffset(Eigen::Vector3d(0.0, 0.0, -0.005));
54  dartCollisionParent->SetDARTCollisionShape(dtBoxShape, false);
55  }
56 
57  // Documentation inherited
58  public: virtual void SetAltitude(const math::Vector3 &_pos)
59  {
61  }
62  };
63  }
64 }
65 #endif