Computer Science 112
The Art & Science of Computer Graphics

Spring 2013, The College of Saint Rose

Lecture 16: Programming
Date: Thursday, March 21, 2013


Agenda

Lecture Assignment 16

Due at the start of class, Tuesday, March 26.

Please submit answers to these questions either as a hard copy (typeset or handwritten are OK) or by email to terescoj AT strose.edu by the start of class. Please use a clear subject line when submitting by email (e.g., CSC 112 Lecture Assignment 16, Joe Student). We will discuss these questions at the start of class, so no late submissions are accepted.

  1. Write a function to return a darker shade of an HSV color. (4 points)
    (define (darkerHSV c)
    
    
    
    
    )
    
  2. Write a function that generates a random RGB color. (4 points)
    (define (randomRGBColor)
    
    
    
    
    )
    

Examples