This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# draws a bunch of Christmas trees | |
# writen by Yuhang Wang for A2PyKids | |
import canvas | |
from math import sin, cos, pi | |
# draws a star | |
def draw_star(x, y, inner_r, outer_r, jags): | |
canvas.set_fill_color(1,1,0.2) | |
canvas.move_to(x, y + outer_r) |