/* GEOMETRY.H */ #define FLAT 0 #define SMOOTH 1 typedef float point[3]; /* --------------------------------------------------------------------------- */ /* FUNCTION PROTOTYPES */ void draw_cylinder(int,int); void draw_cone(int,int); void draw_cube(); void draw_tetrahedron(); void draw_sphere(int,int); void sphere_subdivide(int,point,point,point,int,int);