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 * Jeff Lait 00008 * Side Effects 00009 * 477 Richmond Street West 00010 * Toronto, Ontario 00011 * Canada M5V 3E7 00012 * 416-504-9876 00013 * 00014 * NAME: rounded fillets (C++) 00015 * 00016 * COMMENTS: 00017 */ 00018 00019 #ifndef __GU_RoundFillet_h__ 00020 #define __GU_RoundFillet_h__ 00021 00022 #include "GU_API.h" 00023 class GEO_Face; 00024 class GU_TPSurf; 00025 00026 class GU_API GU_RoundFilletParms 00027 { 00028 public: 00029 GU_RoundFilletParms(); 00030 ~GU_RoundFilletParms(); 00031 00032 // Intersection curve, and curves on surface 1 & 2 (in space coords) 00033 GEO_Face *isectcurve, *curve1, *curve2; 00034 00035 float density; // Density of spans 00036 float tol3d; // Tolerance to do curvesects with 00037 float tol2d; // Tolerance to triming with. 00038 float angle; // Angle tolerance 00039 float radius; 00040 int trimmed; // Is it to be trimmed? 00041 int reva, revb; // Reverse profile directions? 00042 }; 00043 00044 00045 #endif 00046
1.5.9