-
Notifications
You must be signed in to change notification settings - Fork 42
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
bullet-featherstone: Support nested models #574
Merged
Merged
Changes from 39 commits
Commits
Show all changes
40 commits
Select commit
Hold shift + click to select a range
17cb3cd
Fix how links are flattened in bullet featherstone ConstructSdfModel
shameekganguly 4e73056
common_test/world_features: don't use TYPED_TEST
scpeters 49de232
Add test to show seg-fault with unsorted links
scpeters 48b369e
Merge branch 'scpeters/bullet_outoforderlinks_test' into bullet_outof…
scpeters e689f8b
add comments and fix style
iche033 00358f7
Merge branch 'gz-physics6' into bullet_outoforderlinks_fix
iche033 0a88d1d
wip
iche033 ef0ef82
change to use struct, rename world file to sdf, code cleanup
iche033 dd4c4be
Merge branch 'bullet_outoforderlinks_fix' into bullet_nested_model
iche033 a3fb96c
Merge branch 'gz-physics6' into bullet_nested_model
iche033 811bb13
working
iche033 08e7bd5
merge from gz-physics6
iche033 65770b5
Fix link/joint to model ref, tests passing
iche033 b228f17
support world model feature
iche033 d335865
clean up
iche033 679ed5d
more clean up
iche033 ab31c26
more cleanup
iche033 00dba93
lint
iche033 1e2bcdd
update remove logic, cleanup
iche033 53e1ee5
fix removing model with constraints in bullet-featherstone (#577)
iche033 2c85f5e
Support ConstructSdfJoint feature and add all links
iche033 116fc2a
Merge remote-tracking branch 'refs/remotes/origin/bullet_nested_model…
iche033 06016b7
add warning msg for floating bodies / subtrees
iche033 bc1219a
typo and style
iche033 88962e8
add ifdef for bullet version in 20.04
iche033 1292f73
fix build and warning
iche033 250ced5
Merge branch 'gz-physics6' into bullet_nested_model
scpeters 26471eb
typo
iche033 15aab54
expand test
iche033 2681ea0
add bullet ver check in test
iche033 575e73b
update bullet ver check in test, simplify joint to link pose function…
iche033 a283778
style
iche033 b963af1
update bullet ver target def
iche033 f287996
Merge branch 'gz-physics6' into bullet_nested_model
iche033 9ec4207
Merge branch 'gz-physics6' into bullet_nested_model
scpeters 2123ad0
Merge branch 'gz-physics6' into bullet_nested_model
iche033 8e99116
fix merge
iche033 44e0958
Merge branch 'gz-physics6' into bullet_nested_model
iche033 ca1715e
typos, comments, style
iche033 d08d0ef
check null model, update test
iche033 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why was this ownership change (here and elsewhere) necessary? Is a unique_ptr not still sufficient here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah, all we now use a single
btMultiBody
to store links from both the top level model and also nested models. So the nested model now keeps a shared pointer to it.