dynamicup
blank.gif (811 bytes)
3c
m.gif (1431 bytes) palmer.gif (3094 bytes)
essenceti.gif (2971 bytes)
blank.gif (811 bytes)
down
blank.gif (811 bytes)
home



Evoke the image of an 'egg' shape: smooth, round, yet not entirely symmetrical, using all the DBN knowledge you might have at your disposal. Think closely about how the surface of the egg should be textured and decorated. Establish a clear underlying concept of computation, which will be demonstrated by your cleanliness of code.

paper 0
pen 100

// right, lighter curve
repeat R 100 0
{
   repeat P 80 20
   {
      pen P
      line 100 (R*3) R 0
   }
}

// left, darker curve
repeat L 0 100
{
   repeat M 20 80
   {
      pen M
      line 0 (L/3) L 100
   }
}

// circles
load dbngraphics.dbn
repeat R 50 40
{
   circle R R 50 50
}