-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sdf 1.8: support specifying frames as joint child/parent (#304)
The `//joint/child` and `//joint/parent` elements now accept any valid frame name instead of only link names. Closes #204. * Add sdf test models * parser: update joint check function, add tests * FrameSemantics: joint parent/child as frames buildFrameAttachedToGraph: don't create edges from joint to child until all joint and frame vertices are added, in case the child is not a link. buildPoseRelativeToGraph: if //joint/pose/@relative_to is not specified, don't create edges from joint to child until all joint and frame vertices are added to the graph, in case the child is not a link. * Joint: add ResolveChildLink, ResolveParentLink These methods use the FrameAttachedToGraph to resolve the name of the parent and child links of a joint, similar to Frame::ResolveAttachedToBody. Return early from ResolveParentLink if "world" is specified as a joint's parent frame, since "world" is not in a Model's FrameAttachedToGraph. * Check that resolved parent and child frames differ Add test world in which a joint's child frame resolves to the same value as the parent, which is invalid. Check for this case in `ign sdf --check`. Signed-off-by: Steve Peters <[email protected]>
- Loading branch information
Showing
15 changed files
with
565 additions
and
53 deletions.
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
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
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
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.