NX Open C++ 参考指南
2406 v1.1
载入中...
搜索中...
未找到
D:
Tan_NX2406C++
UGopenLib
NX2406
UGOPEN
NXOpen
Mechatronics_FrameBuilder.hxx
1
//--------------------------------------------------------------------------
2
// Copyright 2024 Siemens
3
//--------------------------------------------------------------------------
4
// C++接口头文件,用于JA API
5
//--------------------------------------------------------------------------
6
//
7
// 源文件:
8
// Mechatronics_FrameBuilder.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/Builder.hxx>
23
#include <NXOpen/libnxopencpp_mechatronics_exports.hxx>
24
#ifdef _MSC_VER
25
#pragma warning(push)
26
#pragma warning(disable:4996)
27
#endif
28
#ifdef __GNUC__
29
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
30
#endif
31
namespace
NXOpen
32
{
33
namespace
Mechatronics
34
{
35
class
FrameBuilder
;
36
}
37
class
Builder
;
38
class
CoordinateSystem
;
39
class
Expression
;
40
class
Point
;
41
namespace
Mechatronics
42
{
43
class
_FrameBuilderBuilder;
44
class
FrameBuilderImpl;
48
class
NXOPENCPP_MECHATRONICSEXPORT FrameBuilder :
public
NXOpen::Builder
49
{
51
public
:
enum
MotionTypes
52
{
53
MotionTypesPtp
,
54
MotionTypesLinear
,
55
MotionTypesCircular
56
};
57
private
:
FrameBuilderImpl
* m_framebuilder_impl;
58
private
:
friend
class
_FrameBuilderBuilder;
59
protected
:
FrameBuilder
();
60
public
:
~FrameBuilder
();
64
public
:
NXOpen::CoordinateSystem
*
Frame
65
(
66
);
70
public
:
void
SetFrame
71
(
72
NXOpen::CoordinateSystem
* frame
73
);
77
public
:
NXString
Name
78
(
79
);
83
public
:
void
SetName
84
(
85
const
NXString
& name
86
);
90
void
SetName
91
(
92
const
char
* name
93
);
97
public
:
NXOpen::Mechatronics::FrameBuilder::MotionTypes
MotionType
98
(
99
);
103
public
:
void
SetMotionType
104
(
105
NXOpen::Mechatronics::FrameBuilder::MotionTypes
motionType
106
);
110
public
:
int
SolutionIndex
111
(
112
);
116
public
:
void
SetSolutionIndex
117
(
118
int
solutionIndex
119
);
123
public
:
NXOpen::Point
*
CirclePoint
124
(
125
);
129
public
:
void
SetCirclePoint
130
(
131
NXOpen::Point
* point
132
);
136
public
:
NXOpen::Expression
*
Duration
137
(
138
);
142
public
:
int
FlybyRank
143
(
144
);
148
public
:
void
SetFlybyRank
149
(
150
int
flybyRank
151
);
155
public
:
NXString
GetSpeedData
156
(
157
);
161
public
:
void
SetSpeedData
162
(
163
const
NXString
& speedData
164
);
168
void
SetSpeedData
169
(
170
const
char
* speedData
171
);
172
};
173
}
174
}
175
#ifdef _MSC_VER
176
#pragma warning(pop)
177
#endif
178
#ifdef __GNUC__
179
#ifndef NX_NO_GCC_DEPRECATION_WARNINGS
180
#pragma GCC diagnostic warning "-Wdeprecated-declarations"
181
#endif
182
#endif
183
#undef EXPORTLIBRARY