NX Open C++ 参考指南
2406 v1.1
载入中...
搜索中...
未找到
D:
Tan_NX2406C++
UGopenLib
NX2406
UGOPEN
NXOpen
Mechatronics_PhysicsJointBuilder.hxx
1
//--------------------------------------------------------------------------
2
// Copyright 2024 Siemens
3
//--------------------------------------------------------------------------
4
// C++接口到JA API的头文件
5
//--------------------------------------------------------------------------
6
//
7
// 源文件:
8
// Mechatronics_PhysicsJointBuilder.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/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
PhysicsJointBuilder
;
36
}
37
class
Builder
;
38
class
Direction
;
39
class
NXObject
;
40
class
Point
;
41
class
SelectNXObject
;
42
namespace
Mechatronics
43
{
44
class
_PhysicsJointBuilderBuilder;
45
class
PhysicsJointBuilderImpl;
49
class
NXOPENCPP_MECHATRONICSEXPORT PhysicsJointBuilder :
public
NXOpen::Builder
50
{
52
public
:
enum
MotionTypes
53
{
54
MotionTypesDynamics
,
55
MotionTypesKinematics
,
56
MotionTypesArticulation
57
};
58
private
:
PhysicsJointBuilderImpl
* m_physicsjointbuilder_impl;
59
private
:
friend
class
_PhysicsJointBuilderBuilder;
60
protected
:
PhysicsJointBuilder
();
61
public
:
~PhysicsJointBuilder
();
65
public
:
NXOpen::Mechatronics::PhysicsJointBuilder::MotionTypes
MotionType
66
(
67
);
71
public
:
void
SetMotionType
72
(
73
NXOpen::Mechatronics::PhysicsJointBuilder::MotionTypes
motionType
74
);
79
public
:
NXOpen::SelectNXObject
*
Attachment
80
(
81
);
85
public
:
void
SetAttachment
86
(
87
NXOpen::NXObject
* attachment
88
);
93
public
:
NXOpen::SelectNXObject
*
Base
94
(
95
);
99
public
:
void
SetBase
100
(
101
NXOpen::NXObject
* base
102
);
106
public
:
NXString
Name
107
(
108
);
112
public
:
void
SetName
113
(
114
const
NXString
& name
115
);
119
void
SetName
120
(
121
const
char
* name
122
);
126
public
:
bool
Positioning
127
(
128
);
132
public
:
void
SetPositioning
133
(
134
bool
usePositioning
135
);
139
public
:
NXOpen::Direction
*
BaseAxisVector
140
(
141
);
145
public
:
void
SetBaseAxisVector
146
(
147
NXOpen::Direction
* axisVector
148
);
152
public
:
NXOpen::Point
*
BaseAnchorPoint
153
(
154
);
158
public
:
void
SetBaseAnchorPoint
159
(
160
NXOpen::Point
* point
161
);
162
};
163
}
164
}
165
#ifdef _MSC_VER
166
#pragma warning(pop)
167
#endif
168
#ifdef __GNUC__
169
#ifndef NX_NO_GCC_DEPRECATION_WARNINGS
170
#pragma GCC diagnostic warning "-Wdeprecated-declarations"
171
#endif
172
#endif
173
#undef EXPORTLIBRARY