GaitGeneration by Graph Search
Toggle main menu visibility
総合概要
諸情報
名前空間
名前空間一覧
名前空間メンバ
全て
a
b
c
d
e
f
g
h
i
k
l
m
o
r
s
t
関数
a
c
d
e
f
g
i
k
l
m
o
r
s
t
変数
型定義
列挙型
Concepts
クラス
クラス一覧
クラス索引
クラス階層
クラスメンバ
全て
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
関数
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
~
変数
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
v
w
x
y
z
型定義
ファイル
ファイル一覧
ファイルメンバ
全て
d
m
t
関数
d
m
t
マクロ定義
•
全て
クラス
名前空間
ファイル
関数
変数
型定義
列挙型
列挙値
マクロ定義
ページ
Concepts
読み取り中…
検索中…
一致する文字列を見つけられません
DesignLab
interface_dxlib_3d_renderer.h
[詳解]
1
3
4
// Copyright(c) 2023-2025 Design Engineering Laboratory, Saitama University
5
// Released under the MIT license
6
// https://opensource.org/licenses/mit-license.php
7
8
#ifndef DESIGNLAB_INTERFACE_DXLIB_3D_RENDERER_H_
9
#define DESIGNLAB_INTERFACE_DXLIB_3D_RENDERER_H_
10
11
12
namespace
designlab
13
{
14
17
class
IDxlib3dRenderer
18
{
19
public
:
20
virtual
~IDxlib3dRenderer
() =
default
;
21
25
virtual
void
Draw
()
const
= 0;
26
};
17
class
IDxlib3dRenderer
{
…
};
27
28
}
// namespace designlab
29
30
31
#endif
// DESIGNLAB_INTERFACE_DXLIB_3D_RENDERER_H_
designlab::IDxlib3dRenderer
DxLibの描画処理を行うクラスのインターフェース.
Definition
interface_dxlib_3d_renderer.h:18
designlab::IDxlib3dRenderer::Draw
virtual void Draw() const =0
描画処理を行う. const 関数にしているのは, 描画処理の中でメンバ変数を変更しないようにするため.
designlab::IDxlib3dRenderer::~IDxlib3dRenderer
virtual ~IDxlib3dRenderer()=default
designlab
Definition
abstract_dxlib_gui.cpp:18
構築:
1.9.8