Skip to content

Commit

Permalink
Rename cycle frames to C1, C2
Browse files Browse the repository at this point in the history
Signed-off-by: Steve Peters <[email protected]>
  • Loading branch information
scpeters committed Aug 13, 2020
1 parent af86d42 commit 79d4139
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions pose_frame_semantics/proposal.md
Original file line number Diff line number Diff line change
Expand Up @@ -736,11 +736,11 @@ the implicit world frame.
<pose relative_to="cycle0">{X_C0C0}</pose> <!-- INVALID: cycle in relative_to graph does not lead to model frame. -->
</link>
<link name="cycle1">
<pose relative_to="cycle2">{X_C1C2}</pose>
<link name="C1">
<pose relative_to="C2">{X_C1C2}</pose>
</link>
<link name="cycle2">
<pose relative_to="cycle1">{X_C2C1}</pose> <!-- INVALID: cycle in relative_to graph does not lead to model frame. -->
<link name="C2">
<pose relative_to="C1">{X_C2C1}</pose> <!-- INVALID: cycle in relative_to graph does not lead to model frame. -->
</link>
</model>
~~~
Expand Down Expand Up @@ -770,12 +770,12 @@ the implicit world frame.
<link name="L"/>
</model>
<model name="cycle1">
<pose relative_to="cycle2">{X_C1C2}</pose>
<model name="C1">
<pose relative_to="C2">{X_C1C2}</pose>
<link name="L"/>
</model>
<model name="cycle2">
<pose relative_to="cycle1">{X_C2C1}</pose> <!-- INVALID: cycle in relative_to graph does not lead to model frame. -->
<model name="C2">
<pose relative_to="C1">{X_C2C1}</pose> <!-- INVALID: cycle in relative_to graph does not lead to model frame. -->
<link name="L"/>
</model>
</model>
Expand Down Expand Up @@ -840,11 +840,11 @@ the implicit world frame.
<pose relative_to="cycle0">{X_C0C0}</pose> <!-- INVALID: cycle in relative_to graph does not lead to model frame. -->
</frame>
<frame name="cycle1">
<pose relative_to="cycle2">{X_C1C2}</pose>
<frame name="C1">
<pose relative_to="C2">{X_C1C2}</pose>
</frame>
<frame name="cycle2">
<pose relative_to="cycle1">{X_C2C1}</pose> <!-- INVALID: cycle in relative_to graph does not lead to model frame. -->
<frame name="C2">
<pose relative_to="C1">{X_C2C1}</pose> <!-- INVALID: cycle in relative_to graph does not lead to model frame. -->
</frame>
</model>
~~~
Expand Down Expand Up @@ -925,11 +925,11 @@ the implicit world frame.
<pose relative_to="cycle0">{X_C0C0}</pose> <!-- INVALID: cycle in relative_to graph does not lead to world frame. -->
</frame>
<frame name="cycle1">
<pose relative_to="cycle2">{X_C1C2}</pose>
<frame name="C1">
<pose relative_to="C2">{X_C1C2}</pose>
</frame>
<frame name="cycle2">
<pose relative_to="cycle1">{X_C2C1}</pose> <!-- INVALID: cycle in relative_to graph does not lead to world frame. -->
<frame name="C2">
<pose relative_to="C1">{X_C2C1}</pose> <!-- INVALID: cycle in relative_to graph does not lead to world frame. -->
</frame>
</model>
~~~
Expand Down

0 comments on commit 79d4139

Please sign in to comment.