Skip to content

Commit

Permalink
非常停止をデフォルトでfalseに
Browse files Browse the repository at this point in the history
  • Loading branch information
ryo-0723 committed Dec 19, 2024
1 parent 8bbde17 commit 3d093cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Udon/Algorithm/Trapezoidal.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ namespace Udon
/// @brief 目標値を計算する
/// @param target mm 目標値
/// @param endS mm/s 巡行後の終了スピード(デフォルトで0mm/s)
double operator()(const double target, bool isStop, const double endS = 0.0)
double operator()(const double target, bool isStop = false, const double endS = 0.0)
{
// X=Vot+(1/2)*at^2;
// V=a*t +Vo;
Expand Down

0 comments on commit 3d093cd

Please sign in to comment.