00001 /* 00002 File: PolyLib.h 00003 00004 Function: Defininitions for various polyhedral objects 00005 00006 Author(s): Andrew Willmott 00007 00008 Copyright: (c) 1995-2000, Andrew Willmott 00009 */ 00010 00011 00012 00013 #ifndef __PolyLib__ 00014 #define __PolyLib__ 00015 00016 #include "cl/Basics.h" 00017 00018 Void CreateSquare(); 00019 Void CreateSolidCube(); 00020 Void CreateSolidCone(); 00021 Void CreateSolidSphere(); 00022 Void CreateSolidCylinder(); 00023 Void CreateSolidTetrahedron(); 00024 00025 Void AddPolyObjects(); 00026 00027 struct PolyLib 00028 { 00029 static Int numTesselations; 00030 }; 00031 #endif