Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
kerikun11 committed Jun 13, 2020
1 parent 86d2394 commit 2f97c91
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -410,9 +410,10 @@ public:
* @param v 並進速度
* @param t 時刻
* @param Ts 積分時間
* @param k_slip スリップ角定数
*/
static void integrate(const AccelDesigner &ad, State &s, const float v,
const float t, const float Ts);
const float t, const float Ts, const float k_slip = 0);
/**
* @brief 情報の表示
*/
Expand Down Expand Up @@ -455,7 +456,8 @@ public:
* @param t 現在時刻 [s]
* @param Ts 積分時間 [s]
*/
void update(State &state, const float t, const float Ts) const;
void update(State &state, const float t, const float Ts,
const float k_slip = 0) const;
/**
* @brief 並進速度を取得
*/
Expand Down
1 change: 1 addition & 0 deletions include/ctrl/slalom.h
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ struct Shape {
* @param v 並進速度 [m/s]
* @param t 時刻 [s]
* @param Ts 積分時間 [s]
* @param k_slip スリップ角定数
*/
static void integrate(const AccelDesigner &ad, State &s, const float v,
const float t, const float Ts, const float k_slip = 0) {
Expand Down
2 changes: 1 addition & 1 deletion pybind11/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ endif()
# make a custom target to plot
add_custom_target(${CUSTOM_TARGET_NAME}_plot
COMMAND ${CMAKE_COMMAND} -E env PYTHONPATH=${CMAKE_CURRENT_BINARY_DIR}
${Python3_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/plot.py && echo $PYTHONPATH
${Python3_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/plot.py
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
USES_TERMINAL
)

0 comments on commit 2f97c91

Please sign in to comment.