/* * File: * cliographics.h * Summary: * Type and function declarations for graphics for clio * Author: * Samuel A. Rebelsky * Version: * 0.1 of July 2003. */ #ifndef _CLIOGRAPHICS_H_ #define _CLIOGRAPHICS_H_ /* * Draw a box in a numbered color (0 .. MAXD) and a * particular shade (0..100), centered at x,y,z and with * specified width, height, and depth. */ void clioBox(int color, float shade, float x, float y, float z, float w, float h, float d); #endif /* _CLIOGRAPHICS_H_ */