Moby
RevoluteJoint.h
1 /****************************************************************************
2  * Copyright 2006 Evan Drumwright
3  * This library is distributed under the terms of the Apache V2.0
4  * License (obtainable from http://www.apache.org/licenses/LICENSE-2.0).
5  ****************************************************************************/
6 
7 #ifndef _REVOLUTE_JOINT_H
8 #define _REVOLUTE_JOINT_H
9 
10 #include <Ravelin/RevoluteJointd.h>
11 #include <Moby/Joint.h>
12 
13 namespace Moby {
14 
16 class RevoluteJoint : public Joint, public Ravelin::RevoluteJointd
17 {
18  public:
19  RevoluteJoint();
20  virtual ~RevoluteJoint() {}
21  RevoluteJoint(boost::weak_ptr<RigidBody> inboard, boost::weak_ptr<RigidBody> outboard);
22  virtual unsigned num_dof() const { return RevoluteJointd::num_dof(); }
23  virtual bool is_singular_config() const { return RevoluteJointd::is_singular_config(); }
24  virtual void evaluate_constraints(double C[]) { RevoluteJointd::evaluate_constraints(C); }
25  virtual const std::vector<Ravelin::SVelocityd>& get_spatial_axes_dot() { return RevoluteJointd::get_spatial_axes_dot(); }
26  virtual void determine_q(Ravelin::VectorNd& q) { RevoluteJointd::determine_q(q); }
27  virtual boost::shared_ptr<const Ravelin::Pose3d> get_induced_pose() { return RevoluteJointd::get_induced_pose(); }
28  virtual void load_from_xml(boost::shared_ptr<const XMLTree> node, std::map<std::string, BasePtr>& id_map);
29  virtual void save_to_xml(XMLTreePtr node, std::list<boost::shared_ptr<const Base> >& shared_objects) const;
30 }; // end class
31 } // end namespace
32 
33 #endif
boost::shared_ptr< XMLTree > XMLTreePtr
XML tree smart pointer.
Definition: Types.h:104
Defines a joint used in articulated rigid body dynamics simulation.
Definition: Joint.h:30
RevoluteJoint()
Initializes the joint.
Definition: RevoluteJoint.cpp:24
Defines an actuated revolute joint.
Definition: RevoluteJoint.h:16
virtual void load_from_xml(boost::shared_ptr< const XMLTree > node, std::map< std::string, BasePtr > &id_map)
Implements Base::load_from_xml()
Definition: RevoluteJoint.cpp:39
virtual void save_to_xml(XMLTreePtr node, std::list< boost::shared_ptr< const Base > > &shared_objects) const
Implements Base::save_to_xml()
Definition: RevoluteJoint.cpp:58