GaitGeneration by Graph Search
読み取り中…
検索中…
一致する文字列を見つけられません
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
12
13namespace designlab
14{
15
17{
18public:
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_
void Draw() const override
描画処理を行う. const 関数にしているのは, 描画処理の中でメンバ変数を変更しないようにするため.
DxLibの描画処理を行うクラスのインターフェース.