dynamicup
blank.gif (811 bytes)
4c
m.gif (1431 bytes) palmer.gif (3094 bytes)
trianglesti.gif (2605 bytes)
blank.gif (811 bytes)
down
blank.gif (811 bytes)
home


Gather visual elements from at least three of your previous assignments, and create a 'welded image'. Each of the visual elements should be in a separate Command (or multiple Commands). Include comments to explain your choices and the resulting composition.

// for being from four different problems, these images combine 
// very well. i like how the light gray spikes and the black and 
// white triangle are similar (in that they're both triangular), but 
// very different.  more contrast comes from the triangle and the 
// dark curve in the upper left-hand corner.  however, the piece 
// is welded together well. that curve seems to envelope the 
// triangle, and the entire piece.

// 1E - the black and white triangle
command bwtriangle
{
   forever
   {
      repeat M 10 30
      {
         pen <mouse 1>
         line 90 M M M
      }
      repeat V 30 50
      {
         pen <mouse 2>
         line 90 V V V
      }
      repeat C 50 70
      {
         pen <mouse 1>
         line 90 C C C
      }
      repeat Z 90 70
      {
         pen <mouse 2>
         line 90 Z Z Z
      }
   }
}

// 2C - from "the cubist piano"
command spikes
{
   command triangle H1 V1 H2 V2 H3 V3
   {
      line H1 V1 H2 V2
      line H2 V2 H3 V3
      line H3 V3 H1 V1
   }
   pen 38

   repeat f 20 0
   {
      triangle 20 0 (f*6) 0 (f*50) 100
   }
}

// 3C - dark curve from the egg question
command curve
{
   repeat L 0 100
   {
      repeat M 20 80
      {
         pen M
         line 0 (L/3) L 100
      }
   }
}

// 3A - circles from the geometric progression
load dbngraphics.dbn
circle 0 0 2 64
circle 0 0 4 64
circle 0 0 8 64
circle 0 0 16 64
circle 0 0 32 64
circle 0 0 64 64
circle 0 0 128 64

spikes
curve
bwtriangle