image teachpackSome of the image functions we use in class are defined in
	the image teachpack (which comes standard with
	DrScheme); they are only available if you
	have that teachpack loaded.  The easiest way to answer a question
	about these functions is to use DrScheme's "Help Desk", 
 so I won't repeat their full descriptions here: type "image.ss" into the
search field of DrScheme's help desk.
The ones you're most likely to use are
'solid, 'outline,
"solid", or "outline".
	tiles teachpackOther image functions are defined in the tiles teachpack,
which doesn't come standard with DrScheme but which you can install by using
DrScheme's "Install .plt file..." menu command: type in the URL
http://home.adelphi.edu/sbloch/class/160/tiles.plt and you should
see a bunch of messages ending with "Done setting up."  You should
only have to do this once for your home computer, and it should already be
installed on the lab machines.  After that, the functions will be available
whenever you have the tiles teachpack loaded.
image-above : image image ... -> image
produces an image with the first image "above" (i.e. closer to
the top of the screen) the second, which in turn is above the third, etc.
The pinholes are lined up in the x dimension.  If you apply image-above
to two images, the pinhole of the result is halfway between the pinholes of
the two images; if more than two, it's more complicated.
image-above-align-left : image image ... -> imageLike image-above, but lines up the left edges of
all the images.
image-above-align-right : image image ... -> imageLike image-above, but lines up the right edges of
all the images.
image-beside : image image ... -> image
produces an image with the first image to the left of the second, which in
turn is to the left of the third, etc.
The pinholes are lined up in the y dimension.
If you apply image-beside to two images,
the pinhole of the result is halfway between the pinholes of the two images;
if more than two, it's more complicated.
image-beside-align-top : image image ... -> imageLike image-beside, but lines up the top edges of
all the images.
image-beside-align-bottom : image image ... -> imageLike image-beside, but lines up the bottom edges of
all the images.
reflect-vert : image -> imageReflects the given image top-to-bottom.
reflect-horiz : image -> imageReflects the given image left-to-right and bottom.
reflect-main-diag : image -> imageReflects the given image across the diagonal from top-left to bottom-right; in other words, it swaps top-right with bottom-left.
reflect-other-diag : image -> imageReflects the given image across the diagonal from top-right to bottom-left; in other words, it swaps top-left with bottom-right.
rotate-cw : image -> imageRotates the given image 90 degrees clockwise around its pinhole.
rotate-ccw : image -> imageRotates the given image 90 degrees counterclockwise around its pinhole.
rotate-180 : image -> imageRotates the given image 180 degrees around its pinhole.
show-pinhole : image -> imageAdds a small black dot to the image so you can see where the pinhole is (useful in debugging).