/* cartesian.h  (Steve Hill)  1.2  3/9/90$ */

/* cartesian.h
 *
 * Header file for cartesian coordinate system.
 */

/* axis_t
 *
 * The three types of axis.
 */

typedef enum
{
	X_AXIS,
	Y_AXIS,
	Z_AXIS
}
axis_t;
