mas 110 exhibition - jshafer

Sine Mountain

5a

Using real sinusoidals, generate a shape

with primarily convex properties.

back to stills page

 

while 1:
  g.paper(100)
  g.pen(0)
  a = g.getMouse(1)
  b = g.getMouse(2)
  g.line(5,5,20,b)
  g.line(20,b,1,60)
  g.line(1,60,40,a)
  g.line(40,a,60,60)
  g.line(60,60,80,75)
  g.line(80,75,a,50)
  g.line(a,50,80,10)
  g.line(80,10,b,40)
  g.line(b,40,40,5)
  g.line(40,5,5,5)




back to top