35 #ifndef DART_DYNAMICS_GROUP_HPP_
36 #define DART_DYNAMICS_GROUP_HPP_
50 const std::string& _name =
"Group",
51 const std::vector<BodyNode*>& _bodyNodes = std::vector<BodyNode*>(),
52 bool _includeJoints =
true,
53 bool _includeDofs =
true);
60 const std::string& _name,
61 const std::vector<DegreeOfFreedom*>& _dofs,
62 bool _includeBodyNodes =
true,
63 bool _includeJoints =
true);
67 const std::string& _name,
138 bool addBodyNodes(
const std::vector<BodyNode*>& _bodyNodes,
163 bool addJoint(
Joint* _joint,
bool _addDofs=
true,
bool _warning=
true);
173 bool addJoints(
const std::vector<Joint*>& _joints,
bool _addDofs=
true,
194 bool removeJoints(
const std::vector<Joint*>& _joints,
bool _removeDofs=
true,
213 bool addDofs(
const std::vector<DegreeOfFreedom*>& _dofs,
214 bool _addJoint =
true,
bool _warning=
true);
235 bool removeDofs(
const std::vector<DegreeOfFreedom*>& _dofs,
236 bool _cleanupJoint=
true,
bool _warning=
true);
240 Group(
const std::string& _name,
241 const std::vector<BodyNode*>& _bodyNodes,
246 Group(
const std::string& _name,
247 const std::vector<DegreeOfFreedom*>& _dofs,
248 bool _includeBodyNodes,
249 bool _includeJoints);
252 Group(
const std::string& _name,
BodyNode class represents a single node of the skeleton.
Definition: BodyNode.hpp:78
DegreeOfFreedom class is a proxy class for accessing single degrees of freedom (aka generalized coord...
Definition: DegreeOfFreedom.hpp:53
bool removeBodyNodes(const std::vector< BodyNode * > &_bodyNodes, bool _warning=true)
Remove a set of BodyNodes from this Group.
Definition: Group.cpp:416
bool removeBodyNode(BodyNode *_bn, bool _warning=true)
Remove a BodyNode from this Group.
Definition: Group.cpp:383
bool removeComponents(const std::vector< BodyNode * > &_bodyNodes, bool _warning=true)
Remove a set of BodyNodes and their parent DegreesOfFreedom from this Group.
Definition: Group.cpp:329
void swapDofIndices(std::size_t _index1, std::size_t _index2)
Swap the index of DegreeOfFreedom _index1 with _index2.
Definition: Group.cpp:197
bool removeDof(DegreeOfFreedom *_dof, bool _cleanupJoint=true, bool _warning=true)
Remove a DegreeOfFreedom from this Group.
Definition: Group.cpp:596
bool addBodyNode(BodyNode *_bn, bool _warning=true)
Add a BodyNode to this Group.
Definition: Group.cpp:340
bool removeComponent(BodyNode *_bn, bool _warning=true)
Remove a BodyNode and its parent DegreesOfFreedom from this Group.
Definition: Group.cpp:295
bool addDofs(const std::vector< DegreeOfFreedom * > &_dofs, bool _addJoint=true, bool _warning=true)
Add a set of DegreesOfFreedom to this Group.
Definition: Group.cpp:585
GroupPtr cloneGroup() const
Creates and returns a clone of this Group.
Definition: Group.cpp:72
bool removeJoints(const std::vector< Joint * > &_joints, bool _removeDofs=true, bool _warning=true)
Remove a set of Joints from this Group.
bool addComponents(const std::vector< BodyNode * > &_bodyNodes, bool _warning=true)
Add set of BodyNodes and their parent DegreesOfFreedom to this Group.
Definition: Group.cpp:284
static GroupPtr create(const std::string &_name="Group", const std::vector< BodyNode * > &_bodyNodes=std::vector< BodyNode * >(), bool _includeJoints=true, bool _includeDofs=true)
Create a Group out of a set of BodyNodes.
Definition: Group.cpp:43
bool addComponent(BodyNode *_bn, bool _warning=true)
Add a BodyNode and its parent DegreesOfFreedom to this Group.
Definition: Group.cpp:251
virtual MetaSkeletonPtr cloneMetaSkeleton(const std::string &cloneName) const=0
Creates an identical clone of this MetaSkeleton.
bool addBodyNodes(const std::vector< BodyNode * > &_bodyNodes, bool _warning=true)
Add a set of BodyNodes to this Group.
Definition: Group.cpp:372
bool removeDofs(const std::vector< DegreeOfFreedom * > &_dofs, bool _cleanupJoint=true, bool _warning=true)
Remove a set of DegreesOfFreedom from this Group.
Definition: Group.cpp:663
bool addJoint(Joint *_joint, bool _addDofs=true, bool _warning=true)
Add a Joint to this Group.
Definition: Group.cpp:427
void swapBodyNodeIndices(std::size_t _index1, std::size_t _index2)
Swap the index of BodyNode _index1 with _index2.
Definition: Group.cpp:147
Group(const std::string &_name, const std::vector< BodyNode * > &_bodyNodes, bool _includeJoints, bool _includeDofs)
Default constructor.
Definition: Group.cpp:674
bool removeJoint(Joint *_joint, bool _removeDofs=true, bool _warning=true)
Remove a Joint from this Group.
Definition: Group.cpp:487
bool addJoints(const std::vector< Joint * > &_joints, bool _addDofs=true, bool _warning=true)
Add a set of Joints to this Group.
Definition: Group.cpp:476
virtual ~Group()=default
Destructor.
bool addDof(DegreeOfFreedom *_dof, bool _addJoint=true, bool _warning=true)
Add a DegreeOfFreedom to this Group.
Definition: Group.cpp:539
class Joint
Definition: Joint.hpp:59
ReferentialSkeleton is a base class used to implement Linkage, Group, and other classes that are used...
Definition: ReferentialSkeleton.hpp:48
std::shared_ptr< MetaSkeleton > MetaSkeletonPtr
Definition: SmartPointer.hpp:68
std::shared_ptr< Group > GroupPtr
Definition: SmartPointer.hpp:73
Definition: BulletCollisionDetector.cpp:63