HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
GU_Loft.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: GU_Loft.C (C++)
7  *
8  * COMMENTS:
9  * Stitch polygons together without changing the number of points in the
10  * gdp.
11  *
12  */
13 
14 #ifndef __GU_Loft_h__
15 #define __GU_Loft_h__
16 
17 #include "GU_API.h"
18 class GA_PrimitiveGroup;
19 
21 {
25 };
26 
28 {
31 };
32 
34 {
35 public:
36  GU_LoftParms();
38 
39  GA_PrimitiveGroup *polys; // group of created polygons
40 
41  int keepPrims; // keep primitives
42  int proximity; // find start point based on proximity
43  int consolidate; // consolidate neighbouring points
44  float distance; // consolidation distance
45  GU_LoftMinimize goal; // minimization goal
46  GU_LoftClosureType wrapu; // wrap each cross-section
47  GU_LoftClosureType wrapv; // wrap first to last skin
48  float collinearity_tol; // tolerance for collinearity check
49  // before building a triangle
50 };
51 
52 #endif
GU_LoftMinimize
Definition: GU_Loft.h:27
GU_LoftMinimize goal
Definition: GU_Loft.h:45
int keepPrims
Definition: GU_Loft.h:41
int proximity
Definition: GU_Loft.h:42
float distance
Definition: GU_Loft.h:44
#define GU_API
Definition: GU_API.h:14
GA_PrimitiveGroup * polys
Definition: GU_Loft.h:39
int consolidate
Definition: GU_Loft.h:43
float collinearity_tol
Definition: GU_Loft.h:48
~GU_LoftParms()
Definition: GU_Loft.h:37
GU_LoftClosureType wrapv
Definition: GU_Loft.h:47
GU_LoftClosureType
Definition: GU_Loft.h:20
GU_LoftClosureType wrapu
Definition: GU_Loft.h:46