NX Open C++ 参考指南
2406 v1.1
载入中...
搜索中...
未找到
D:
Tan_NX2406C++
UGopenLib
NX2406
UGOPEN
NXOpen
AnimationDesigner_MeasureBuilder.hxx
1
//--------------------------------------------------------------------------
2
// Copyright 2024 Siemens
3
//--------------------------------------------------------------------------
4
// C++接口到JA API的头文件
5
//--------------------------------------------------------------------------
6
//
7
// 源文件:
8
// AnimationDesigner_MeasureBuilder.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/SelectObject.hxx>
23
#include <NXOpen/SelectObjectList.hxx>
24
#include <NXOpen/libanimationdesigneropencpp_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
AnimationDesigner
35
{
36
class
MeasureBuilder
;
37
}
38
class
Builder
;
39
class
Direction
;
40
class
SelectNXObject
;
41
class
SelectNXObjectList
;
42
namespace
AnimationDesigner
43
{
44
class
_MeasureBuilderBuilder;
45
class
MeasureBuilderImpl;
49
class
ANIMATIONDESIGNEROPENCPPEXPORT MeasureBuilder :
public
NXOpen::Builder
50
{
52
public
:
enum
MeasureTypes
53
{
54
MeasureTypesDistance
,
55
MeasureTypesAngle
,
56
MeasureTypesMotorParameter
57
};
58
59
public
:
enum
MotorParameterTypes
60
{
61
MotorParameterTypesDisplacement
,
62
MotorParameterTypesVelocity
,
63
MotorParameterTypesAcceleration
64
};
65
private
:
MeasureBuilderImpl
* m_measurebuilder_impl;
66
private
:
friend
class
_MeasureBuilderBuilder;
67
protected
:
MeasureBuilder
();
68
public
:
~MeasureBuilder
();
72
public
:
NXOpen::AnimationDesigner::MeasureBuilder::MeasureTypes
MeasureType
73
(
74
);
78
public
:
void
SetMeasureType
79
(
80
NXOpen::AnimationDesigner::MeasureBuilder::MeasureTypes
measureType
81
);
85
public
:
NXOpen::SelectNXObjectList
*
List1
86
(
87
);
91
public
:
NXOpen::SelectNXObjectList
*
List2
92
(
93
);
97
public
:
NXOpen::Direction
*
Direction1
98
(
99
);
103
public
:
void
SetDirection1
104
(
105
NXOpen::Direction
* direction1
106
);
110
public
:
NXOpen::Direction
*
Direction2
111
(
112
);
116
public
:
void
SetDirection2
117
(
118
NXOpen::Direction
* direction2
119
);
124
public
:
NXOpen::SelectNXObject
*
Motor
125
(
126
);
130
public
:
NXOpen::AnimationDesigner::MeasureBuilder::MotorParameterTypes
MotorParameterType
131
(
132
);
136
public
:
void
SetMotorParameterType
137
(
138
NXOpen::AnimationDesigner::MeasureBuilder::MotorParameterTypes
motorParameterType
139
);
143
public
:
bool
UseVector
144
(
145
);
149
public
:
void
SetUseVector
150
(
151
bool
useVector
152
);
156
public
:
NXOpen::Direction
*
Vector
157
(
158
);
162
public
:
void
SetVector
163
(
164
NXOpen::Direction
* vector
165
);
169
public
:
NXString
Name
170
(
171
);
175
public
:
void
SetName
176
(
177
const
NXString
& name
178
);
182
void
SetName
183
(
184
const
char
* name
185
);
186
};
187
}
188
}
189
#ifdef _MSC_VER
190
#pragma warning(pop)
191
#endif
192
#ifdef __GNUC__
193
#ifndef NX_NO_GCC_DEPRECATION_WARNINGS
194
#pragma GCC diagnostic warning "-Wdeprecated-declarations"
195
#endif
196
#endif
197
#undef EXPORTLIBRARY