HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
GU_RoundFillet.h
Go to the documentation of this file.
1 /*
2  * PROPRIETARY INFORMATION. This software is proprietary to
3  * Side Effects Software Inc., and is not to be reproduced,
4  * transmitted, or disclosed in any way without written permission.
5  *
6  * NAME: rounded fillets (C++)
7  *
8  * COMMENTS:
9  */
10 
11 #ifndef __GU_RoundFillet_h__
12 #define __GU_RoundFillet_h__
13 
14 #include "GU_API.h"
15 class GEO_Face;
16 
18 {
19 public:
22 
23  // Intersection curve, and curves on surface 1 & 2 (in space coords)
24  GEO_Face *isectcurve, *curve1, *curve2;
25 
26  float density; // Density of spans
27  float tol3d; // Tolerance to do curvesects with
28  float tol2d; // Tolerance to triming with.
29  float angle; // Angle tolerance
30  float radius;
31  int trimmed; // Is it to be trimmed?
32  int reva, revb; // Reverse profile directions?
33 };
34 
35 
36 #endif
37 
#define GU_API
Definition: GU_API.h:14