dynamicup
blank.gif (811 bytes)
8c
m.gif (1431 bytes) palmer.gif (3094 bytes)
freedomti.gif (2463 bytes)
blank.gif (811 bytes)
down
blank.gif (811 bytes)
home



Choose 3 of your 10 keyverbs/keyadjectives from class and represent them together as a single interactive piece with no typography. Again no static representations allowed. Again many in class used nouns -- no nouns allowed. Be sure to leave the 3 keyverbs/keyadjectives as a comment at the top of your code.

keywords: alive, electronic, free

#
# alive, electronic, free: click on the mouse button to see
# the small lines escape the box and grow larger.  the flicker
# and the look of television scan lines give the piece an
# electronic feel.  the motion of the lines make them (almost)
# come alive.

g.paper(0)

def crowd(a):
 for b in range(0,15):
  v = g.getMouse(3)
  g.pen(100)
  g.line((40+b+v),(30+a+v),(40+b-v),(30+a-v))
  g.pen(70)
  g.line((40+(a/2)+v),(50+b+v),(40+(a/2)-v),(50+b-v))
  g.pen(80)
  g.line((50+a+v),(60+b-v),(50+a-v),(60+b+v))
  
  g.pen(120-v)
  g.line(30,(20+(a/5)),30,70)
  g.line(30,70,(80+(a/3)),80)
  g.line((80+(a/3)),80,70,30)
  g.line(30,(20+(a/5)),70,30)

  
while 1:  
 for z in range(0,30):
  crowd(z)
  g.paper(0)
  g.pause(1)