mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-04-22 03:00:22 -04:00
16 lines
301 B
Python
16 lines
301 B
Python
import conftest # Add root path to sys.path
|
|
from ArmNavigation.n_joint_arm_to_point_control\
|
|
import n_joint_arm_to_point_control as m
|
|
import random
|
|
|
|
random.seed(12345)
|
|
|
|
|
|
def test1():
|
|
m.show_animation = False
|
|
m.animation()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
conftest.run_this_test(__file__)
|