Biorbd
|
Via point of a muscle. More...
#include <ViaPoint.h>
Public Member Functions | |
ViaPoint () | |
Contruct ViaPoint. | |
ViaPoint (const biorbd::utils::Scalar &x, const biorbd::utils::Scalar &y, const biorbd::utils::Scalar &z) | |
Construct ViaPoint. More... | |
ViaPoint (const biorbd::utils::Scalar &x, const biorbd::utils::Scalar &y, const biorbd::utils::Scalar &z, const biorbd::utils::String &name, const biorbd::utils::String &parentName) | |
Construct ViaPoint. More... | |
ViaPoint (const biorbd::utils::Vector3d &other) | |
Construct ViaPoint from a vector. More... | |
ViaPoint (const biorbd::muscles::ViaPoint &other) | |
Construct ViaPoint from another ViaPoint. More... | |
biorbd::muscles::ViaPoint | DeepCopy () const |
Deep copy of a ViaPoint. More... | |
void | DeepCopy (const biorbd::muscles::ViaPoint &other) |
Deep copy of a ViaPoint into another ViaPoint. More... | |
template<typename OtherDerived > | |
biorbd::muscles::ViaPoint & | operator= (const biorbd::utils::Vector3d &other) |
To be able to use operator "=" when assigning a ViaPoint to a 3D node. More... | |
![]() | |
Vector3d () | |
Construct 3D vector. More... | |
Vector3d (const biorbd::utils::Scalar &x, const biorbd::utils::Scalar &y, const biorbd::utils::Scalar &z) | |
Construct 3D vector. More... | |
Vector3d (const biorbd::utils::Scalar &x, const biorbd::utils::Scalar &y, const biorbd::utils::Scalar &z, const biorbd::utils::String &name, const biorbd::utils::String &parentName) | |
Construct a 3D vector. More... | |
Vector3d (const biorbd::utils::Vector3d vec, const biorbd::utils::String &name, const biorbd::utils::String &parentName) | |
Construct a 3D vector. More... | |
Vector3d (const RigidBodyDynamics::Math::Vector3d &other) | |
Construct a 3D vector from a Casadi 3D vector (drop the trailling 1) More... | |
Vector3d (const RigidBodyDynamics::Math::VectorNd &other) | |
Construct a 3D vector from a Casadi ND vector (drop the trailling 1) More... | |
Vector3d (const RigidBodyDynamics::Math::Vector4d &other) | |
Construct a 3D vector from an eigen 4D vector (drop the trailling 1) More... | |
biorbd::utils::Vector3d | DeepCopy () const |
Deep copy of a 3D vector. More... | |
void | DeepCopy (const biorbd::utils::Vector3d &other) |
Deep copy of a 3D vector into another 3D vector. More... | |
biorbd::utils::Vector3d | applyRT (const RotoTrans &rt) const |
Apply a RotoTrans to the 3D vector. More... | |
void | applyRT (const RotoTrans &rt) |
Apply a RotoTrans to the 3D vector. More... | |
![]() | |
Node () | |
Construct Node. | |
Node (const biorbd::utils::Node &other) | |
Construct Node from another node. More... | |
Node (const biorbd::utils::String &name) | |
Construct Node. More... | |
Node (const biorbd::utils::String &name, const biorbd::utils::String &parentName) | |
Construct Node. More... | |
virtual | ~Node () |
Destroy class properly. | |
void | DeepCopy (const biorbd::utils::Node &other) |
Deep copy of the node in another node. More... | |
void | setName (const biorbd::utils::String &name) |
Set the name of the node. More... | |
const biorbd::utils::String & | name () const |
Return the name of the node. | |
const biorbd::utils::String & | parent () const |
Return the parent name of the node. | |
void | setParent (const biorbd::utils::String &name) |
Set the parent name of the node. More... | |
biorbd::utils::NODE_TYPE | typeOfNode () const |
Return the type of node. | |
Additional Inherited Members | |
![]() | |
void | setType () |
Set the type Vector3d. | |
![]() | |
std::shared_ptr< biorbd::utils::String > | m_name |
The name of the node. | |
std::shared_ptr< biorbd::utils::String > | m_parentName |
The parent name of the node. | |
std::shared_ptr< biorbd::utils::NODE_TYPE > | m_typeOfNode |
The type of the node. | |
Via point of a muscle.
Definition at line 16 of file ViaPoint.h.
biorbd::muscles::ViaPoint::ViaPoint | ( | const biorbd::utils::Scalar & | x, |
const biorbd::utils::Scalar & | y, | ||
const biorbd::utils::Scalar & | z | ||
) |
biorbd::muscles::ViaPoint::ViaPoint | ( | const biorbd::utils::Scalar & | x, |
const biorbd::utils::Scalar & | y, | ||
const biorbd::utils::Scalar & | z, | ||
const biorbd::utils::String & | name, | ||
const biorbd::utils::String & | parentName | ||
) |
biorbd::muscles::ViaPoint::ViaPoint | ( | const biorbd::utils::Vector3d & | other | ) |
Construct ViaPoint from a vector.
other | The vector |
Definition at line 32 of file ViaPoint.cpp.
biorbd::muscles::ViaPoint::ViaPoint | ( | const biorbd::muscles::ViaPoint & | other | ) |
Construct ViaPoint from another ViaPoint.
other | The other ViaPoint |
Definition at line 39 of file ViaPoint.cpp.
biorbd::muscles::ViaPoint biorbd::muscles::ViaPoint::DeepCopy | ( | ) | const |
Deep copy of a ViaPoint.
Definition at line 45 of file ViaPoint.cpp.
void biorbd::muscles::ViaPoint::DeepCopy | ( | const biorbd::muscles::ViaPoint & | other | ) |
Deep copy of a ViaPoint into another ViaPoint.
other | The ViaPoint to copy |
Definition at line 52 of file ViaPoint.cpp.
|
inline |
To be able to use operator "=" when assigning a ViaPoint to a 3D node.
other | The 3D node to assign to ViaPoint |
Definition at line 80 of file ViaPoint.h.