NX Open C++ 参考指南
2406 v1.1
载入中...
搜索中...
未找到
D:
Tan_NX2406C++
UGopenLib
NX2406
UGOPEN
NXOpen
ListCreator.hxx
1
//--------------------------------------------------------------------------
2
// Copyright 2024 Siemens
3
//--------------------------------------------------------------------------
4
// 用于JA API的C++接口的头文件
5
//--------------------------------------------------------------------------
6
//
7
// 源文件:
8
// ListCreator.ja
9
//
10
// 生成方式:
11
// apiwrap
12
//
13
// 警告:
14
// 此文件为自动生成 - 请勿手动编辑
15
//
16
#pragma once
17
#include <NXOpen/NXDeprecation.hxx>
18
#include <vector>
19
#include <NXOpen/NXString.hxx>
20
#include <NXOpen/Callback.hxx>
21
#include <NXOpen/Builder.hxx>
22
#include <NXOpen/libnxopencpp_exports.hxx>
23
#ifdef _MSC_VER
24
#pragma warning(push)
25
#pragma warning(disable:4996)
26
#endif
27
#ifdef __GNUC__
28
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
29
#endif
30
namespace
NXOpen
31
{
32
class
ListCreator
;
33
class
Builder
;
34
class
_ListCreatorBuilder;
35
class
ListCreatorImpl;
43
class
NXOPENCPPEXPORT ListCreator :
public
NXOpen::Builder
44
{
46
public
:
enum
TessellationOption
47
{
48
TessellationOptionDefined
,
49
TessellationOptionLw
,
50
TessellationOptionNx
51
};
52
53
public
:
enum
ResolutionType
54
{
55
ResolutionTypeCoarse
,
56
ResolutionTypeStandard
,
57
ResolutionTypeFine
,
58
ResolutionTypeExtraFine
,
59
ResolutionTypeSuperFine
,
60
ResolutionTypeUltraFine
,
61
ResolutionTypeUserDefined
62
};
63
64
public
:
enum
PerLodType
65
{
66
PerLodTypeAbsolute
,
67
PerLodTypeRelative
,
68
PerLodTypeNone
69
};
70
private
:
ListCreatorImpl
* m_listcreator_impl;
71
private
:
friend
class
_ListCreatorBuilder;
72
protected
:
ListCreator
();
73
public
:
~ListCreator
();
77
public
:
NXOpen::ListCreator::TessellationOption
TessOption
78
(
79
);
83
public
:
void
SetTessOption
84
(
85
NXOpen::ListCreator::TessellationOption
tessOption
86
);
90
public
:
NXString
Label
91
(
92
);
96
public
:
void
SetLabel
97
(
98
const
NXString
& label
99
);
103
void
SetLabel
104
(
105
const
char
* label
106
);
110
public
:
double
Chordal
111
(
112
);
116
public
:
void
SetChordal
117
(
118
double
chordal
119
);
123
public
:
double
Angular
124
(
125
);
129
public
:
void
SetAngular
130
(
131
double
angular
132
);
136
public
:
double
Length
137
(
138
);
142
public
:
void
SetLength
143
(
144
double
length
145
);
149
public
:
double
Simplify
150
(
151
);
155
public
:
void
SetSimplify
156
(
157
double
simplify
158
);
162
public
:
double
FeatureSuppression
163
(
164
);
168
public
:
void
SetFeatureSuppression
169
(
170
double
suppression
171
);
175
public
:
double
AdvCompression
176
(
177
);
181
public
:
void
SetAdvCompression
182
(
183
double
compression
184
);
188
public
:
NXOpen::ListCreator::ResolutionType
Resolution
189
(
190
);
194
public
:
void
SetResolution
195
(
196
NXOpen::ListCreator::ResolutionType
resolution
197
);
201
public
:
NXString
NxLabel
202
(
203
);
207
public
:
void
SetNxLabel
208
(
209
const
NXString
& label
210
);
214
void
SetNxLabel
215
(
216
const
char
* label
217
);
221
public
:
NXOpen::ListCreator::PerLodType
PerLODChordal
222
(
223
);
227
public
:
void
SetPerLODChordal
228
(
229
NXOpen::ListCreator::PerLodType
perLOD
230
);
231
};
232
}
233
#ifdef _MSC_VER
234
#pragma warning(pop)
235
#endif
236
#ifdef __GNUC__
237
#ifndef NX_NO_GCC_DEPRECATION_WARNINGS
238
#pragma GCC diagnostic warning "-Wdeprecated-declarations"
239
#endif
240
#endif
241
#undef EXPORTLIBRARY