forked from cyberbotics/webots
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes supervisor node python API (cyberbotics#5633)
* Update node.py * Update changelog-r2023.md * clean-up * Update changelog-r2023.md * Fixed more references to deprecated API function * clang-format * Update wb_supervisor_node_enable_contact_points_tracking.m * Update supervisor.c * PEP8 * Update changelog-r2023.md * Update changelog-r2023.md * Fixed return value of field getters in case a field is not existing and moved VR functions in the supevisor.py file * Fixed pointless argument to wb_supervisor_node_disable_contact_points_tracking * MATLAB function * Removed deprecation from R2023a-rev1 * More changelog information * Fixed MATLAB generator * webots_ros * Update src/controller/cpp/Node.cpp Co-authored-by: Yannick Goumaz <[email protected]> * Removed duplicate functions Co-authored-by: Yannick Goumaz <[email protected]>
- Loading branch information
Showing
19 changed files
with
111 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
lib/controller/matlab/wb_supervisor_node_disable_contact_points_tracking.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
function result = wb_supervisor_node_disable_contact_points_tracking(noderef) | ||
% Usage: wb_supervisor_node_disable_contact_points_tracking(noderef) | ||
% Matlab API for Webots | ||
% Online documentation is available <a href="https://www.cyberbotics.com/doc/reference/supervisor">here</a> | ||
|
||
result = calllib('libController', 'wb_supervisor_node_disable_contact_points_tracking', noderef); |
6 changes: 6 additions & 0 deletions
6
lib/controller/matlab/wb_supervisor_node_enable_contact_points_tracking.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
function result = wb_supervisor_node_enable_contact_points_tracking(noderef, sampling_period, include_descendants) | ||
% Usage: wb_supervisor_node_enable_contact_points_tracking(noderef, sampling_period, include_descendants) | ||
% Matlab API for Webots | ||
% Online documentation is available <a href="https://www.cyberbotics.com/doc/reference/supervisor">here</a> | ||
|
||
result = calllib('libController', 'wb_supervisor_node_enable_contact_points_tracking', noderef, sampling_period, include_descendants); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.