(self, initial_point_size=0.02)
| 30 | self.points = points |
| 31 | |
| 32 | def plot(self, initial_point_size=0.02): |
| 33 | assert self.scene is not None |
| 34 | self.scene.plot(initial_point_size=initial_point_size, backend="pythreejs", polylines=self.boxes) |
| 35 | |
| 36 | def init_scene(self, point_color='light-blue', with_rgb=False): |
| 37 | assert self.points is not None |
nothing calls this directly
no outgoing calls
no test coverage detected