All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
SimbodyHinge2Joint.hh
Go to the documentation of this file.
1 /*
2  * Copyright 2013 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 _SIMBODY_HINGE2JOINT_HH_
19 #define _SIMBODY_HINGE2JOINT_HH_
20 
21 #include "gazebo/math/Angle.hh"
22 #include "gazebo/math/Vector3.hh"
26 
27 namespace gazebo
28 {
29  namespace physics
30  {
34 
36  class SimbodyHinge2Joint : public Hinge2Joint<SimbodyJoint>
37  {
39  public: SimbodyHinge2Joint(SimTK::MultibodySystem *world,
40  BasePtr _parent);
41 
43  public: virtual ~SimbodyHinge2Joint();
44 
45  // Documentation inherited.
46  protected: virtual void Load(sdf::ElementPtr _sdf);
47 
50  public: virtual void SetDamping(int _index, double _damping);
51 
52  // Documentation inherited.
53  public: virtual void Init();
54 
55  // Documentation inherited.
56  public: virtual math::Vector3 GetAnchor(int _index) const;
57 
58  // Documentation inherited.
59  public: virtual void SetAxis(int _index, const math::Vector3 &_axis);
60 
61  // Documentation inherited.
62  public: virtual math::Vector3 GetAxis(int _index) const;
63 
64  // Documentation inherited.
65  public: virtual double GetVelocity(int _index) const;
66 
67  // Documentation inherited.
68  public: virtual void SetVelocity(int _index, double _angle);
69 
70  // Documentation inherited.
71  public: virtual void SetMaxForce(int _index, double _t);
72 
73  // Documentation inherited.
74  public: virtual double GetMaxForce(int _index);
75 
76  // Documentation inherited.
77  public: virtual void SetHighStop(int _index, const math::Angle &_angle);
78 
79  // Documentation inherited.
80  public: virtual void SetLowStop(int _index, const math::Angle &_angle);
81 
82  // Documentation inherited.
83  public: virtual math::Angle GetHighStop(int _index);
84 
85  // Documentation inherited.
86  public: virtual math::Angle GetLowStop(int _index);
87 
88  // Documentation inherited.
89  public: virtual math::Vector3 GetGlobalAxis(int _index) const;
90 
91  // Documentation inherited
92  protected: virtual math::Angle GetAngleImpl(int _index) const;
93 
95  protected: virtual void SetForceImpl(int _index, double _torque);
96  };
98  }
99 }
100 #endif