GaitGeneration by Graph Search
読み取り中…
検索中…
一致する文字列を見つけられません
graphic_const.cpp
[詳解]
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#include "graphic_const.h"
9
10#include <Dxlib.h>
11
12
13namespace designlab
14{
15
16const char GraphicConst::kWindowName[] = "HexapodGraphic";
17
18const int GraphicConst::kColorBit = 32;
19
20const int GraphicConst::kBackColorRed = 170;
21const int GraphicConst::kBackColorGreen = 255;
22const int GraphicConst::kBackColorBlue = 255;
23
24const float GraphicConst::kCameraToTargetMax = 10000.0f;
25
26const float GraphicConst::kCameraToTargetMin = 10.0f;
27
28} // namespace designlab
static const float kCameraToTargetMax
カメラと注視目標の最大距離.
static const float kCameraToTargetMin
カメラと注視目標の最小距離.
static const int kBackColorBlue
ウィンドウ背景色. 青色成分.0~255の範囲で指定.
static const int kBackColorGreen
ウィンドウ背景色. 緑色成分.0~255の範囲で指定.
static const char kWindowName[]
ウィンドウの名前.
static const int kBackColorRed
ウィンドウ背景色. 赤色成分.0~255の範囲で指定.
static const int kColorBit
色を表現するビット数.通常32で良いが軽くするなら16にする.