Python star (turtle) HD

23.09.2014
Python star function: from turtle import * def star(num_vertices, step, side_length): for i in range(num_vertices): forward(side_length) right(step*360.0/num_vertices) star(5, 2, 200)

Похожие видео

Показать еще