GaitGeneration by Graph Search
読み取り中…
検索中…
一致する文字列を見つけられません
simulation_end_checker_by_position.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_SIMULATION_END_CHECKER_BY_POSITION_H_
9#define DESIGNLAB_SIMULATION_END_CHECKER_BY_POSITION_H_
10
12
13
14namespace designlab
15{
16
20{
21public:
22 SimulationEndCheckerByPosition(const Vector3& goal_position, float allowable_error);
23
24 bool IsEnd(const RobotStateNode& node) const override;
25
26private:
27 const Vector3 goal_position_;
28 const float allowable_error_;
29};
30
31} // namespace designlab
32
33
34#endif // DESIGNLAB_SIMULATION_END_CHECKER_BY_POSITION_H_
シミュレーションの終了を判定するクラスのインターフェース.
最終位置によるシミュレーション終了判定クラス.
bool IsEnd(const RobotStateNode &node) const override
シミュレーションの終了を判定する.
グラフ構造のためのノード(頂点).旧名 LNODE
3次元の位置ベクトルを表す構造体.