NX Open C++ 参考指南
2406 v1.1
载入中...
搜索中...
未找到
D:
Tan_NX2406C++
UGopenLib
NX2406
UGOPEN
NXOpen
SurfaceRebuildData.hxx
1
//--------------------------------------------------------------------------
2
// Copyright 2024 Siemens
3
//--------------------------------------------------------------------------
4
// Header for C++ interface to JA API
5
//--------------------------------------------------------------------------
6
//
7
// Source File:
8
// SurfaceRebuildData.ja
9
//
10
// Generated by:
11
// apiwrap
12
//
13
// WARNING:
14
// This file is automatically generated - do not edit by hand
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/TransientObject.hxx>
22
#include <NXOpen/libnxopencpp_exports.hxx>
23
#ifdef _MSC_VER
24
#pragma warning(push)
25
#pragma warning(disable:4996)
26
#endif
27
#ifdef __GNUC__
28
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
29
#endif
30
namespace
NXOpen
31
{
32
class
SurfaceRebuildData
;
33
class
SurfaceRebuildDataImpl;
37
class
NXOPENCPPEXPORT
SurfaceRebuildData
:
public
NXOpen::TransientObject
38
{
40
public
:
enum
Type
41
{
42
TypeNone
,
43
TypeManual
,
44
TypeAuto
45
};
46
private
:
SurfaceRebuildDataImpl
* m_surfacerebuilddata_impl;
48
public
:
explicit
SurfaceRebuildData
(
void
*ptr);
50
53
public
:
virtual
~SurfaceRebuildData
();
57
public
:
void
SetPrimaryRebuildType
58
(
59
NXOpen::SurfaceRebuildData::Type
primaryRebuildType
60
);
64
public
:
NXOpen::SurfaceRebuildData::Type
PrimaryRebuildType
65
(
66
);
70
public
:
void
SetPrimaryDegree
71
(
72
int
degree
73
);
77
public
:
int
PrimaryDegree
78
(
79
);
83
public
:
void
SetPrimaryMaxDegree
84
(
85
int
maxDegree
86
);
90
public
:
int
PrimaryMaxDegree
91
(
92
);
96
public
:
void
SetPrimaryMaxSegments
97
(
98
int
maxSegments
99
);
103
public
:
int
PrimaryMaxSegments
104
(
105
);
109
public
:
void
SetCrossRebuildType
110
(
111
NXOpen::SurfaceRebuildData::Type
crossRebuildType
112
);
116
public
:
NXOpen::SurfaceRebuildData::Type
CrossRebuildType
117
(
118
);
122
public
:
void
SetCrossDegree
123
(
124
int
degree
125
);
129
public
:
int
CrossDegree
130
(
131
);
135
public
:
void
SetCrossMaxDegree
136
(
137
int
maxDegree
138
);
142
public
:
int
CrossMaxDegree
143
(
144
);
148
public
:
void
SetCrossMaxSegments
149
(
150
int
maxSegments
151
);
155
public
:
int
CrossMaxSegments
156
(
157
);
165
public
:
void
SetTolerances
166
(
167
const
std::vector<double> & tolerances
168
);
177
public
: std::vector<double>
GetTolerances
178
(
179
int
numTolerances
180
);
181
};
//lint !e1712 default constructor not defined for class
182
}
183
#ifdef _MSC_VER
184
#pragma warning(pop)
185
#endif
186
#ifdef __GNUC__
187
#ifndef NX_NO_GCC_DEPRECATION_WARNINGS
188
#pragma GCC diagnostic warning "-Wdeprecated-declarations"
189
#endif
190
#endif
191
#undef EXPORTLIBRARY