NX Open C++ 参考指南
2406 v1.1
载入中...
搜索中...
未找到
D:
Tan_NX2406C++
UGopenLib
NX2406
UGOPEN
NXOpen
Features_EmbossLimit.hxx
1
//--------------------------------------------------------------------------
2
// Copyright 2024 Siemens
3
//--------------------------------------------------------------------------
4
// C++接口JA API的头文件
5
//--------------------------------------------------------------------------
6
//
7
// 源文件:
8
// Features_EmbossLimit.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/Features_EmbossTarget.hxx>
22
#include <NXOpen/TaggedObject.hxx>
23
#include <NXOpen/libnxopencpp_features_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
Features
34
{
35
class
EmbossLimit
;
36
}
37
class
Direction
;
38
class
Expression
;
39
namespace
Features
40
{
41
class
EmbossTarget
;
42
}
43
namespace
Features
44
{
45
class
_EmbossLimitBuilder;
46
class
EmbossLimitImpl;
71
class
NXOPENCPP_FEATURESEXPORT EmbossLimit :
public
NXOpen::TaggedObject
72
{
74
public
:
enum
EndcapMethod
75
{
76
EndcapMethodTranslation
,
77
EndcapMethodOffsetExact
,
78
EndcapMethodOffsetApproximation
,
79
EndcapMethodNone
80
};
81
82
public
:
enum
EndcapSourceOption
83
{
84
EndcapSourceOptionTarget
,
85
EndcapSourceOptionPlane
,
86
EndcapSourceOptionSection
,
87
EndcapSourceOptionFace
88
};
89
private
:
EmbossLimitImpl
* m_embosslimit_impl;
90
private
:
friend
class
_EmbossLimitBuilder;
91
protected
:
EmbossLimit
();
92
public
:
~EmbossLimit
();
96
public
:
void
SetEndcapOption
97
(
98
NXOpen::Features::EmbossLimit::EndcapMethod
endcapOption
99
);
103
public
:
NXOpen::Features::EmbossLimit::EndcapMethod
EndcapOption
104
(
105
);
109
public
:
void
SetEndcapSource
110
(
111
NXOpen::Features::EmbossLimit::EndcapSourceOption
endcapSourceOption
112
);
116
public
:
NXOpen::Features::EmbossLimit::EndcapSourceOption
EndcapSource
117
(
118
);
122
public
:
void
SetTargets
123
(
124
const
std::vector<NXOpen::Features::EmbossTarget *> & targets
125
);
129
public
: std::vector<NXOpen::Features::EmbossTarget *>
GetTargets
130
(
131
);
135
public
:
void
SetDirection
136
(
137
NXOpen::Direction
* direction
138
);
142
public
:
NXOpen::Direction
*
Direction
143
(
144
);
148
public
:
void
SetDistance
149
(
150
const
NXString
& distance
151
);
155
void
SetDistance
156
(
157
const
char
* distance
158
);
162
public
:
NXOpen::Expression
*
Distance
163
(
164
);
165
};
166
}
167
}
168
#ifdef _MSC_VER
169
#pragma warning(pop)
170
#endif
171
#ifdef __GNUC__
172
#ifndef NX_NO_GCC_DEPRECATION_WARNINGS
173
#pragma GCC diagnostic warning "-Wdeprecated-declarations"
174
#endif
175
#endif
176
#undef EXPORTLIBRARY