PlaneShape.hh
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2012-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 /* Desc: Plane shape
18  * Author: Nate Koenig
19  * Date: 14 Oct 2009
20  */
21 
22 #ifndef _PLANESHAPE_HH_
23 #define _PLANESHAPE_HH_
24 
25 #include "gazebo/math/Vector2d.hh"
27 #include "gazebo/physics/Shape.hh"
28 #include "gazebo/util/system.hh"
29 
30 namespace gazebo
31 {
32  namespace physics
33  {
36 
42  class GZ_PHYSICS_VISIBLE PlaneShape : public Shape
43  {
46  public: explicit PlaneShape(CollisionPtr _parent);
47 
49  public: virtual ~PlaneShape();
50 
52  public: virtual void Init();
53 
55  public: virtual void CreatePlane();
56 
59  public: virtual void SetAltitude(const math::Vector3 &_pos);
60 
63  public: void SetNormal(const math::Vector3 &_norm);
64 
67  public: math::Vector3 GetNormal() const;
68 
71  public: void SetSize(const math::Vector2d &_size);
72 
75  public: math::Vector2d GetSize() const;
76 
79  public: virtual void SetScale(const math::Vector3 &_scale);
80 
83  public: void FillMsg(msgs::Geometry &_msg);
84 
88  public: virtual void ProcessMsg(const msgs::Geometry &_msg);
89 
91  public: virtual double ComputeVolume() const;
92  };
94  }
95 }
96 #endif
Forward declarations for the common classes.
Definition: Animation.hh:33
Generic double x, y vector.
Definition: Vector2d.hh:36
The Vector3 class represents the generic vector containing 3 elements.
Definition: Vector3.hh:39
Base class for all shapes.
Definition: Shape.hh:46
GAZEBO_VISIBLE void Init(google::protobuf::Message &_message, const std::string &_id="")
Initialize a message.
Collision for an infinite plane.
Definition: PlaneShape.hh:42
boost::shared_ptr< Collision > CollisionPtr
Definition: PhysicsTypes.hh:104