GaitGeneration by Graph Search
読み取り中…
検索中…
一致する文字列を見つけられません
robot_operator_fixed.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
9
10namespace designlab {
11
13 : operation_(operation) {}
14
15RobotOperation RobotOperatorFixed::Init() const { return operation_; }
16
18 [[maybe_unused]] const RobotStateNode& state) {
19 return operation_;
20}
21
22} // namespace designlab
RobotOperation Init() const override
ロボットの動作を初期化する.
RobotOperation Update(const RobotStateNode &state) override
ロボットの動作を更新する.
探索において目標となる座標や角度,評価する値についてまとめた構造体.
グラフ構造のためのノード(頂点).