NX Open C++ 参考指南
2406 v1.1
载入中...
搜索中...
未找到
D:
Tan_NX2406C++
UGopenLib
NX2406
UGOPEN
NXOpen
Features_DivideCurveBuilder.hxx
1
//--------------------------------------------------------------------------
2
// Copyright 2024 Siemens
3
//--------------------------------------------------------------------------
4
// C++接口的JA API头文件
5
//--------------------------------------------------------------------------
6
//
7
// 源文件:
8
// Features_DivideCurveBuilder.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/Features_FeatureBuilder.hxx>
22
#include <NXOpen/ObjectList.hxx>
23
#include <NXOpen/SelectObject.hxx>
24
#include <NXOpen/SelectObjectList.hxx>
25
#include <NXOpen/libnxopencpp_features_exports.hxx>
26
#ifdef _MSC_VER
27
#pragma warning(push)
28
#pragma warning(disable:4996)
29
#endif
30
#ifdef __GNUC__
31
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
32
#endif
33
namespace
NXOpen
34
{
35
namespace
Features
36
{
37
class
DivideCurveBuilder
;
38
}
39
namespace
Features
40
{
41
class
FeatureBuilder
;
42
}
43
namespace
GeometricUtilities
44
{
45
class
BoundingObjectBuilderList
;
46
}
47
class
SelectCurve
;
48
class
SelectPointList
;
49
namespace
Features
50
{
51
class
_DivideCurveBuilderBuilder;
52
class
DivideCurveBuilderImpl;
79
class
NXOPENCPP_FEATURESEXPORT DivideCurveBuilder :
public
NXOpen::Features::FeatureBuilder
80
{
82
public
:
enum
EqualSegmentOption
83
{
84
EqualSegmentOptionEqualParameter
,
85
EqualSegmentOptionEqualArcLength
86
};
87
88
public
:
enum
InputArcLengthDirectionFlag
89
{
90
InputArcLengthDirectionFlagStart
,
91
InputArcLengthDirectionFlagEnd
92
};
93
94
public
:
enum
KnotPointOption
95
{
96
KnotPointOptionByNumber
,
97
KnotPointOptionSelectPoint
,
98
KnotPointOptionAllKnotpoints
99
};
100
101
public
:
enum
CornerOption
102
{
103
CornerOptionByNumber
,
104
CornerOptionSelectPoint
,
105
CornerOptionAllCornerpoints
106
};
107
108
public
:
enum
Types
109
{
110
TypesEqualSegments
,
111
TypesByBoundingObjects
,
112
TypesInputArcLengthSegments
,
113
TypesAtKnotpoints
,
114
TypesAtCorners
115
};
116
private
:
DivideCurveBuilderImpl
* m_dividecurvebuilder_impl;
117
private
:
friend
class
_DivideCurveBuilderBuilder;
118
protected
:
DivideCurveBuilder
();
119
public
:
~DivideCurveBuilder
();
123
public
:
NXOpen::Features::DivideCurveBuilder::Types
Type
124
(
125
);
129
public
:
void
SetType
130
(
131
NXOpen::Features::DivideCurveBuilder::Types
type
132
);
136
public
:
NXOpen::SelectCurve
*
DividingCurve
137
(
138
);
142
public
:
NXOpen::Features::DivideCurveBuilder::EqualSegmentOption
EqualSegmentMethod
143
(
144
);
148
public
:
void
SetEqualSegmentMethod
149
(
150
NXOpen::Features::DivideCurveBuilder::EqualSegmentOption
equalSegmentMethod
151
);
155
public
:
int
EqualParameterSegments
156
(
157
);
161
public
:
void
SetEqualParameterSegments
162
(
163
int
equalParameterSegments
164
);
168
public
:
int
EqualArcLengthSegments
169
(
170
);
174
public
:
void
SetEqualArcLengthSegments
175
(
176
int
equalArcLengthSegments
177
);
181
public
:
double
ArcLength
182
(
183
);
187
public
:
void
SetArcLength
188
(
189
double
arcLength
190
);
194
public
:
NXOpen::Features::DivideCurveBuilder::InputArcLengthDirectionFlag
DirectionFlag
195
(
196
);
200
public
:
void
SetDirectionFlag
201
(
202
NXOpen::Features::DivideCurveBuilder::InputArcLengthDirectionFlag
directionFlag
203
);
207
public
:
NXOpen::Features::DivideCurveBuilder::KnotPointOption
KnotPointMethod
208
(
209
);
213
public
:
void
SetKnotPointMethod
214
(
215
NXOpen::Features::DivideCurveBuilder::KnotPointOption
knotPointMethod
216
);
220
public
:
int
KnotPointNumber
221
(
222
);
226
public
:
void
SetKnotPointNumber
227
(
228
int
knotPointNumber
229
);
233
public
:
NXOpen::SelectPointList
*
KnotPoint
234
(
235
);
239
public
:
NXOpen::Features::DivideCurveBuilder::CornerOption
CornerMethod
240
(
241
);
245
public
:
void
SetCornerMethod
246
(
247
NXOpen::Features::DivideCurveBuilder::CornerOption
cornerMethod
248
);
252
public
:
int
CornerNumber
253
(
254
);
258
public
:
void
SetCornerNumber
259
(
260
int
cornerNumber
261
);
265
public
:
NXOpen::SelectPointList
*
CornerPoint
266
(
267
);
271
public
:
NXOpen::GeometricUtilities::BoundingObjectBuilderList
*
BoundingObjects
272
(
273
);
274
};
275
}
276
}
277
#ifdef _MSC_VER
278
#pragma warning(pop)
279
#endif
280
#ifdef __GNUC__
281
#ifndef NX_NO_GCC_DEPRECATION_WARNINGS
282
#pragma GCC diagnostic warning "-Wdeprecated-declarations"
283
#endif
284
#endif
285
#undef EXPORTLIBRARY