Skip to content

Instantly share code, notes, and snippets.

View ssophwang's full-sized avatar

Sophia ssophwang

View GitHub Profile
# 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)