NX Open C++ 参考指南
2406 v1.1
载入中...
搜索中...
未找到
D:
Tan_NX2406C++
UGopenLib
NX2406
UGOPEN
NXOpen
Motion_FlexCurveBuilder.hxx
1
//--------------------------------------------------------------------------
2
// Copyright 2024 Siemens
3
//--------------------------------------------------------------------------
4
// C++接口JA API的头文件
5
//--------------------------------------------------------------------------
6
//
7
// 源文件:
8
// Motion_FlexCurveBuilder.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/Expression.hxx>
22
#include <NXOpen/TaggedObject.hxx>
23
#include <NXOpen/SelectObject.hxx>
24
#include <NXOpen/SelectObjectList.hxx>
25
#include <NXOpen/libnxopencpp_motion_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
Motion
36
{
37
class
FlexCurveBuilder
;
38
}
39
class
Expression
;
40
namespace
Motion
41
{
42
class
SelectFlexBody
;
43
}
44
class
Point
;
45
class
SelectCurveList
;
46
namespace
Motion
47
{
48
class
_FlexCurveBuilderBuilder;
49
class
FlexCurveBuilderImpl;
53
class
NXOPENCPP_MOTIONEXPORT FlexCurveBuilder :
public
NXOpen::TaggedObject
54
{
56
public
:
enum
DefinitionMethodType
57
{
58
DefinitionMethodTypeNodes
,
59
DefinitionMethodTypePoints
,
60
DefinitionMethodTypeExistingCurves
61
};
62
private
:
FlexCurveBuilderImpl
* m_flexcurvebuilder_impl;
63
private
:
friend
class
_FlexCurveBuilderBuilder;
64
protected
:
FlexCurveBuilder
();
65
public
:
~FlexCurveBuilder
();
69
public
:
NXOpen::Motion::SelectFlexBody
*
FlexBody
70
(
71
);
75
public
:
NXOpen::Motion::FlexCurveBuilder::DefinitionMethodType
DefinitionMethod
76
(
77
);
81
public
:
void
SetDefinitionMethod
82
(
83
NXOpen::Motion::FlexCurveBuilder::DefinitionMethodType
type
84
);
88
public
:
NXOpen::Expression
*
Tolerance
89
(
90
);
94
public
:
NXOpen::SelectCurveList
*
Curves
95
(
96
);
100
public
:
void
InsertEmptyNode
101
(
102
int
index
103
);
107
public
:
void
AssignNode
108
(
109
int
index ,
110
int
nodeLabel
111
);
115
public
:
void
AssignNodeFromPoint
116
(
117
int
index ,
118
NXOpen::Point
* point
119
);
123
public
:
void
RemoveNode
124
(
125
int
index
126
);
130
public
:
void
RemoveAllNodes
131
(
132
);
136
public
:
void
SwapNodes
137
(
138
int
index1 ,
139
int
index2
140
);
144
public
:
void
FindNodesFromCurves
145
(
146
);
150
public
:
bool
CloseCurve
151
(
152
);
156
public
:
void
SetCloseCurve
157
(
158
bool
isClosed
159
);
160
};
161
}
162
}
163
#ifdef _MSC_VER
164
#pragma warning(pop)
165
#endif
166
#ifdef __GNUC__
167
#ifndef NX_NO_GCC_DEPRECATION_WARNINGS
168
#pragma GCC diagnostic warning "-Wdeprecated-declarations"
169
#endif
170
#endif
171
#undef EXPORTLIBRARY