Я не могу изобразить циклон с введенным числом циклов. Предполагается, что в коде предполагается, что пользователь нажмет начальную и конечную точки, а затем будет выведен циклон с введенными циклами от начальной точки до конечной точки.Нарисуйте циклон в Python с заданным количеством циклов?
from math import *
from graphics import *
def main():
win = GraphWin("Drawing a Cyclone",600,450)
win.setCoords(0,0,600,450)
msg = "Please enter the number of cycles, and click the start and end positions in the window."
Text(Point(300, 438), msg).draw(win)
Text(Point(65,415),"# of cycles:").draw(win)
inbox =Entry(Point(130,415),5)
inbox.draw(win)
start=win.getMouse()
start.setFill("red")
start.draw(win)
stop=win.getMouse()
stop.setFill("red")
stop.draw(win)
cycles=eval(inbox.getText())
radius = 0
length = sqrt((stop.x-start.x)**2+(stop.y-start.y)**2)
step_radius = length/(120*cycles)
radian = atan((stop.y-start.y)/(stop.x-start.x))
initial_angle = int(degrees(radian))
for i in (0, cycles*360, 3):
radius = radius + step_radius
theta=radians(initial_angle + (360*cycles*i)+3*i)
stop.x = start.x + radius*cos(theta)
stop.y = start.y + radius*sin(theta)
line=Line(start,stop)
line.draw(win)
start.x=stop.x
start.y=stop.y
win.getMouse()
win.close()
main()
This is what I'm supposed to get
Исправьте код вашего кода. И ваш вопрос должен описывать, что делает этот код в настоящее время, поэтому нам не нужно тратить время на запуск кода, чтобы увидеть, что он делает неправильно. (Кроме того, не у всех есть модуль «графика»). –