Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add the possibility to generate a random model with only revolute joints #1171

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/model/include/iDynTree/ModelTestUtils.h
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ inline std::string int2string(int i)
return ss.str();
}

inline Model getRandomModel(unsigned int nrOfJoints, size_t nrOfAdditionalFrames = 10)
inline Model getRandomModel(unsigned int nrOfJoints, size_t nrOfAdditionalFrames = 10, bool onlyRevoluteJoints=false)
{
Model model;

Expand All @@ -130,7 +130,7 @@ inline Model getRandomModel(unsigned int nrOfJoints, size_t nrOfAdditionalFrames
{
std::string parentLink = getRandomLinkOfModel(model);
std::string linkName = "link" + int2string(i);
addRandomLinkToModel(model,parentLink,linkName);
addRandomLinkToModel(model,parentLink,linkName,onlyRevoluteJoints);
}

for(unsigned int i=0; i < nrOfAdditionalFrames; i++)
Expand Down
Loading