You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The function Joint::reset_current_position(float, float) does not change the state of the Joint
Snippet from python shell:
In [682]: some_joint
Out[688]: <roboschool.cpp_household.Joint at 0x7f41b8375ea0>
In [689]: some_joint.current_position()
Out[689]: (nan, nan)
In [690]: some_joint.reset_current_position(0.0, 0.0)
In [691]: some_joint.current_position()
Out[691]: (nan, nan) # I would expect (0.0, 0.0)
The text was updated successfully, but these errors were encountered:
The function Joint::reset_current_position(float, float) does not change the state of the Joint
Snippet from python shell:
The text was updated successfully, but these errors were encountered: