NX Open C++ 参考指南
2406 v1.1
载入中...
搜索中...
未找到
D:
Tan_NX2406C++
UGopenLib
NX2406
UGOPEN
NXOpen
MeasureAngleBuilder.hxx
1
//--------------------------------------------------------------------------
2
// Copyright 2024 Siemens
3
//--------------------------------------------------------------------------
4
// C++接口的JA API头文件
5
//--------------------------------------------------------------------------
6
//
7
// 源文件:
8
// MeasureAngleBuilder.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/MeasureBuilder.hxx>
22
#include <NXOpen/SelectObject.hxx>
23
#include <NXOpen/libnxopencpp_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
class
MeasureAngleBuilder
;
34
class
Direction
;
35
class
MeasureBuilder
;
36
class
Point
;
37
class
SelectDisplayableObject
;
38
class
_MeasureAngleBuilderBuilder;
39
class
MeasureAngleBuilderImpl;
45
class
NXOPENCPPEXPORT MeasureAngleBuilder :
public
NXOpen::MeasureBuilder
46
{
48
public
:
enum
AngleType
49
{
50
AngleTypeThreePoints
,
51
AngleTypeTwoObjects
,
52
AngleTypeScreenPoints
53
};
54
55
public
:
enum
ProjectionType
56
{
57
ProjectionTypeAngle3d
,
58
ProjectionTypeAngleXy
,
59
ProjectionTypeTrueAngle
60
};
61
62
public
:
enum
OrientationType
63
{
64
OrientationTypeInnerAngle
,
65
OrientationTypeOuterAngle
66
};
67
68
public
:
enum
ObjectType
69
{
70
ObjectTypeObject
,
71
ObjectTypeFeature
,
72
ObjectTypeVector
73
};
74
private
:
MeasureAngleBuilderImpl
* m_measureanglebuilder_impl;
75
private
:
friend
class
_MeasureAngleBuilderBuilder;
76
protected
:
MeasureAngleBuilder
();
77
public
:
~MeasureAngleBuilder
();
81
public
:
NXOpen::Point
*
BasePoint
82
(
83
);
87
public
:
void
SetBasePoint
88
(
89
NXOpen::Point
* basePoint
90
);
94
public
:
NXOpen::Point
*
BaseEnd
95
(
96
);
100
public
:
void
SetBaseEnd
101
(
102
NXOpen::Point
* baseEnd
103
);
107
public
:
NXOpen::Point
*
ProtractorEnd
108
(
109
);
113
public
:
void
SetProtractorEnd
114
(
115
NXOpen::Point
* protractorEnd
116
);
120
public
:
NXOpen::SelectDisplayableObject
*
Object1
121
(
122
);
126
public
:
NXOpen::SelectDisplayableObject
*
Object2
127
(
128
);
132
public
:
NXOpen::SelectDisplayableObject
*
Feature1
133
(
134
);
138
public
:
NXOpen::SelectDisplayableObject
*
Feature2
139
(
140
);
144
public
:
NXOpen::Direction
*
Vector1
145
(
146
);
150
public
:
void
SetVector1
151
(
152
NXOpen::Direction
* vector1
153
);
157
public
:
NXOpen::Direction
*
Vector2
158
(
159
);
163
public
:
void
SetVector2
164
(
165
NXOpen::Direction
* vector2
166
);
170
public
:
NXOpen::MeasureAngleBuilder::ObjectType
Objtype1
171
(
172
);
176
public
:
void
SetObjtype1
177
(
178
NXOpen::MeasureAngleBuilder::ObjectType
objtype
179
);
183
public
:
NXOpen::MeasureAngleBuilder::ObjectType
Objtype2
184
(
185
);
189
public
:
void
SetObjtype2
190
(
191
NXOpen::MeasureAngleBuilder::ObjectType
objtype
192
);
196
public
:
NXOpen::MeasureAngleBuilder::ProjectionType
Ptype
197
(
198
);
202
public
:
void
SetPtype
203
(
204
NXOpen::MeasureAngleBuilder::ProjectionType
mtype
205
);
209
public
:
NXOpen::MeasureAngleBuilder::OrientationType
Orientation
210
(
211
);
215
public
:
void
SetOrientation
216
(
217
NXOpen::MeasureAngleBuilder::OrientationType
mtype
218
);
222
public
:
bool
IsExact
223
(
224
);
228
public
:
void
SetExact
229
(
230
bool
isExact
231
);
232
};
233
}
234
#ifdef _MSC_VER
235
#pragma warning(pop)
236
#endif
237
#ifdef __GNUC__
238
#ifndef NX_NO_GCC_DEPRECATION_WARNINGS
239
#pragma GCC diagnostic warning "-Wdeprecated-declarations"
240
#endif
241
#endif
242
#undef EXPORTLIBRARY