import matplotlib.pyplot as plt from numpy import * t=linspace(0,50,200) plt.plot( t, -6*sqrt(3)*cos(t*pi/6) - 6*sin(t*pi/6) ) plt.show()