Skip to content
Snippets Groups Projects
Commit b7fb7a38 authored by Joseph Mirabel's avatar Joseph Mirabel Committed by Joseph Mirabel
Browse files

Add GraphComponent::passiveDofs

parent b8d900a0
No related branches found
No related tags found
No related merge requests found
......@@ -85,6 +85,9 @@ namespace hpp {
/// Get a reference to the NumericalConstraints_t
const NumericalConstraints_t& numericalConstraints() const;
/// Get a reference to the NumericalConstraints_t
const std::vector <SizeIntervals_t>& passiveDofs() const;
/// Get a reference to the LockedJoints_t
const LockedJoints_t& lockedJoints () const;
......
......@@ -111,6 +111,11 @@ namespace hpp {
return numericalConstraints_;
}
const std::vector <SizeIntervals_t>& GraphComponent::passiveDofs() const
{
return passiveDofs_;
}
const LockedJoints_t& GraphComponent::lockedJoints () const
{
return lockedJoints_;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment