Removes this line from the visualizer.
(self, vis)
| 113 | vis.add_geometry(cylinder) |
| 114 | |
| 115 | def remove_line(self, vis): |
| 116 | """Removes this line from the visualizer.""" |
| 117 | for cylinder in self.cylinder_segments: |
| 118 | vis.remove_geometry(cylinder) |
| 119 | |
| 120 | |
| 121 | if __name__ == '__main__': |
nothing calls this directly
no outgoing calls
no test coverage detected