NX Open C++ 参考指南
2406 v1.1
载入中...
搜索中...
未找到
D:
Tan_NX2406C++
UGopenLib
NX2406
UGOPEN
NXOpen
GeometricAnalysis_DeviationChecking.hxx
1
//--------------------------------------------------------------------------
2
// Copyright 2024 Siemens
3
//--------------------------------------------------------------------------
4
// C++接口的头文件,用于JA API
5
//--------------------------------------------------------------------------
6
//
7
// 源文件:
8
// GeometricAnalysis_DeviationChecking.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_geometricanalysis_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
GeometricAnalysis
34
{
35
class
DeviationChecking
;
36
}
37
class
Builder
;
38
class
SelectIBaseCurve
;
39
class
SelectIParameterizedSurface
;
40
namespace
GeometricAnalysis
41
{
42
class
_DeviationCheckingBuilder;
43
class
DeviationCheckingImpl;
49
class
NXOPENCPP_GEOMETRICANALYSISEXPORT DeviationChecking :
public
NXOpen::Builder
50
{
52
public
:
enum
DeviationOptions
53
{
54
DeviationOptionsNoDeviations
,
56
DeviationOptionsAllDeviations
,
58
DeviationOptionsMaximumDistance
,
60
DeviationOptionsMinimumDistance
,
62
DeviationOptionsMaximumAngle
,
64
DeviationOptionsMinimumAngle
66
};
67
68
public
:
enum
Types
69
{
70
TypesCurveToCurve
,
72
TypesCurveToFace
,
74
TypesEdgeToFace
,
76
TypesFaceToFace
,
78
TypesEdgeToEdge
80
};
81
private
:
DeviationCheckingImpl
* m_deviationchecking_impl;
82
private
:
friend
class
_DeviationCheckingBuilder;
83
protected
:
DeviationChecking
();
84
public
:
~DeviationChecking
();
89
public
:
NXOpen::GeometricAnalysis::DeviationChecking::Types
Type
90
(
91
);
96
public
:
void
SetType
97
(
98
NXOpen::GeometricAnalysis::DeviationChecking::Types
type
99
);
103
public
:
NXOpen::SelectIBaseCurve
*
FirstCurve
104
(
105
);
109
public
:
NXOpen::SelectIBaseCurve
*
SecondCurve
110
(
111
);
115
public
:
NXOpen::SelectIBaseCurve
*
Curve
116
(
117
);
121
public
:
NXOpen::SelectIParameterizedSurface
*
FirstFace
122
(
123
);
127
public
:
NXOpen::SelectIParameterizedSurface
*
SecondFace
128
(
129
);
133
public
:
NXOpen::SelectIBaseCurve
*
FirstEdge
134
(
135
);
139
public
:
NXOpen::SelectIBaseCurve
*
SecondEdge
140
(
141
);
145
public
:
NXOpen::SelectIParameterizedSurface
*
FaceOfFirstEdge
146
(
147
);
151
public
:
NXOpen::SelectIParameterizedSurface
*
FaceOfSecondEdge
152
(
153
);
157
public
:
int
NumberCheckPoints
158
(
159
);
170
public
:
void
SetNumberCheckPoints
171
(
172
int
numberCheckPoints
173
);
179
public
:
int
NumberUcheckPoints
180
(
181
);
187
public
:
void
SetNumberUcheckPoints
188
(
189
int
numberUCheckPoints
190
);
196
public
:
int
NumberVcheckPoints
197
(
198
);
204
public
:
void
SetNumberVcheckPoints
205
(
206
int
numberVCheckPoints
207
);
211
public
:
double
DistanceTolerance
212
(
213
);
217
public
:
void
SetDistanceTolerance
218
(
219
double
distanceTolerance
220
);
224
public
:
double
AngleTolerance
225
(
226
);
230
public
:
void
SetAngleTolerance
231
(
232
double
angleTolerance
233
);
237
public
:
NXOpen::GeometricAnalysis::DeviationChecking::DeviationOptions
DeviationOption
238
(
239
);
243
public
:
void
SetDeviationOption
244
(
245
NXOpen::GeometricAnalysis::DeviationChecking::DeviationOptions
deviationOption
246
);
255
public
:
void
Check
256
(
257
);
258
};
259
}
260
}
261
#ifdef _MSC_VER
262
#pragma warning(pop)
263
#endif
264
#ifdef __GNUC__
265
#ifndef NX_NO_GCC_DEPRECATION_WARNINGS
266
#pragma GCC diagnostic warning "-Wdeprecated-declarations"
267
#endif
268
#endif
269
#undef EXPORTLIBRARY