NX Open C++ 参考指南
2406 v1.1
载入中...
搜索中...
未找到
D:
Tan_NX2406C++
UGopenLib
NX2406
UGOPEN
NXOpen
Features_IsoparametricCurvesBuilder.hxx
1
//--------------------------------------------------------------------------
2
// Copyright 2024 Siemens
3
//--------------------------------------------------------------------------
4
// C++接口到JA API的头文件
5
//--------------------------------------------------------------------------
6
//
7
// 源文件:
8
// Features_IsoparametricCurvesBuilder.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_GeometricConstraintDataManager.hxx>
22
#include <NXOpen/Features_FeatureBuilder.hxx>
23
#include <NXOpen/SelectObject.hxx>
24
#include <NXOpen/libnxopencpp_features_exports.hxx>
25
#ifdef _MSC_VER
26
#pragma warning(push)
27
#pragma warning(disable:4996)
28
#endif
29
#ifdef __GNUC__
30
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
31
#endif
32
namespace
NXOpen
33
{
34
namespace
Features
35
{
36
class
IsoparametricCurvesBuilder
;
37
}
38
namespace
Features
39
{
40
class
FeatureBuilder
;
41
}
42
namespace
Features
43
{
44
class
GeometricConstraintDataManager
;
45
}
46
class
Point
;
47
class
SelectDisplayableObject
;
48
namespace
Features
49
{
50
class
_IsoparametricCurvesBuilderBuilder;
51
class
IsoparametricCurvesBuilderImpl;
87
class
NXOPENCPP_FEATURESEXPORT IsoparametricCurvesBuilder :
public
NXOpen::Features::FeatureBuilder
88
{
90
public
:
enum
DirectionTypes
91
{
92
DirectionTypesIsoU
,
93
DirectionTypesIsoV
,
94
DirectionTypesIsoUV
95
};
96
97
public
:
enum
PlacementTypes
98
{
99
PlacementTypesUniform
,
100
PlacementTypesThroughPoints
,
101
PlacementTypesBetweenPoints
102
};
103
private
:
IsoparametricCurvesBuilderImpl
* m_isoparametriccurvesbuilder_impl;
104
private
:
friend
class
_IsoparametricCurvesBuilderBuilder;
105
protected
:
IsoparametricCurvesBuilder
();
106
public
:
~IsoparametricCurvesBuilder
();
110
public
:
NXOpen::SelectDisplayableObject
*
SelectObject
111
(
112
);
116
public
:
NXOpen::Features::IsoparametricCurvesBuilder::DirectionTypes
Direction
117
(
118
);
122
public
:
void
SetDirection
123
(
124
NXOpen::Features::IsoparametricCurvesBuilder::DirectionTypes
direction
125
);
129
public
:
NXOpen::Features::IsoparametricCurvesBuilder::PlacementTypes
Placement
130
(
131
);
135
public
:
void
SetPlacement
136
(
137
NXOpen::Features::IsoparametricCurvesBuilder::PlacementTypes
placement
138
);
142
public
:
NXOpen::Features::GeometricConstraintDataManager
*
ConstraintManager
143
(
144
);
148
public
:
bool
IsUEnabled
149
(
150
);
154
public
:
void
SetUEnabled
155
(
156
bool
isUEnabled
157
);
161
public
:
bool
IsVEnabled
162
(
163
);
167
public
:
void
SetVEnabled
168
(
169
bool
isVEnabled
170
);
174
public
:
int
Number
175
(
176
);
180
public
:
void
SetNumber
181
(
182
int
number
183
);
187
public
:
bool
IsSpacingEnabled
188
(
189
);
193
public
:
void
SetSpacingEnabled
194
(
195
bool
isSpacingEnabled
196
);
200
public
:
double
Spacing
201
(
202
);
206
public
:
void
SetSpacing
207
(
208
double
spacing
209
);
213
public
:
bool
IsSwitchDirection
214
(
215
);
219
public
:
void
SetSwitchDirection
220
(
221
bool
isSwitchDirection
222
);
226
public
:
bool
Associative
227
(
228
);
232
public
:
void
SetAssociative
233
(
234
bool
associative
235
);
239
public
:
void
SetActivePoints
240
(
241
const
std::vector<NXOpen::Point *> & points ,
242
NXOpen::Point
* masterPoint
243
);
247
public
:
void
UpdateIsoparametricCurves
248
(
249
);
250
};
251
}
252
}
253
#ifdef _MSC_VER
254
#pragma warning(pop)
255
#endif
256
#ifdef __GNUC__
257
#ifndef NX_NO_GCC_DEPRECATION_WARNINGS
258
#pragma GCC diagnostic warning "-Wdeprecated-declarations"
259
#endif
260
#endif
261
#undef EXPORTLIBRARY