roboticstoolbox-python 1.0.3__tar.gz → 1.1.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {roboticstoolbox-python-1.0.3/roboticstoolbox_python.egg-info → roboticstoolbox_python-1.1.1}/PKG-INFO +35 -9
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/README.md +6 -7
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/pyproject.toml +48 -39
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/__init__.py +8 -1
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/backends/PyPlot/EllipsePlot.py +16 -21
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/backends/PyPlot/PyPlot.py +19 -5
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/backends/PyPlot/PyPlot2.py +14 -7
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/backends/PyPlot/RobotPlot.py +7 -6
- roboticstoolbox_python-1.1.1/roboticstoolbox/backends/PyPlot/test1.py +46 -0
- roboticstoolbox_python-1.1.1/roboticstoolbox/backends/PyPlot/test2.py +10 -0
- roboticstoolbox_python-1.1.1/roboticstoolbox/bin/__init__.py +0 -0
- roboticstoolbox_python-1.1.1/roboticstoolbox/bin/rtbtool.py +278 -0
- roboticstoolbox_python-1.1.1/roboticstoolbox/blocks/__init__.py +6 -0
- roboticstoolbox_python-1.1.1/roboticstoolbox/blocks/arm.py +1572 -0
- roboticstoolbox_python-1.1.1/roboticstoolbox/blocks/mobile.py +478 -0
- roboticstoolbox_python-1.1.1/roboticstoolbox/blocks/quad_model.py +132 -0
- roboticstoolbox_python-1.1.1/roboticstoolbox/blocks/spatial.py +247 -0
- roboticstoolbox_python-1.1.1/roboticstoolbox/blocks/test.py +156 -0
- roboticstoolbox_python-1.1.1/roboticstoolbox/blocks/uav.py +945 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/fknm.cpp +100 -237
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/fknm.h +8 -5
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/ik.cpp +8 -5
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/methods.cpp +62 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/structs.h +2 -1
- roboticstoolbox_python-1.1.1/roboticstoolbox/examples/__init__.py +0 -0
- roboticstoolbox_python-1.1.1/roboticstoolbox/examples/armer.py +80 -0
- roboticstoolbox_python-1.1.1/roboticstoolbox/examples/aside.py +142 -0
- roboticstoolbox_python-1.1.1/roboticstoolbox/examples/colors.py +29 -0
- roboticstoolbox_python-1.1.1/roboticstoolbox/examples/eg2.py +3 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/eigdemo.py +18 -9
- roboticstoolbox_python-1.1.1/roboticstoolbox/examples/erobot-test.py +10 -0
- roboticstoolbox_python-1.1.1/roboticstoolbox/examples/poly_example.py +95 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/puma_fdyn.py +4 -3
- roboticstoolbox_python-1.1.1/roboticstoolbox/examples/test.py +25 -0
- roboticstoolbox_python-1.1.1/roboticstoolbox/examples/test1.py +6 -0
- roboticstoolbox_python-1.1.1/roboticstoolbox/examples/test_et.py +72 -0
- roboticstoolbox_python-1.1.1/roboticstoolbox/examples/timing.py +62 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/Animations.py +11 -7
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/Bug2.py +44 -33
- roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/CurvaturePolyPlanner.py-new.py +166 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/DistanceTransformPlanner.py +7 -6
- roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/DstarPlanner-nearly.py +515 -0
- roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/DstarPlanner-old.py +403 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/DstarPlanner.py +86 -48
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/DubinsPlanner.py +9 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/EKF.py +302 -170
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/LatticePlanner.py +58 -48
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/OccGrid.py +18 -13
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/PRMPlanner.py +44 -26
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/ParticleFilter.py +265 -78
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/PlannerBase.py +21 -17
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/PoseGraph.py +212 -228
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/QuinticPolyPlanner.py +87 -32
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/RRTPlanner.py +32 -17
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/ReedsSheppPlanner.py +98 -37
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/Vehicle.py +369 -198
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/__init__.py +11 -2
- roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/bug.py +331 -0
- roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/distancexform.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/drivers.py +54 -39
- roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/dubins_path_planning.py +402 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/landmarkmap.py +21 -22
- roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/new.py +19 -0
- roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/plot_vehicle.py +51 -0
- roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/probabilistic_road_map.py +298 -0
- roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/qtiming.py +103 -0
- roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/reedsshepp-old.py +301 -0
- roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/rrt.py +278 -0
- roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/rrt_dubins.py +256 -0
- roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/rrt_star.py +293 -0
- roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/rrt_with_pathsmoothing.py +150 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/sensors.py +76 -60
- roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/state_lattice_planner.py +348 -0
- roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/test2.py +32 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Sawyer.py +3 -3
- roboticstoolbox_python-1.1.1/roboticstoolbox/models/DH/arte_parse.py +209 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/ETS/Frankie.py +2 -2
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/ETS/GenericSeven.py +2 -2
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/ETS/Omni.py +2 -2
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/ETS/Panda.py +2 -2
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/ETS/Planar2.py +4 -4
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/ETS/Planar_Y.py +2 -2
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/ETS/Puma560.py +2 -2
- roboticstoolbox_python-1.1.1/roboticstoolbox/models/ETS/Puma560dh.py +96 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/ETS/XYPanda.py +2 -2
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/AL5D.py +4 -2
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/Fetch.py +3 -2
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/FetchCamera.py +3 -2
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/Frankie.py +2 -2
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/FrankieOmni.py +2 -2
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/KinovaGen3.py +2 -2
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/LBR.py +2 -2
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/Mico.py +2 -2
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/PR2.py +4 -2
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/Panda.py +2 -2
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/Puma560.py +4 -2
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/UR10.py +2 -2
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/UR3.py +2 -2
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/UR5.py +2 -2
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/Valkyrie.py +2 -2
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/YuMi.py +2 -2
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/px100.py +3 -3
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/px150.py +3 -3
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/rx150.py +3 -3
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/rx200.py +3 -3
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/vx300.py +3 -3
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/vx300s.py +3 -3
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/wx200.py +3 -3
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/wx250.py +3 -3
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/wx250s.py +3 -3
- roboticstoolbox_python-1.1.1/roboticstoolbox/robot/BaseRobot.py +3090 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/robot/DHFactor.py +97 -87
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/robot/DHLink.py +12 -13
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/robot/DHRobot.py +67 -25
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/robot/Dynamics.py +657 -667
- roboticstoolbox_python-1.1.1/roboticstoolbox/robot/ERobot.py +25 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/robot/ET.py +394 -191
- roboticstoolbox_python-1.1.1/roboticstoolbox/robot/ETS.py +3489 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/robot/Gripper.py +134 -42
- roboticstoolbox_python-1.1.1/roboticstoolbox/robot/IK.py +1521 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/robot/Link.py +653 -474
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/robot/PoERobot.py +10 -33
- roboticstoolbox_python-1.1.1/roboticstoolbox/robot/Robot.py +2010 -0
- roboticstoolbox_python-1.1.1/roboticstoolbox/robot/RobotKinematics.py +1696 -0
- roboticstoolbox_python-1.1.1/roboticstoolbox/robot/RobotProto.py +113 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/robot/__init__.py +12 -12
- roboticstoolbox_python-1.1.1/roboticstoolbox/robot/symsimp.py +154 -0
- roboticstoolbox_python-1.1.1/roboticstoolbox/robot/symsimp2.py +78 -0
- roboticstoolbox_python-1.1.1/roboticstoolbox/robot/test-plot.py +7 -0
- roboticstoolbox_python-1.1.1/roboticstoolbox/robot/test_fkine.py +13 -0
- roboticstoolbox_python-1.1.1/roboticstoolbox/robot/test_invdyn.py +108 -0
- roboticstoolbox_python-1.1.1/roboticstoolbox/robot/timing_dynamics.py +64 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/__init__.py +6 -1
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/data.py +1 -1
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/p_servo.py +11 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/plot.py +2 -1
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/trajectory.py +288 -161
- roboticstoolbox_python-1.1.1/roboticstoolbox/tools/types.py +13 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1/roboticstoolbox_python.egg-info}/PKG-INFO +35 -9
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox_python.egg-info/SOURCES.txt +72 -15
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox_python.egg-info/entry_points.txt +1 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox_python.egg-info/requires.txt +10 -3
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/setup.py +0 -3
- roboticstoolbox_python-1.1.1/tests/test_BaseRobot.py +631 -0
- roboticstoolbox_python-1.1.1/tests/test_CustomXacro.py +67 -0
- roboticstoolbox_python-1.1.1/tests/test_DHRobot.py +1513 -0
- roboticstoolbox_python-1.1.1/tests/test_ELink.py +353 -0
- roboticstoolbox_python-1.1.1/tests/test_ERobot.py +223 -0
- roboticstoolbox_python-1.1.1/tests/test_ET.py +359 -0
- roboticstoolbox_python-1.1.1/tests/test_ETS.py +4371 -0
- roboticstoolbox_python-1.1.1/tests/test_ETS2.py +466 -0
- roboticstoolbox_python-1.1.1/tests/test_Gripper.py +115 -0
- roboticstoolbox_python-1.1.1/tests/test_IK.py +846 -0
- roboticstoolbox_python-1.1.1/tests/test_Link.py +208 -0
- roboticstoolbox_python-1.1.1/tests/test_PyPlot.py +50 -0
- roboticstoolbox_python-1.1.1/tests/test_PyPlot2.py +45 -0
- roboticstoolbox_python-1.1.1/tests/test_Robot.py +1460 -0
- roboticstoolbox_python-1.1.1/tests/test_Ticker.py +21 -0
- roboticstoolbox_python-1.1.1/tests/test_VPython.py +943 -0
- roboticstoolbox_python-1.1.1/tests/test_blocks.py +417 -0
- roboticstoolbox_python-1.1.1/tests/test_fknm.py +84 -0
- roboticstoolbox_python-1.1.1/tests/test_jacob.py +364 -0
- roboticstoolbox_python-1.1.1/tests/test_mobile.py +576 -0
- roboticstoolbox_python-1.1.1/tests/test_mobile_planner.py +177 -0
- roboticstoolbox_python-1.1.1/tests/test_models.py +146 -0
- roboticstoolbox_python-1.1.1/tests/test_tools.py +104 -0
- roboticstoolbox_python-1.1.1/tests/test_trajectory.py +612 -0
- roboticstoolbox-python-1.0.3/roboticstoolbox/backends/VPython/VPython.py +0 -527
- roboticstoolbox-python-1.0.3/roboticstoolbox/backends/VPython/__init__.py +0 -5
- roboticstoolbox-python-1.0.3/roboticstoolbox/backends/VPython/canvas.py +0 -1553
- roboticstoolbox-python-1.0.3/roboticstoolbox/backends/VPython/common_functions.py +0 -142
- roboticstoolbox-python-1.0.3/roboticstoolbox/backends/VPython/graphicalrobot.py +0 -823
- roboticstoolbox-python-1.0.3/roboticstoolbox/backends/VPython/grid.py +0 -624
- roboticstoolbox-python-1.0.3/roboticstoolbox/backends/VPython/object2d.py +0 -247
- roboticstoolbox-python-1.0.3/roboticstoolbox/backends/VPython/stl.py +0 -130
- roboticstoolbox-python-1.0.3/roboticstoolbox/backends/VPython/text.py +0 -347
- roboticstoolbox-python-1.0.3/roboticstoolbox/backends/__init__.py +0 -10
- roboticstoolbox-python-1.0.3/roboticstoolbox/bin/rtbtool +0 -224
- roboticstoolbox-python-1.0.3/roboticstoolbox/blocks/__init__.py +0 -5
- roboticstoolbox-python-1.0.3/roboticstoolbox/blocks/arm.py +0 -1593
- roboticstoolbox-python-1.0.3/roboticstoolbox/blocks/mobile.py +0 -416
- roboticstoolbox-python-1.0.3/roboticstoolbox/blocks/uav.py +0 -830
- roboticstoolbox-python-1.0.3/roboticstoolbox/examples/test.py +0 -15
- roboticstoolbox-python-1.0.3/roboticstoolbox/robot/ERobot.py +0 -2866
- roboticstoolbox-python-1.0.3/roboticstoolbox/robot/ETS.py +0 -2650
- roboticstoolbox-python-1.0.3/roboticstoolbox/robot/ETSRobot.py +0 -13
- roboticstoolbox-python-1.0.3/roboticstoolbox/robot/IK.py +0 -959
- roboticstoolbox-python-1.0.3/roboticstoolbox/robot/KinematicCache.py +0 -459
- roboticstoolbox-python-1.0.3/roboticstoolbox/robot/Robot.py +0 -2220
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/LICENSE +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/backends/Connector.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/backends/PyPlot/RobotPlot2.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/backends/PyPlot/__init__.py +0 -0
- {roboticstoolbox-python-1.0.3/roboticstoolbox/examples → roboticstoolbox_python-1.1.1/roboticstoolbox/backends}/__init__.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/backends/swift/__init__.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/Cholesky +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/CholmodSupport +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/Core +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/Dense +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/Eigen +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/Eigenvalues +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/Geometry +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/Householder +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/IterativeLinearSolvers +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/Jacobi +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/KLUSupport +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/LU +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/MetisSupport +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/OrderingMethods +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/PaStiXSupport +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/PardisoSupport +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/QR +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/QtAlignedMalloc +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/SPQRSupport +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/SVD +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/Sparse +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/SparseCholesky +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/SparseCore +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/SparseLU +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/SparseQR +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/StdDeque +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/StdList +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/StdVector +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/SuperLUSupport +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/UmfPackSupport +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Cholesky/LDLT.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Cholesky/LLT.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Cholesky/LLT_LAPACKE.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/CholmodSupport/CholmodSupport.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/ArithmeticSequence.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Array.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/ArrayBase.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/ArrayWrapper.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Assign.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/AssignEvaluator.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Assign_MKL.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/BandMatrix.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Block.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/BooleanRedux.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/CommaInitializer.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/ConditionEstimator.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/CoreEvaluators.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/CoreIterators.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/CwiseBinaryOp.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/CwiseNullaryOp.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/CwiseTernaryOp.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/CwiseUnaryOp.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/CwiseUnaryView.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/DenseBase.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/DenseCoeffsBase.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/DenseStorage.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Diagonal.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/DiagonalMatrix.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/DiagonalProduct.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Dot.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/EigenBase.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/ForceAlignedAccess.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Fuzzy.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/GeneralProduct.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/GenericPacketMath.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/GlobalFunctions.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/IO.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/IndexedView.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Inverse.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Map.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/MapBase.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/MathFunctions.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/MathFunctionsImpl.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Matrix.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/MatrixBase.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/NestByValue.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/NoAlias.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/NumTraits.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/PartialReduxEvaluator.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/PermutationMatrix.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/PlainObjectBase.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Product.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/ProductEvaluators.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Random.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Redux.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Ref.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Replicate.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Reshaped.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/ReturnByValue.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Reverse.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Select.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/SelfAdjointView.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/SelfCwiseBinaryOp.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Solve.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/SolveTriangular.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/SolverBase.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/StableNorm.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/StlIterators.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Stride.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Swap.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Transpose.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Transpositions.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/TriangularMatrix.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/VectorBlock.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/VectorwiseOp.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Visitor.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/AVX/Complex.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/AVX/MathFunctions.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/AVX/PacketMath.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/AVX/TypeCasting.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/AVX512/Complex.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/AVX512/MathFunctions.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/AVX512/PacketMath.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/AVX512/TypeCasting.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/AltiVec/Complex.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/AltiVec/MathFunctions.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/AltiVec/MatrixProduct.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/AltiVec/MatrixProductCommon.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/AltiVec/MatrixProductMMA.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/AltiVec/PacketMath.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/CUDA/Complex.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/Default/BFloat16.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/Default/ConjHelper.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/Default/GenericPacketMathFunctions.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/Default/GenericPacketMathFunctionsFwd.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/Default/Half.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/Default/Settings.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/Default/TypeCasting.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/GPU/MathFunctions.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/GPU/PacketMath.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/GPU/TypeCasting.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/HIP/hcc/math_constants.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/MSA/Complex.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/MSA/MathFunctions.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/MSA/PacketMath.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/NEON/Complex.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/NEON/GeneralBlockPanelKernel.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/NEON/MathFunctions.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/NEON/PacketMath.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/NEON/TypeCasting.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/SSE/Complex.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/SSE/MathFunctions.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/SSE/PacketMath.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/SSE/TypeCasting.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/SVE/MathFunctions.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/SVE/PacketMath.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/SVE/TypeCasting.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/SYCL/InteropHeaders.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/SYCL/MathFunctions.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/SYCL/PacketMath.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/SYCL/SyclMemoryModel.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/SYCL/TypeCasting.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/ZVector/Complex.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/ZVector/MathFunctions.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/ZVector/PacketMath.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/functors/AssignmentFunctors.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/functors/BinaryFunctors.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/functors/NullaryFunctors.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/functors/StlFunctors.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/functors/TernaryFunctors.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/functors/UnaryFunctors.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/GeneralBlockPanelKernel.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/GeneralMatrixMatrix.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/GeneralMatrixVector.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/Parallelizer.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/SelfadjointMatrixMatrix.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/SelfadjointMatrixVector.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/SelfadjointProduct.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/SelfadjointRank2Update.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/TriangularMatrixMatrix.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/TriangularMatrixVector.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/TriangularSolverMatrix.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/TriangularSolverVector.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/BlasUtil.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/ConfigureVectorization.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/Constants.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/DisableStupidWarnings.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/ForwardDeclarations.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/IndexedViewHelper.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/IntegralConstant.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/MKL_support.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/Macros.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/Memory.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/Meta.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/NonMPL2.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/ReenableStupidWarnings.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/ReshapedHelper.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/StaticAssert.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/SymbolicIndex.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/XprHelper.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Eigenvalues/ComplexEigenSolver.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Eigenvalues/ComplexSchur.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Eigenvalues/EigenSolver.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Eigenvalues/HessenbergDecomposition.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Eigenvalues/RealQZ.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Eigenvalues/RealSchur.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Eigenvalues/Tridiagonalization.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Geometry/AlignedBox.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Geometry/AngleAxis.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Geometry/EulerAngles.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Geometry/Homogeneous.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Geometry/Hyperplane.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Geometry/OrthoMethods.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Geometry/ParametrizedLine.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Geometry/Quaternion.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Geometry/Rotation2D.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Geometry/RotationBase.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Geometry/Scaling.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Geometry/Transform.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Geometry/Translation.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Geometry/Umeyama.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Geometry/arch/Geometry_SIMD.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Householder/BlockHouseholder.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Householder/Householder.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Householder/HouseholderSequence.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Jacobi/Jacobi.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/KLUSupport/KLUSupport.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/LU/Determinant.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/LU/FullPivLU.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/LU/InverseImpl.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/LU/PartialPivLU.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/LU/PartialPivLU_LAPACKE.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/LU/arch/InverseSize4.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/MetisSupport/MetisSupport.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/OrderingMethods/Amd.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/OrderingMethods/Eigen_Colamd.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/OrderingMethods/Ordering.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/PaStiXSupport/PaStiXSupport.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/PardisoSupport/PardisoSupport.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/QR/ColPivHouseholderQR.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/QR/CompleteOrthogonalDecomposition.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/QR/FullPivHouseholderQR.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/QR/HouseholderQR.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/QR/HouseholderQR_LAPACKE.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SVD/BDCSVD.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SVD/JacobiSVD.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SVD/JacobiSVD_LAPACKE.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SVD/SVDBase.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SVD/UpperBidiagonalization.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCholesky/SimplicialCholesky.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/AmbiVector.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/CompressedStorage.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/MappedSparseMatrix.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseAssign.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseBlock.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseColEtree.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseCompressedBase.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseCwiseBinaryOp.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseCwiseUnaryOp.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseDenseProduct.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseDiagonalProduct.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseDot.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseFuzzy.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseMap.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseMatrix.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseMatrixBase.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparsePermutation.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseProduct.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseRedux.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseRef.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseSelfAdjointView.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseSolverBase.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseSparseProductWithPruning.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseTranspose.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseTriangularView.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseUtil.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseVector.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseView.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/TriangularSolver.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLUImpl.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU_Memory.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU_Structs.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU_Utils.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU_column_bmod.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU_column_dfs.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU_gemm_kernel.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU_kernel_bmod.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU_panel_bmod.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU_panel_dfs.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU_pivotL.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU_pruneL.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU_relax_snode.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseQR/SparseQR.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/StlSupport/StdDeque.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/StlSupport/StdList.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/StlSupport/StdVector.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/StlSupport/details.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SuperLUSupport/SuperLUSupport.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/UmfPackSupport/UmfPackSupport.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/misc/Image.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/misc/Kernel.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/misc/RealSvd2x2.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/misc/blas.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/misc/lapack.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/misc/lapacke.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/misc/lapacke_mangling.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/plugins/ArrayCwiseBinaryOps.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/plugins/ArrayCwiseUnaryOps.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/plugins/BlockMethods.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/plugins/CommonCwiseBinaryOps.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/plugins/CommonCwiseUnaryOps.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/plugins/IndexedViewMethods.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/plugins/MatrixCwiseBinaryOps.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/plugins/MatrixCwiseUnaryOps.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/plugins/ReshapedMethods.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/frne.c +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/frne.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/ik.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/linalg.cpp +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/linalg.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/methods.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/ne.c +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/structs.cpp +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/vmath.c +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/vmath.h +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/RRMC.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/RRMC_swift.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/baur.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/branched_robot.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/fetch_vision.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/holistic_mm_non_holonomic.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/holistic_mm_omni.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/icra2021.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/ik_exp.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/ik_speed.py +0 -0
- {roboticstoolbox-python-1.0.3/roboticstoolbox/robot → roboticstoolbox_python-1.1.1/roboticstoolbox/examples}/ikine_evaluate.py +0 -0
- {roboticstoolbox-python-1.0.3/roboticstoolbox/robot → roboticstoolbox_python-1.1.1/roboticstoolbox/examples}/ikine_evaluate2.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/mexican-wave.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/mmc.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/mobile.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/neo.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/park.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/plot.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/plot_swift.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/puma_jtraj.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/puma_swift.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/readme.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/robots.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/swift_recording.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/teach.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/teach_swift.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/tripleangledemo.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/twistdemo.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/vehicle1.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/CurvaturePolyPlanner.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/AL5D.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Ball.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Baxter.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Cobra600.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Coil.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Hyper.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Hyper3d.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/IRB140.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Jaco.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/KR5.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/LWR4.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Mico.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Orion5.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/P8.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Panda.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Planar2.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Planar3.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Puma560.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Stanford.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/TwoLink.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/UR10.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/UR3.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/UR5.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Uprighttl.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/__init__.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/ETS/__init__.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/__init__.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/__init__.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/list.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/robot/ELink.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/DHFactor.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/Ticker.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/jsingu.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/null.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/numerical.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/params.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/urdf/__init__.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/urdf/urdf.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/urdf/utils.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/xacro/__init__.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/xacro/cli.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/xacro/color.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/xacro/xmlutils.py +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox_python.egg-info/dependency_links.txt +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox_python.egg-info/top_level.txt +0 -0
- {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: roboticstoolbox-python
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.1.1
|
|
4
4
|
Summary: A Python library for robotics education and research
|
|
5
5
|
Author-email: Jesse Haviland <j.haviland@qut.edu.au>, Peter Corke <rvc@petercorke.com>
|
|
6
6
|
License: MIT License
|
|
@@ -39,10 +39,37 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
39
39
|
Classifier: Programming Language :: Python :: 3.11
|
|
40
40
|
Requires-Python: >=3.7
|
|
41
41
|
Description-Content-Type: text/markdown
|
|
42
|
+
License-File: LICENSE
|
|
43
|
+
Requires-Dist: numpy>=1.17.4
|
|
44
|
+
Requires-Dist: spatialmath-python>=1.1.5
|
|
45
|
+
Requires-Dist: spatialgeometry>=1.0.0
|
|
46
|
+
Requires-Dist: pgraph-python
|
|
47
|
+
Requires-Dist: scipy
|
|
48
|
+
Requires-Dist: matplotlib
|
|
49
|
+
Requires-Dist: ansitable
|
|
50
|
+
Requires-Dist: swift-sim>=1.0.0
|
|
51
|
+
Requires-Dist: rtb-data
|
|
52
|
+
Requires-Dist: progress
|
|
53
|
+
Requires-Dist: typing_extensions
|
|
42
54
|
Provides-Extra: collision
|
|
55
|
+
Requires-Dist: pybullet; extra == "collision"
|
|
43
56
|
Provides-Extra: dev
|
|
57
|
+
Requires-Dist: black; extra == "dev"
|
|
58
|
+
Requires-Dist: pytest; extra == "dev"
|
|
59
|
+
Requires-Dist: pytest-cov; extra == "dev"
|
|
60
|
+
Requires-Dist: flake8; extra == "dev"
|
|
61
|
+
Requires-Dist: pyyaml; extra == "dev"
|
|
62
|
+
Requires-Dist: sympy; extra == "dev"
|
|
63
|
+
Requires-Dist: qpsolvers; extra == "dev"
|
|
64
|
+
Requires-Dist: quadprog; extra == "dev"
|
|
65
|
+
Requires-Dist: pybullet; extra == "dev"
|
|
66
|
+
Requires-Dist: bdsim; extra == "dev"
|
|
44
67
|
Provides-Extra: docs
|
|
45
|
-
|
|
68
|
+
Requires-Dist: sphinx; extra == "docs"
|
|
69
|
+
Requires-Dist: sphinx_rtd_theme; extra == "docs"
|
|
70
|
+
Requires-Dist: sphinx-autorun; extra == "docs"
|
|
71
|
+
Requires-Dist: sphinx_autodoc_typehints; extra == "docs"
|
|
72
|
+
Requires-Dist: sphinx-favicon; extra == "docs"
|
|
46
73
|
|
|
47
74
|
# Robotics Toolbox for Python
|
|
48
75
|
|
|
@@ -53,12 +80,11 @@ License-File: LICENSE
|
|
|
53
80
|
[](https://badge.fury.io/py/roboticstoolbox-python)
|
|
54
81
|
[](https://anaconda.org/conda-forge/roboticstoolbox-python)
|
|
55
82
|

|
|
56
|
-
[](https://opensource.org/licenses/MIT)
|
|
57
83
|
|
|
58
|
-
[](https://github.com/petercorke/robotics-toolbox-python/actions?query=workflow%3ATest)
|
|
59
85
|
[](https://codecov.io/gh/petercorke/robotics-toolbox-python)
|
|
60
|
-
[](https://lgtm.com/projects/g/petercorke/robotics-toolbox-python/context:python)
|
|
61
86
|
[](https://pypistats.org/packages/roboticstoolbox-python)
|
|
87
|
+
[](https://opensource.org/licenses/MIT)
|
|
62
88
|
|
|
63
89
|
<table style="border:0px">
|
|
64
90
|
<tr style="border:0px">
|
|
@@ -244,7 +270,7 @@ orientation parallel to y-axis (O=+Y)).
|
|
|
244
270
|
from spatialmath import SE3
|
|
245
271
|
|
|
246
272
|
Tep = SE3.Trans(0.6, -0.3, 0.1) * SE3.OA([0, 1, 0], [0, 0, -1])
|
|
247
|
-
sol = robot.
|
|
273
|
+
sol = robot.ik_LM(Tep) # solve IK
|
|
248
274
|
print(sol)
|
|
249
275
|
|
|
250
276
|
(array([ 0.20592815, 0.86609481, -0.79473206, -1.68254794, 0.74872915,
|
|
@@ -286,14 +312,14 @@ We can also experiment with velocity controllers in Swift. Here is a resolved-ra
|
|
|
286
312
|
|
|
287
313
|
```python
|
|
288
314
|
import swift
|
|
289
|
-
import roboticstoolbox as
|
|
315
|
+
import roboticstoolbox as rtb
|
|
290
316
|
import spatialmath as sm
|
|
291
317
|
import numpy as np
|
|
292
318
|
|
|
293
319
|
env = swift.Swift()
|
|
294
320
|
env.launch(realtime=True)
|
|
295
321
|
|
|
296
|
-
panda =
|
|
322
|
+
panda = rtb.models.Panda()
|
|
297
323
|
panda.q = panda.qr
|
|
298
324
|
|
|
299
325
|
Tep = panda.fkine(panda.q) * sm.SE3.Trans(0.2, 0.2, 0.45)
|
|
@@ -305,7 +331,7 @@ dt = 0.05
|
|
|
305
331
|
|
|
306
332
|
while not arrived:
|
|
307
333
|
|
|
308
|
-
v, arrived =
|
|
334
|
+
v, arrived = rtb.p_servo(panda.fkine(panda.q), Tep, 1)
|
|
309
335
|
panda.qd = np.linalg.pinv(panda.jacobe(panda.q)) @ v
|
|
310
336
|
env.step(dt)
|
|
311
337
|
|
|
@@ -7,12 +7,11 @@
|
|
|
7
7
|
[](https://badge.fury.io/py/roboticstoolbox-python)
|
|
8
8
|
[](https://anaconda.org/conda-forge/roboticstoolbox-python)
|
|
9
9
|

|
|
10
|
-
[](https://opensource.org/licenses/MIT)
|
|
11
10
|
|
|
12
|
-
[](https://github.com/petercorke/robotics-toolbox-python/actions?query=workflow%3ATest)
|
|
13
12
|
[](https://codecov.io/gh/petercorke/robotics-toolbox-python)
|
|
14
|
-
[](https://lgtm.com/projects/g/petercorke/robotics-toolbox-python/context:python)
|
|
15
13
|
[](https://pypistats.org/packages/roboticstoolbox-python)
|
|
14
|
+
[](https://opensource.org/licenses/MIT)
|
|
16
15
|
|
|
17
16
|
<table style="border:0px">
|
|
18
17
|
<tr style="border:0px">
|
|
@@ -198,7 +197,7 @@ orientation parallel to y-axis (O=+Y)).
|
|
|
198
197
|
from spatialmath import SE3
|
|
199
198
|
|
|
200
199
|
Tep = SE3.Trans(0.6, -0.3, 0.1) * SE3.OA([0, 1, 0], [0, 0, -1])
|
|
201
|
-
sol = robot.
|
|
200
|
+
sol = robot.ik_LM(Tep) # solve IK
|
|
202
201
|
print(sol)
|
|
203
202
|
|
|
204
203
|
(array([ 0.20592815, 0.86609481, -0.79473206, -1.68254794, 0.74872915,
|
|
@@ -240,14 +239,14 @@ We can also experiment with velocity controllers in Swift. Here is a resolved-ra
|
|
|
240
239
|
|
|
241
240
|
```python
|
|
242
241
|
import swift
|
|
243
|
-
import roboticstoolbox as
|
|
242
|
+
import roboticstoolbox as rtb
|
|
244
243
|
import spatialmath as sm
|
|
245
244
|
import numpy as np
|
|
246
245
|
|
|
247
246
|
env = swift.Swift()
|
|
248
247
|
env.launch(realtime=True)
|
|
249
248
|
|
|
250
|
-
panda =
|
|
249
|
+
panda = rtb.models.Panda()
|
|
251
250
|
panda.q = panda.qr
|
|
252
251
|
|
|
253
252
|
Tep = panda.fkine(panda.q) * sm.SE3.Trans(0.2, 0.2, 0.45)
|
|
@@ -259,7 +258,7 @@ dt = 0.05
|
|
|
259
258
|
|
|
260
259
|
while not arrived:
|
|
261
260
|
|
|
262
|
-
v, arrived =
|
|
261
|
+
v, arrived = rtb.p_servo(panda.fkine(panda.q), Tep, 1)
|
|
263
262
|
panda.qd = np.linalg.pinv(panda.jacobe(panda.q)) @ v
|
|
264
263
|
env.step(dt)
|
|
265
264
|
|
|
@@ -4,7 +4,7 @@ name = "roboticstoolbox-python"
|
|
|
4
4
|
|
|
5
5
|
description = "A Python library for robotics education and research"
|
|
6
6
|
|
|
7
|
-
version = "1.
|
|
7
|
+
version = "1.1.1"
|
|
8
8
|
|
|
9
9
|
authors = [
|
|
10
10
|
{ name = "Jesse Haviland", email = "j.haviland@qut.edu.au" },
|
|
@@ -13,37 +13,52 @@ authors = [
|
|
|
13
13
|
|
|
14
14
|
dependencies = [
|
|
15
15
|
"numpy>=1.17.4",
|
|
16
|
-
"spatialmath-python
|
|
17
|
-
"spatialgeometry
|
|
16
|
+
"spatialmath-python>=1.1.5",
|
|
17
|
+
"spatialgeometry>=1.0.0",
|
|
18
18
|
"pgraph-python",
|
|
19
19
|
"scipy",
|
|
20
20
|
"matplotlib",
|
|
21
21
|
"ansitable",
|
|
22
|
-
"swift-sim
|
|
22
|
+
"swift-sim>=1.0.0",
|
|
23
23
|
"rtb-data",
|
|
24
24
|
"progress",
|
|
25
|
+
"typing_extensions",
|
|
25
26
|
]
|
|
26
27
|
|
|
27
|
-
license = {file = "LICENSE"}
|
|
28
|
+
license = { file = "LICENSE" }
|
|
28
29
|
|
|
29
30
|
readme = "README.md"
|
|
30
31
|
|
|
31
32
|
requires-python = ">=3.7"
|
|
32
33
|
|
|
33
|
-
keywords = [
|
|
34
|
+
keywords = [
|
|
35
|
+
"python",
|
|
36
|
+
"robotics",
|
|
37
|
+
"robotics-toolbox",
|
|
38
|
+
"kinematics",
|
|
39
|
+
"dynamics",
|
|
40
|
+
"motion-planning",
|
|
41
|
+
"trajectory-generation",
|
|
42
|
+
"jacobian",
|
|
43
|
+
"hessian",
|
|
44
|
+
"control",
|
|
45
|
+
"simulation",
|
|
46
|
+
"robot-manipulator",
|
|
47
|
+
"mobile-robot",
|
|
48
|
+
]
|
|
34
49
|
|
|
35
50
|
classifiers = [
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
51
|
+
"Development Status :: 5 - Production/Stable",
|
|
52
|
+
# Indicate who your project is intended for
|
|
53
|
+
"Intended Audience :: Developers",
|
|
54
|
+
# Pick your license as you wish (should match "license" above)
|
|
55
|
+
"License :: OSI Approved :: MIT License",
|
|
56
|
+
# Specify the Python versions you support here.
|
|
57
|
+
"Programming Language :: Python :: 3.7",
|
|
58
|
+
"Programming Language :: Python :: 3.8",
|
|
59
|
+
"Programming Language :: Python :: 3.9",
|
|
60
|
+
"Programming Language :: Python :: 3.10",
|
|
61
|
+
"Programming Language :: Python :: 3.11",
|
|
47
62
|
]
|
|
48
63
|
|
|
49
64
|
|
|
@@ -53,12 +68,9 @@ documentation = "https://petercorke.github.io/robotics-toolbox-python/"
|
|
|
53
68
|
repository = "https://github.com/petercorke/robotics-toolbox-python"
|
|
54
69
|
|
|
55
70
|
|
|
56
|
-
|
|
57
71
|
[project.optional-dependencies]
|
|
58
72
|
|
|
59
|
-
collision = [
|
|
60
|
-
"pybullet"
|
|
61
|
-
]
|
|
73
|
+
collision = ["pybullet"]
|
|
62
74
|
|
|
63
75
|
dev = [
|
|
64
76
|
"black",
|
|
@@ -67,40 +79,35 @@ dev = [
|
|
|
67
79
|
"flake8",
|
|
68
80
|
"pyyaml",
|
|
69
81
|
"sympy",
|
|
82
|
+
"qpsolvers",
|
|
83
|
+
"quadprog",
|
|
84
|
+
"pybullet",
|
|
85
|
+
"bdsim",
|
|
70
86
|
]
|
|
71
87
|
|
|
72
88
|
docs = [
|
|
73
89
|
"sphinx",
|
|
74
90
|
"sphinx_rtd_theme",
|
|
75
|
-
"sphinx-autorun",
|
|
91
|
+
"sphinx-autorun",
|
|
92
|
+
"sphinx_autodoc_typehints",
|
|
93
|
+
"sphinx-favicon",
|
|
76
94
|
]
|
|
77
95
|
|
|
78
96
|
|
|
79
|
-
|
|
80
97
|
[project.scripts]
|
|
81
98
|
|
|
82
99
|
eigdemo = "roboticstoolbox.examples.eigdemo:main"
|
|
83
100
|
tripleangledemo = "roboticstoolbox.examples.tripleangledemo:main"
|
|
84
101
|
twistdemo = "roboticstoolbox.examples.twistdemo:main"
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
# [project.entry-points]
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
102
|
+
rtbtool = "roboticstoolbox.bin.rtbtool:main"
|
|
92
103
|
|
|
93
104
|
|
|
94
105
|
[build-system]
|
|
95
106
|
|
|
96
|
-
requires = [
|
|
97
|
-
"setuptools",
|
|
98
|
-
"oldest-supported-numpy"
|
|
99
|
-
]
|
|
107
|
+
requires = ["setuptools", "oldest-supported-numpy"]
|
|
100
108
|
build-backend = "setuptools.build_meta"
|
|
101
109
|
|
|
102
110
|
|
|
103
|
-
|
|
104
111
|
[tool.setuptools]
|
|
105
112
|
|
|
106
113
|
packages = [
|
|
@@ -108,10 +115,10 @@ packages = [
|
|
|
108
115
|
"roboticstoolbox.backends",
|
|
109
116
|
"roboticstoolbox.backends.PyPlot",
|
|
110
117
|
"roboticstoolbox.backends.swift",
|
|
111
|
-
"roboticstoolbox.backends.VPython",
|
|
112
118
|
"roboticstoolbox.bin",
|
|
113
119
|
"roboticstoolbox.blocks",
|
|
114
120
|
"roboticstoolbox.examples",
|
|
121
|
+
"roboticstoolbox.bin",
|
|
115
122
|
"roboticstoolbox.robot",
|
|
116
123
|
"roboticstoolbox.mobile",
|
|
117
124
|
"roboticstoolbox.models",
|
|
@@ -124,11 +131,12 @@ packages = [
|
|
|
124
131
|
]
|
|
125
132
|
|
|
126
133
|
|
|
127
|
-
|
|
128
134
|
[tool.black]
|
|
129
135
|
|
|
130
136
|
line-length = 88
|
|
131
137
|
target_version = ['py37']
|
|
138
|
+
args = '--experimental-string-processing'
|
|
139
|
+
|
|
132
140
|
include = '\.pyi?$'
|
|
133
141
|
exclude = '''
|
|
134
142
|
|
|
@@ -151,9 +159,9 @@ exclude = '''
|
|
|
151
159
|
'''
|
|
152
160
|
|
|
153
161
|
|
|
154
|
-
|
|
155
162
|
[tool.flake8]
|
|
156
163
|
|
|
164
|
+
ignore = ['F821', 'W503', 'E741']
|
|
157
165
|
max-line-length = 88
|
|
158
166
|
extend-ignore = 'E203'
|
|
159
167
|
|
|
@@ -192,4 +200,5 @@ archs = ["x86_64", "aarch64"]
|
|
|
192
200
|
archs = ["AMD64", "x86"]
|
|
193
201
|
|
|
194
202
|
|
|
195
|
-
|
|
203
|
+
[tool.coverage.run]
|
|
204
|
+
omit = ["roboticstoolbox/examples/*", "test_*.py"]
|
|
@@ -13,6 +13,7 @@ __all__ = [
|
|
|
13
13
|
"backends",
|
|
14
14
|
# robot
|
|
15
15
|
"Robot",
|
|
16
|
+
"Robot2",
|
|
16
17
|
"SerialLink",
|
|
17
18
|
"DHRobot",
|
|
18
19
|
"Link",
|
|
@@ -25,7 +26,6 @@ __all__ = [
|
|
|
25
26
|
"PoELink",
|
|
26
27
|
"PoEPrismatic",
|
|
27
28
|
"PoERevolute",
|
|
28
|
-
"ERobot",
|
|
29
29
|
"ELink",
|
|
30
30
|
"ELink2",
|
|
31
31
|
"Link",
|
|
@@ -40,6 +40,7 @@ __all__ = [
|
|
|
40
40
|
# tools
|
|
41
41
|
"null",
|
|
42
42
|
"angle_axis",
|
|
43
|
+
"angle_axis_python",
|
|
43
44
|
"p_servo",
|
|
44
45
|
"Ticker",
|
|
45
46
|
"quintic",
|
|
@@ -94,3 +95,9 @@ __all__ = [
|
|
|
94
95
|
"EKF",
|
|
95
96
|
"ParticleFilter",
|
|
96
97
|
]
|
|
98
|
+
|
|
99
|
+
try:
|
|
100
|
+
import importlib.metadata
|
|
101
|
+
__version__ = importlib.metadata.version("roboticstoolbox-python")
|
|
102
|
+
except:
|
|
103
|
+
pass
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
"""
|
|
5
5
|
|
|
6
6
|
import numpy as np
|
|
7
|
+
|
|
7
8
|
# import scipy as sp
|
|
8
9
|
from spatialmath import base
|
|
9
10
|
import matplotlib.pyplot as plt
|
|
@@ -11,7 +12,6 @@ import matplotlib.pyplot as plt
|
|
|
11
12
|
|
|
12
13
|
class ShapePlot:
|
|
13
14
|
def __init__(self, shape, wireframe=True, **kwargs):
|
|
14
|
-
|
|
15
15
|
self.shape = shape # reference to the spatialgeom shape
|
|
16
16
|
self.wireframe = wireframe
|
|
17
17
|
self.args = kwargs
|
|
@@ -52,8 +52,7 @@ class ShapePlot:
|
|
|
52
52
|
|
|
53
53
|
|
|
54
54
|
class EllipsePlot:
|
|
55
|
-
def __init__(self, robot, q, etype, opt="trans", centre=[0, 0, 0], scale=1):
|
|
56
|
-
|
|
55
|
+
def __init__(self, robot, q, etype, opt="trans", centre=[0, 0, 0], scale=1.0):
|
|
57
56
|
super(EllipsePlot, self).__init__()
|
|
58
57
|
|
|
59
58
|
try:
|
|
@@ -64,7 +63,7 @@ class EllipsePlot:
|
|
|
64
63
|
except TypeError:
|
|
65
64
|
if centre != "ee":
|
|
66
65
|
raise ValueError(
|
|
67
|
-
"Centre must be a three vector or 'ee'
|
|
66
|
+
"Centre must be a three vector or 'ee' meaningend-effector"
|
|
68
67
|
)
|
|
69
68
|
|
|
70
69
|
self.ell = None
|
|
@@ -90,7 +89,11 @@ class EllipsePlot:
|
|
|
90
89
|
self.make_ellipsoid()
|
|
91
90
|
|
|
92
91
|
if self.ell is not None:
|
|
93
|
-
self.
|
|
92
|
+
self.ell.remove()
|
|
93
|
+
# print(type(self.ell))
|
|
94
|
+
# print(type(self.ax))
|
|
95
|
+
# assert True == False
|
|
96
|
+
# self.ax.collections.remove(self.ell)
|
|
94
97
|
|
|
95
98
|
self.ell = self.ax.plot_wireframe(
|
|
96
99
|
self.x, self.y, self.z, rstride=6, cstride=6, color="#2980b9", alpha=0.2
|
|
@@ -180,29 +183,21 @@ class EllipsePlot:
|
|
|
180
183
|
A = J @ J.T
|
|
181
184
|
elif self.opt == "rot":
|
|
182
185
|
raise ValueError(
|
|
183
|
-
"Can not do rotational ellipse for a 2d robot plot.
|
|
186
|
+
"Can not do rotational ellipse for a 2d robot plot. Set opt='trans'"
|
|
184
187
|
)
|
|
185
188
|
|
|
186
|
-
#
|
|
187
|
-
#
|
|
188
|
-
#
|
|
189
|
-
#
|
|
190
|
-
#
|
|
191
|
-
#
|
|
189
|
+
# velocity ellipsoid is E = A^-1
|
|
190
|
+
# force ellipsoid is E = A
|
|
191
|
+
#
|
|
192
|
+
# rather than compute the inverse we can have base.ellipse() do it for us
|
|
193
|
+
# using the inverted argument. For the velocity ellipse we already have the
|
|
194
|
+
# inverse of E, it is A, so we set inverted=True.
|
|
192
195
|
|
|
193
196
|
if isinstance(self.centre, str) and self.centre == "ee":
|
|
194
197
|
centre = self.robot.fkine(self.q).A[:3, -1]
|
|
195
198
|
else:
|
|
196
199
|
centre = self.centre
|
|
197
200
|
|
|
198
|
-
|
|
199
|
-
# theta = np.linspace(0.0, 2.0 * np.pi, 50)
|
|
200
|
-
# y = np.array([np.cos(theta), np.sin(theta)])
|
|
201
|
-
# RVC2 p 602
|
|
202
|
-
# x = sp.linalg.sqrtm(A) @ y
|
|
203
|
-
|
|
204
|
-
x, y = base.ellipse(A, inverted=True, centre=centre[:2], scale=self.scale)
|
|
201
|
+
x, y = base.ellipse(A, inverted=self.vell, centre=centre[:2], scale=self.scale)
|
|
205
202
|
self.x = x
|
|
206
203
|
self.y = y
|
|
207
|
-
# = x[0,:] * self.scale + centre[0]
|
|
208
|
-
# self.y = x[1,:] * self.scale + centre[1]
|
|
@@ -20,6 +20,7 @@ _pil = None
|
|
|
20
20
|
try:
|
|
21
21
|
import matplotlib
|
|
22
22
|
import matplotlib.pyplot as plt
|
|
23
|
+
|
|
23
24
|
# from mpl_toolkits.mplot3d import Axes3D
|
|
24
25
|
from matplotlib.widgets import Slider
|
|
25
26
|
|
|
@@ -77,10 +78,18 @@ class PyPlot(Connector):
|
|
|
77
78
|
)
|
|
78
79
|
|
|
79
80
|
def __repr__(self):
|
|
80
|
-
s =
|
|
81
|
+
s = ""
|
|
81
82
|
for robot in self.robots:
|
|
82
|
-
s += f"
|
|
83
|
-
|
|
83
|
+
s += f" robot: {robot.name}\n"
|
|
84
|
+
for ellipse in self.ellipses:
|
|
85
|
+
s += f" ellipse: {ellipse}\n"
|
|
86
|
+
for shape in self.shapes:
|
|
87
|
+
s += f" shape: {shape}\n"
|
|
88
|
+
|
|
89
|
+
if s == "":
|
|
90
|
+
return f"PyPlot3D backend, t = {self.sim_time}, empty scene"
|
|
91
|
+
else:
|
|
92
|
+
return f"PyPlot3D backend, t = {self.sim_time}, scene:\n" + s
|
|
84
93
|
|
|
85
94
|
def launch(self, name=None, fig=None, limits=None, **kwargs):
|
|
86
95
|
"""
|
|
@@ -189,7 +198,7 @@ class PyPlot(Connector):
|
|
|
189
198
|
pass
|
|
190
199
|
else: # pragma: no cover
|
|
191
200
|
raise ValueError(
|
|
192
|
-
"Invalid robot.control_type.
|
|
201
|
+
"Invalid robot.control_type. Must be one of 'p', 'v', or 'a'"
|
|
193
202
|
)
|
|
194
203
|
|
|
195
204
|
# plt.ioff()
|
|
@@ -311,7 +320,11 @@ class PyPlot(Connector):
|
|
|
311
320
|
|
|
312
321
|
super().add()
|
|
313
322
|
|
|
314
|
-
if
|
|
323
|
+
if (
|
|
324
|
+
isinstance(ob, rp.DHRobot)
|
|
325
|
+
or isinstance(ob, rp.ERobot)
|
|
326
|
+
or isinstance(ob, rp.Robot)
|
|
327
|
+
):
|
|
315
328
|
self.robots.append(
|
|
316
329
|
RobotPlot(
|
|
317
330
|
ob,
|
|
@@ -345,6 +358,7 @@ class PyPlot(Connector):
|
|
|
345
358
|
plt.show(block=False)
|
|
346
359
|
|
|
347
360
|
self._set_axes_equal()
|
|
361
|
+
|
|
348
362
|
return id
|
|
349
363
|
|
|
350
364
|
def remove(self, id):
|
|
@@ -47,10 +47,16 @@ class PyPlot2(Connector):
|
|
|
47
47
|
)
|
|
48
48
|
|
|
49
49
|
def __repr__(self):
|
|
50
|
-
s =
|
|
50
|
+
s = ""
|
|
51
51
|
for robot in self.robots:
|
|
52
|
-
s += f"
|
|
53
|
-
|
|
52
|
+
s += f" robot: {robot.name}\n"
|
|
53
|
+
for ellipse in self.ellipses:
|
|
54
|
+
s += f" ellipse: {ellipse}\n"
|
|
55
|
+
|
|
56
|
+
if s == "":
|
|
57
|
+
return f"PyPlot2D backend, t = {self.sim_time}, empty scene"
|
|
58
|
+
else:
|
|
59
|
+
return f"PyPlot2D backend, t = {self.sim_time}, scene:\n" + s
|
|
54
60
|
|
|
55
61
|
def launch(self, name=None, limits=None, **kwargs):
|
|
56
62
|
"""
|
|
@@ -62,8 +68,9 @@ class PyPlot2(Connector):
|
|
|
62
68
|
|
|
63
69
|
labels = ["X", "Y"]
|
|
64
70
|
|
|
65
|
-
if name is not None:
|
|
66
|
-
|
|
71
|
+
if name is not None and not _isnotebook():
|
|
72
|
+
# jupyter does weird stuff when figures have the same name
|
|
73
|
+
self.fig = plt.figure()
|
|
67
74
|
else:
|
|
68
75
|
self.fig = plt.figure()
|
|
69
76
|
|
|
@@ -172,7 +179,7 @@ class PyPlot2(Connector):
|
|
|
172
179
|
|
|
173
180
|
super().add()
|
|
174
181
|
|
|
175
|
-
if isinstance(ob, rp.
|
|
182
|
+
if isinstance(ob, rp.Robot2):
|
|
176
183
|
self.robots.append(RobotPlot2(ob, self, readonly, display, eeframe, name))
|
|
177
184
|
self.robots[len(self.robots) - 1].draw()
|
|
178
185
|
|
|
@@ -228,7 +235,7 @@ class PyPlot2(Connector):
|
|
|
228
235
|
else: # pragma: no cover
|
|
229
236
|
# Should be impossible to reach
|
|
230
237
|
raise ValueError(
|
|
231
|
-
"Invalid robot.control_type.
|
|
238
|
+
"Invalid robot.control_type. Must be one of 'p', 'v', or 'a'"
|
|
232
239
|
)
|
|
233
240
|
|
|
234
241
|
def _update_robots(self):
|
|
@@ -22,7 +22,6 @@ class RobotPlot:
|
|
|
22
22
|
name=True,
|
|
23
23
|
options=None,
|
|
24
24
|
):
|
|
25
|
-
|
|
26
25
|
super(RobotPlot, self).__init__()
|
|
27
26
|
|
|
28
27
|
# Readonly - True for this robot is for displaying only
|
|
@@ -129,7 +128,7 @@ class RobotPlot:
|
|
|
129
128
|
|
|
130
129
|
# add new ee coordinate frame
|
|
131
130
|
for link in self.robot.ee_links:
|
|
132
|
-
Te = T[link.number]
|
|
131
|
+
Te = T[link.number] * self.robot.tool
|
|
133
132
|
|
|
134
133
|
# ee axes arrows
|
|
135
134
|
Tex = Te * Tjx
|
|
@@ -156,11 +155,15 @@ class RobotPlot:
|
|
|
156
155
|
if self.jointaxes:
|
|
157
156
|
# Plot joint z coordinates
|
|
158
157
|
for link in self.robot:
|
|
159
|
-
|
|
160
158
|
direction = None
|
|
161
159
|
if isinstance(self.robot, rp.DHRobot):
|
|
162
160
|
# should test MDH I think
|
|
163
|
-
|
|
161
|
+
|
|
162
|
+
if self.robot.mdh:
|
|
163
|
+
Tj = T[link.number]
|
|
164
|
+
else:
|
|
165
|
+
Tj = T[link.number - 1]
|
|
166
|
+
|
|
164
167
|
R = Tj.R
|
|
165
168
|
direction = R[:, 2] # z direction
|
|
166
169
|
elif link.isjoint:
|
|
@@ -178,7 +181,6 @@ class RobotPlot:
|
|
|
178
181
|
self.joints.extend(arrow)
|
|
179
182
|
|
|
180
183
|
def init(self):
|
|
181
|
-
|
|
182
184
|
self.drawn = True
|
|
183
185
|
|
|
184
186
|
if self.env.limits is None:
|
|
@@ -203,7 +205,6 @@ class RobotPlot:
|
|
|
203
205
|
self.links = []
|
|
204
206
|
self.sh_links = []
|
|
205
207
|
for i in range(len(self.segments)):
|
|
206
|
-
|
|
207
208
|
# Plot the shadow of the robot links, draw first so robot is always
|
|
208
209
|
# in front
|
|
209
210
|
if self.shadow:
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import matplotlib.pyplot as plt
|
|
2
|
+
import spatialgeometry
|
|
3
|
+
from roboticstoolbox.backends.PyPlot import PyPlot
|
|
4
|
+
from spatialmath import SE3
|
|
5
|
+
|
|
6
|
+
env = PyPlot()
|
|
7
|
+
env.launch()
|
|
8
|
+
|
|
9
|
+
# box = spatialgeometry.Box(sides=[0.02,]*3)
|
|
10
|
+
# print(box)
|
|
11
|
+
# env.add(box)
|
|
12
|
+
|
|
13
|
+
# for i in range(1000):
|
|
14
|
+
# box.base = SE3(i / 1000, i / 1000, i / 500) * SE3.Rx(6 * i / 500)
|
|
15
|
+
# env.step()
|
|
16
|
+
|
|
17
|
+
sph = spatialgeometry.Sphere(radius=0.05)
|
|
18
|
+
print(sph)
|
|
19
|
+
env.add(sph)
|
|
20
|
+
|
|
21
|
+
for i in range(1000):
|
|
22
|
+
sph.base = SE3(i / 1000, i / 1000, i / 500) * SE3.Rx(6 * i / 500)
|
|
23
|
+
env.step()
|
|
24
|
+
|
|
25
|
+
# env.hold()
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
# from mpl_toolkits.mplot3d import Axes3D
|
|
29
|
+
# import matplotlib.pyplot as plt
|
|
30
|
+
# import numpy as np
|
|
31
|
+
# from itertools import product, combinations
|
|
32
|
+
# from numpy import sin, cos
|
|
33
|
+
# from matplotlib.patches import Rectangle, Circle, PathPatch
|
|
34
|
+
# import mpl_toolkits.mplot3d.art3d as art3d
|
|
35
|
+
# from mpl_toolkits.mplot3d.art3d import Poly3DCollection
|
|
36
|
+
# from spatialmath.base import *
|
|
37
|
+
# fig = plt.figure()
|
|
38
|
+
# ax = fig.gca(projection='3d')
|
|
39
|
+
# ax.set_aspect("auto")
|
|
40
|
+
# ax.set_autoscale_on(True)
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
# plot_box3d(sides=[0.2, 0.3, 0.4], wireframe=True, linewidth=1, color='r')
|
|
44
|
+
# # plot_box3d(sides=[0.2, 0.3, 0.4], wireframe=False, facecolors='none', linewidths=1, edgecolors='r', alpha=.25)
|
|
45
|
+
|
|
46
|
+
# plt.show(block=True)
|
|
File without changes
|