NX Open C++ 参考指南
2406 v1.1
载入中...
搜索中...
未找到
D:
Tan_NX2406C++
UGopenLib
NX2406
UGOPEN
NXOpen
CAE_Mesh.hxx
1
//--------------------------------------------------------------------------
2
// 版权所有 2024 Siemens
3
//--------------------------------------------------------------------------
4
// JA API 的 C++ 接口头文件
5
//--------------------------------------------------------------------------
6
//
7
// 源文件:
8
// CAE_Mesh.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/CAE_MeshDisplaySettings.hxx>
22
#include <NXOpen/CAE_IExportableFEEntity.hxx>
23
#include <NXOpen/DisplayableObject.hxx>
24
#include <NXOpen/libnxopencpp_cae_exports.hxx>
25
#ifdef _MSC_VER
26
#pragma warning(push)
27
#pragma warning(disable:4996)
28
#endif
29
#ifdef __GNUC__
30
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
31
#endif
32
namespace
NXOpen
33
{
34
namespace
CAE
35
{
36
class
Mesh
;
37
}
38
class
Body
;
39
namespace
CAE
40
{
41
class
IExportableFEEntity
;
42
}
43
namespace
CAE
44
{
45
class
IMeshCollector
;
46
}
47
namespace
CAE
48
{
49
class
MeshDisplaySettings
;
50
}
51
namespace
CAE
52
{
53
class
PropertyTable
;
54
}
55
class
DisplayableObject
;
56
namespace
CAE
57
{
58
class
_MeshBuilder;
59
class
MeshImpl;
66
class
NXOPENCPP_CAEEXPORT Mesh :
public
NXOpen::DisplayableObject
,
public
virtual
NXOpen::CAE::IExportableFEEntity
67
{
68
private
:
MeshImpl
* m_mesh_impl;
69
private
:
friend
class
_MeshBuilder;
70
protected
: Mesh();
71
public
: ~Mesh();
75
public
:
NXOpen::CAE::PropertyTable
*
ElementPropertyTable
76
(
77
);
82
public
:
bool
LockStatus
83
(
84
);
89
public
:
void
SetLockStatus
90
(
91
bool
lockStatus
92
);
96
public
:
NXOpen::CAE::IMeshCollector
*
MeshCollector
97
(
98
);
102
public
:
NXOpen::CAE::MeshDisplaySettings
*
GetMeshDisplaySettings
103
(
104
);
108
public
:
bool
ExportMeshProperty
109
(
110
);
114
public
:
void
SetExportMeshProperty
115
(
116
bool
fExportMesh
117
);
121
public
:
bool
IsValid
122
(
123
);
127
public
:
bool
GetUpdatePendingStatus
128
(
129
);
133
public
:
NXOpen::Body
*
GetLatticeBody
134
(
135
);
139
public
:
bool
GetPrintMeshWithTolerance
140
(
141
);
145
public
:
void
SetPrintMeshWithTolerance
146
(
147
bool
printTolerance
148
);
152
public
:
virtual
std::vector<NXString>
GetSolverCardSyntax
153
(
154
);
155
};
156
}
157
}
158
#ifdef _MSC_VER
159
#pragma warning(pop)
160
#endif
161
#ifdef __GNUC__
162
#ifndef NX_NO_GCC_DEPRECATION_WARNINGS
163
#pragma GCC diagnostic warning "-Wdeprecated-declarations"
164
#endif
165
#endif
166
#undef EXPORTLIBRARY