NX Open C++ 参考指南
2406 v1.1
载入中...
搜索中...
未找到
D:
Tan_NX2406C++
UGopenLib
NX2406
UGOPEN
NXOpen
Die_LineupBuilder.hxx
1
//--------------------------------------------------------------------------
2
// Copyright 2024 Siemens
3
//--------------------------------------------------------------------------
4
// C++接口至JA API的头文件
5
//--------------------------------------------------------------------------
6
//
7
// 源文件:
8
// Die_LineupBuilder.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_FeatureBuilder.hxx>
22
#include <NXOpen/ugmath.hxx>
23
#include <NXOpen/libnxopencpp_die_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
Die
34
{
35
class
LineupBuilder
;
36
}
37
class
Body
;
38
namespace
Features
39
{
40
class
FeatureBuilder
;
41
}
42
namespace
Die
43
{
44
class
_LineupBuilderBuilder;
45
class
LineupBuilderImpl;
49
class
NXOPENCPP_DIEEXPORT LineupBuilder :
public
NXOpen::Features::FeatureBuilder
50
{
51
private
:
LineupBuilderImpl
* m_lineupbuilder_impl;
52
private
:
friend
class
_LineupBuilderBuilder;
53
protected
: LineupBuilder();
54
public
: ~LineupBuilder();
58
public
:
void
SetProductBodies
59
(
60
const
std::vector<NXOpen::Body *> & objects
61
);
65
public
: std::vector<NXOpen::Body *>
GetProductBodies
66
(
67
);
71
public
:
void
SetDetails
72
(
73
std::vector<NXString> & strings
74
);
78
public
: std::vector<NXString>
GetDetails
79
(
80
);
84
public
:
NXOpen::Point3d
Origin
85
(
86
);
90
public
:
void
SetOrigin
91
(
92
const
NXOpen::Point3d
& origin
93
);
97
public
:
NXOpen::Vector3d
PressDirection
98
(
99
);
103
public
:
void
SetPressDirection
104
(
105
const
NXOpen::Vector3d
& pressDirection
106
);
110
public
:
NXOpen::Vector3d
FlowDirection
111
(
112
);
116
public
:
void
SetFlowDirection
117
(
118
const
NXOpen::Vector3d
& flowDirection
119
);
120
};
121
}
122
}
123
#ifdef _MSC_VER
124
#pragma warning(pop)
125
#endif
126
#ifdef __GNUC__
127
#ifndef NX_NO_GCC_DEPRECATION_WARNINGS
128
#pragma GCC diagnostic warning "-Wdeprecated-declarations"
129
#endif
130
#endif
131
#undef EXPORTLIBRARY