1000 triangles

This commit is contained in:
James Turk 2011-03-28 22:37:12 -04:00
parent a635c3150e
commit b48846ee21

View File

@ -6,7 +6,7 @@ def draw(window):
window.renderer.set_draw_color(0,0,0,255)
window.renderer.clear()
window.renderer.set_draw_color(255,0,0,255)
for i in xrange(20):
for i in xrange(1000):
window.renderer.set_draw_color(random.randint(0,255),
random.randint(0,255),
random.randint(0,255))