PolylineShape.hh
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2014-2015 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_POLYLINESHAPE_HH_
18 #define _GAZEBO_POLYLINESHAPE_HH_
19 
20 #ifdef _WIN32
21  // Ensure that Winsock2.h is included before Windows.h, which can get
22  // pulled in by anybody (e.g., Boost).
23  #include <Winsock2.h>
24 #endif
25 
26 #include <vector>
27 #include "gazebo/physics/Shape.hh"
28 
29 namespace gazebo
30 {
31  namespace physics
32  {
35 
39  {
42  public: explicit PolylineShape(CollisionPtr _parent);
43 
45  public: virtual ~PolylineShape();
46 
48  public: virtual void Init();
49 
57  public: std::vector<std::vector<math::Vector2d> > GetVertices() const
58  GAZEBO_DEPRECATED(6.0);
59 
65  public: std::vector<std::vector<ignition::math::Vector2d> >
66  Vertices() const;
67 
70  public: double GetHeight() const;
71 
74  public: void FillMsg(msgs::Geometry &_msg);
75 
78  public: virtual void ProcessMsg(const msgs::Geometry &_msg);
79 
82  private: virtual void SetScale(const math::Vector3 &_scale);
83 
93  private: virtual void SetVertices(
94  const std::vector<std::vector<math::Vector2d> > &_vertices)
95  GAZEBO_DEPRECATED(6.0);
96 
104  private: virtual void SetVertices(
105  const std::vector<std::vector<ignition::math::Vector2d> >
106  &_vertices);
107 
110  private: virtual void SetVertices(const msgs::Geometry &_msg);
111 
118  private: void SetPolylineShape(const double &_height,
119  const std::vector<std::vector<math::Vector2d> > &_vertices)
120  GAZEBO_DEPRECATED(6.0);
121 
126  private: void SetPolylineShape(const double &_height,
127  const std::vector<std::vector<ignition::math::Vector2d> >
128  &_vertices);
129 
133  private: virtual void SetHeight(const double &_height);
134 
136  protected: const common::Mesh *mesh;
137  };
139  }
140 }
141 #endif
A 3D mesh.
Definition: Mesh.hh:44
#define GZ_PHYSICS_VISIBLE
Definition: system.hh:318
The Vector3 class represents the generic vector containing 3 elements.
Definition: Vector3.hh:39
#define GAZEBO_DEPRECATED(version)
Definition: CommonTypes.hh:47
Base class for all shapes.
Definition: Shape.hh:46
boost::shared_ptr< Collision > CollisionPtr
Definition: PhysicsTypes.hh:96
const common::Mesh * mesh
Pointer to the mesh data.
Definition: PolylineShape.hh:136
GAZEBO_VISIBLE void Init(google::protobuf::Message &_message, const std::string &_id="")
Initialize a message.
Polyline geometry primitive.
Definition: PolylineShape.hh:38