00001 /* 00002 * PROPRIETARY INFORMATION. This software is proprietary to 00003 * Side Effects Software Inc., and is not to be reproduced, 00004 * transmitted, or disclosed in any way without written permission. 00005 * 00006 * Produced by: 00007 * Dale Ducharme 00008 * Side Effects Software Inc. 00009 * 20 Maud St. 00010 * Toronto, Ontario, M5V 2M5 00011 * Canada 00012 * 416-366-4607 00013 * 00014 * NAME: Geometry Utility Library (C++) 00015 * 00016 * COMMENTS: 00017 * Creates torus' from various primitives 00018 */ 00019 00020 #ifndef __GU_TORUS_H__ 00021 #define __GU_TORUS_H__ 00022 00023 #include "GU_API.h" 00024 #include "GU_Detail.h" 00025 00026 class GU_API GU_TorusParms 00027 { 00028 public: 00029 GU_TorusParms(); 00030 00031 int rows, cols; 00032 float outsideRadius; 00033 float insideRadius; 00034 float xc, yc, zc; 00035 GU_AxisType axis; 00036 GEO_SurfaceType type; 00037 float begin_uangle, end_uangle; 00038 float begin_vangle, end_vangle; 00039 int wrapu, wrapv; 00040 int orderu, orderv; 00041 int imperfect; 00042 int capu, capv; 00043 }; 00044 00045 #endif
1.5.9