![blank.gif (811 bytes)](blank.gif)
![down](tridown1.gif)
![blank.gif (811 bytes)](blank.gif)
![home](triback1.gif) |
![](bombdim.gif)
![](weldeddim.gif)
|
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
}
|