robot1.gv 619 B

1234567891011121314151617
  1. digraph G {
  2. node [shape=box];
  3. "base_link" [label="base_link"];
  4. "wheel_1" [label="wheel_1"];
  5. "wheel_2" [label="wheel_2"];
  6. "wheel_3" [label="wheel_3"];
  7. "wheel_4" [label="wheel_4"];
  8. node [shape=ellipse, color=blue, fontcolor=blue];
  9. "base_link" -> "base_to_wheel1" [label="xyz: 0 0 0 \nrpy: 0 -0 0"]
  10. "base_to_wheel1" -> "wheel_1"
  11. "base_link" -> "base_to_wheel2" [label="xyz: 0 0 0 \nrpy: 0 -0 0"]
  12. "base_to_wheel2" -> "wheel_2"
  13. "base_link" -> "base_to_wheel3" [label="xyz: 0 0 0 \nrpy: 0 -0 0"]
  14. "base_to_wheel3" -> "wheel_3"
  15. "base_link" -> "base_to_wheel4" [label="xyz: 0 0 0 \nrpy: 0 -0 0"]
  16. "base_to_wheel4" -> "wheel_4"
  17. }