NX Open C++ 参考指南
2406 v1.1
载入中...
搜索中...
未找到
D:
Tan_NX2406C++
UGopenLib
NX2406
UGOPEN
NXOpen
Display_Scene.hxx
1
//--------------------------------------------------------------------------
2
// Copyright 2024 Siemens
3
//--------------------------------------------------------------------------
4
// 用于 JA API 的 C++ 接口的头文件
5
//--------------------------------------------------------------------------
6
//
7
// 源文件:
8
// Display_Scene.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/Display_Background.hxx>
22
#include <NXOpen/Display_EnvironmentBuilder.hxx>
23
#include <NXOpen/Display_ImageBasedLighting.hxx>
24
#include <NXOpen/Display_Lighting.hxx>
25
#include <NXOpen/Display_Reflection.hxx>
26
#include <NXOpen/Display_Stage.hxx>
27
#include <NXOpen/Builder.hxx>
28
#include <NXOpen/libnxopencpp_display_exports.hxx>
29
#ifdef _MSC_VER
30
#pragma warning(push)
31
#pragma warning(disable:4996)
32
#endif
33
#ifdef __GNUC__
34
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
35
#endif
36
namespace
NXOpen
37
{
38
namespace
Display
39
{
40
class
Scene
;
41
}
42
class
Builder
;
43
namespace
Display
44
{
45
class
Background
;
46
}
47
namespace
Display
48
{
49
class
EnvironmentBuilder
;
50
}
51
namespace
Display
52
{
53
class
ImageBasedLighting
;
54
}
55
namespace
Display
56
{
57
class
Lighting
;
58
}
59
namespace
Display
60
{
61
class
Reflection
;
62
}
63
namespace
Display
64
{
65
class
Stage
;
66
}
67
namespace
Display
68
{
69
class
_SceneBuilder;
70
class
SceneImpl;
79
class
NXOPENCPP_DISPLAYEXPORT Scene :
public
NXOpen::Builder
80
{
81
private
:
SceneImpl
* m_scene_impl;
82
private
:
friend
class
_SceneBuilder;
83
protected
: Scene();
84
public
: ~Scene();
88
public
:
NXOpen::Display::Background
*
Background
89
(
90
);
94
public
:
NXOpen::Display::Stage
*
Stage
95
(
96
);
100
public
:
NXOpen::Display::Reflection
*
Reflection
101
(
102
);
106
public
:
NXOpen::Display::Lighting
*
Lighting
107
(
108
);
112
public
:
NXOpen::Display::ImageBasedLighting
*
ImageBasedLighting
113
(
114
);
118
public
:
NXOpen::Display::EnvironmentBuilder
*
EnvironmentBuilder
119
(
120
);
121
};
122
}
123
}
124
#ifdef _MSC_VER
125
#pragma warning(pop)
126
#endif
127
#ifdef __GNUC__
128
#ifndef NX_NO_GCC_DEPRECATION_WARNINGS
129
#pragma GCC diagnostic warning "-Wdeprecated-declarations"
130
#endif
131
#endif
132
#undef EXPORTLIBRARY