GaitGeneration by Graph Search
読み取り中…
検索中…
一致する文字列を見つけられません
DesignLab
graph_com_plotter.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_GRAPH_COM_PLOTTER_H_
9
#define DESIGNLAB_GRAPH_COM_PLOTTER_H_
10
11
#include "
interface_dxlib_3d_renderer.h
"
12
13
namespace
designlab
14
{
15
16
class
GraphComPlotter
:
public
IDxlib3dRenderer
17
{
18
public
:
19
GraphComPlotter
() =
default
;
20
~GraphComPlotter
() =
default
;
21
22
void
Draw
()
const override
;
23
};
24
25
}
// namespace designlab
26
27
#endif
// DESIGNLAB_GRAPH_COM_PLOTTER_H_
designlab::GraphComPlotter
Definition
graph_com_plotter.h:17
designlab::GraphComPlotter::GraphComPlotter
GraphComPlotter()=default
designlab::GraphComPlotter::~GraphComPlotter
~GraphComPlotter()=default
designlab::GraphComPlotter::Draw
void Draw() const override
描画処理を行う. const 関数にしているのは, 描画処理の中でメンバ変数を変更しないようにするため.
Definition
graph_com_plotter.cpp:13
designlab::IDxlib3dRenderer
DxLibの描画処理を行うクラスのインターフェース.
Definition
interface_dxlib_3d_renderer.h:18
interface_dxlib_3d_renderer.h
designlab
Definition
abstract_dxlib_gui.cpp:18
構築:
1.9.8