(self)
| 33 | self.v = self.max_v |
| 34 | |
| 35 | def plot(self): |
| 36 | plt.plot(self.x, self.y, ".b") |
| 37 | |
| 38 | # convert global coordinate |
| 39 | gx, gy = self.calc_global_contour() |
| 40 | plt.plot(gx, gy, "--b") |
| 41 | |
| 42 | def calc_global_contour(self): |
| 43 | gx = [(ix * np.cos(self.yaw) + iy * np.sin(self.yaw)) + |
no test coverage detected