123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- import matplotlib.pyplot as plt
- import numpy as np
- import math
- PI = np.pi
- class Arrow:
- def __init__(self,ax, x, y, theta, L, c):
- angle = np.deg2rad(30)
- d = 0.3 * L
- w = 2
- x_start = x
- y_start = y
- x_end = x + L * np.cos(theta)
- y_end = y + L * np.sin(theta)
- theta_hat_L = theta + PI - angle
- theta_hat_R = theta + PI + angle
- x_hat_start = x_end
- x_hat_end_L = x_hat_start + d * np.cos(theta_hat_L)
- x_hat_end_R = x_hat_start + d * np.cos(theta_hat_R)
- y_hat_start = y_end
- y_hat_end_L = y_hat_start + d * np.sin(theta_hat_L)
- y_hat_end_R = y_hat_start + d * np.sin(theta_hat_R)
- # plt.plot([x_start, x_end], [y_start, y_end], color=c, linewidth=w)
- # plt.plot([x_hat_start, x_hat_end_L],
- # [y_hat_start, y_hat_end_L], color=c, linewidth=w)
- # plt.plot([x_hat_start, x_hat_end_R],
- # [y_hat_start, y_hat_end_R], color=c, linewidth=w)
- ax.plot([x_start, x_end], [y_start, y_end], color=c, linewidth=w)
- ax.plot([x_hat_start, x_hat_end_L],
- [y_hat_start, y_hat_end_L], color=c, linewidth=w)
- ax.plot([x_hat_start, x_hat_end_R],
- [y_hat_start, y_hat_end_R], color=c, linewidth=w)
- class Car:
- def __init__(self, x, y, yaw, w, L):
- theta_B = PI + yaw
- xB = x + L / 4 * np.cos(theta_B)
- yB = y + L / 4 * np.sin(theta_B)
- theta_BL = theta_B + PI / 2
- theta_BR = theta_B - PI / 2
- x_BL = xB + w / 2 * np.cos(theta_BL) # Bottom-Left vertex
- y_BL = yB + w / 2 * np.sin(theta_BL)
- x_BR = xB + w / 2 * np.cos(theta_BR) # Bottom-Right vertex
- y_BR = yB + w / 2 * np.sin(theta_BR)
- x_FL = x_BL + L * np.cos(yaw) # Front-Left vertex
- y_FL = y_BL + L * np.sin(yaw)
- x_FR = x_BR + L * np.cos(yaw) # Front-Right vertex
- y_FR = y_BR + L * np.sin(yaw)
- plt.plot([x_BL, x_BR, x_FR, x_FL, x_BL],
- [y_BL, y_BR, y_FR, y_FL, y_BL],
- linewidth=1, color='black')
- Arrow(x, y, yaw, L / 2, 'black')
- # plt.axis("equal")
- # plt.show()
- def draw_car(x, y, yaw, steer, C, color='black'):
- car = np.array([[-C.RB, -C.RB, C.RF, C.RF, -C.RB],
- [C.W / 2, -C.W / 2, -C.W / 2, C.W / 2, C.W / 2]])
- wheel = np.array([[-C.TR, -C.TR, C.TR, C.TR, -C.TR],
- [C.TW / 4, -C.TW / 4, -C.TW / 4, C.TW / 4, C.TW / 4]])
- rlWheel = wheel.copy()
- rrWheel = wheel.copy()
- frWheel = wheel.copy()
- flWheel = wheel.copy()
- Rot1 = np.array([[math.cos(yaw), -math.sin(yaw)],
- [math.sin(yaw), math.cos(yaw)]])
- Rot2 = np.array([[math.cos(steer), math.sin(steer)],
- [-math.sin(steer), math.cos(steer)]])
- frWheel = np.dot(Rot2, frWheel)
- flWheel = np.dot(Rot2, flWheel)
- frWheel += np.array([[C.WB], [-C.WD / 2]])
- flWheel += np.array([[C.WB], [C.WD / 2]])
- rrWheel[1, :] -= C.WD / 2
- rlWheel[1, :] += C.WD / 2
- frWheel = np.dot(Rot1, frWheel)
- flWheel = np.dot(Rot1, flWheel)
- rrWheel = np.dot(Rot1, rrWheel)
- rlWheel = np.dot(Rot1, rlWheel)
- car = np.dot(Rot1, car)
- frWheel += np.array([[x], [y]])
- flWheel += np.array([[x], [y]])
- rrWheel += np.array([[x], [y]])
- rlWheel += np.array([[x], [y]])
- car += np.array([[x], [y]])
- plt.plot(car[0, :], car[1, :], color)
- plt.plot(frWheel[0, :], frWheel[1, :], color)
- plt.plot(rrWheel[0, :], rrWheel[1, :], color)
- plt.plot(flWheel[0, :], flWheel[1, :], color)
- plt.plot(rlWheel[0, :], rlWheel[1, :], color)
- Arrow(x, y, yaw, C.WB * 0.8, color)
- if __name__ == '__main__':
- # Arrow(-1, 2, 60)
- Car(0, 0, 1, 2, 60)
|