Computer Science 110
The Art & Science of Computer Graphics

Mount Holyoke College
Spring 2008


Lecture 03: Objects and Groups
Date: Wednesday, February 6, 2008


Agenda

Lecture Assignment

Due at the start of class, Monday, February 11.

  1. Write (or type) out a Mead definition for a four-legged table, and Mead code that will add two such tables to a scene.
  2. Describe the size and location of each of the cubes added with the following Mead code:
          (add cube redPlaster
               (xform
                (translate 100 0 0)
                (scale 2 2 2)
                )
           )
          (add cube bluePlaster
               (xform
                (scale 2 2 2)
                (translate 100 0 0)
                )
          )
    

Examples