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.
Files changed (618) hide show
  1. {roboticstoolbox-python-1.0.3/roboticstoolbox_python.egg-info → roboticstoolbox_python-1.1.1}/PKG-INFO +35 -9
  2. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/README.md +6 -7
  3. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/pyproject.toml +48 -39
  4. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/__init__.py +8 -1
  5. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/backends/PyPlot/EllipsePlot.py +16 -21
  6. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/backends/PyPlot/PyPlot.py +19 -5
  7. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/backends/PyPlot/PyPlot2.py +14 -7
  8. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/backends/PyPlot/RobotPlot.py +7 -6
  9. roboticstoolbox_python-1.1.1/roboticstoolbox/backends/PyPlot/test1.py +46 -0
  10. roboticstoolbox_python-1.1.1/roboticstoolbox/backends/PyPlot/test2.py +10 -0
  11. roboticstoolbox_python-1.1.1/roboticstoolbox/bin/__init__.py +0 -0
  12. roboticstoolbox_python-1.1.1/roboticstoolbox/bin/rtbtool.py +278 -0
  13. roboticstoolbox_python-1.1.1/roboticstoolbox/blocks/__init__.py +6 -0
  14. roboticstoolbox_python-1.1.1/roboticstoolbox/blocks/arm.py +1572 -0
  15. roboticstoolbox_python-1.1.1/roboticstoolbox/blocks/mobile.py +478 -0
  16. roboticstoolbox_python-1.1.1/roboticstoolbox/blocks/quad_model.py +132 -0
  17. roboticstoolbox_python-1.1.1/roboticstoolbox/blocks/spatial.py +247 -0
  18. roboticstoolbox_python-1.1.1/roboticstoolbox/blocks/test.py +156 -0
  19. roboticstoolbox_python-1.1.1/roboticstoolbox/blocks/uav.py +945 -0
  20. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/fknm.cpp +100 -237
  21. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/fknm.h +8 -5
  22. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/ik.cpp +8 -5
  23. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/methods.cpp +62 -0
  24. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/structs.h +2 -1
  25. roboticstoolbox_python-1.1.1/roboticstoolbox/examples/__init__.py +0 -0
  26. roboticstoolbox_python-1.1.1/roboticstoolbox/examples/armer.py +80 -0
  27. roboticstoolbox_python-1.1.1/roboticstoolbox/examples/aside.py +142 -0
  28. roboticstoolbox_python-1.1.1/roboticstoolbox/examples/colors.py +29 -0
  29. roboticstoolbox_python-1.1.1/roboticstoolbox/examples/eg2.py +3 -0
  30. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/eigdemo.py +18 -9
  31. roboticstoolbox_python-1.1.1/roboticstoolbox/examples/erobot-test.py +10 -0
  32. roboticstoolbox_python-1.1.1/roboticstoolbox/examples/poly_example.py +95 -0
  33. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/puma_fdyn.py +4 -3
  34. roboticstoolbox_python-1.1.1/roboticstoolbox/examples/test.py +25 -0
  35. roboticstoolbox_python-1.1.1/roboticstoolbox/examples/test1.py +6 -0
  36. roboticstoolbox_python-1.1.1/roboticstoolbox/examples/test_et.py +72 -0
  37. roboticstoolbox_python-1.1.1/roboticstoolbox/examples/timing.py +62 -0
  38. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/Animations.py +11 -7
  39. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/Bug2.py +44 -33
  40. roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/CurvaturePolyPlanner.py-new.py +166 -0
  41. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/DistanceTransformPlanner.py +7 -6
  42. roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/DstarPlanner-nearly.py +515 -0
  43. roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/DstarPlanner-old.py +403 -0
  44. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/DstarPlanner.py +86 -48
  45. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/DubinsPlanner.py +9 -0
  46. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/EKF.py +302 -170
  47. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/LatticePlanner.py +58 -48
  48. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/OccGrid.py +18 -13
  49. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/PRMPlanner.py +44 -26
  50. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/ParticleFilter.py +265 -78
  51. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/PlannerBase.py +21 -17
  52. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/PoseGraph.py +212 -228
  53. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/QuinticPolyPlanner.py +87 -32
  54. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/RRTPlanner.py +32 -17
  55. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/ReedsSheppPlanner.py +98 -37
  56. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/Vehicle.py +369 -198
  57. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/__init__.py +11 -2
  58. roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/bug.py +331 -0
  59. roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/distancexform.py +0 -0
  60. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/drivers.py +54 -39
  61. roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/dubins_path_planning.py +402 -0
  62. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/landmarkmap.py +21 -22
  63. roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/new.py +19 -0
  64. roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/plot_vehicle.py +51 -0
  65. roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/probabilistic_road_map.py +298 -0
  66. roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/qtiming.py +103 -0
  67. roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/reedsshepp-old.py +301 -0
  68. roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/rrt.py +278 -0
  69. roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/rrt_dubins.py +256 -0
  70. roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/rrt_star.py +293 -0
  71. roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/rrt_with_pathsmoothing.py +150 -0
  72. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/sensors.py +76 -60
  73. roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/state_lattice_planner.py +348 -0
  74. roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/test2.py +32 -0
  75. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Sawyer.py +3 -3
  76. roboticstoolbox_python-1.1.1/roboticstoolbox/models/DH/arte_parse.py +209 -0
  77. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/ETS/Frankie.py +2 -2
  78. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/ETS/GenericSeven.py +2 -2
  79. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/ETS/Omni.py +2 -2
  80. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/ETS/Panda.py +2 -2
  81. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/ETS/Planar2.py +4 -4
  82. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/ETS/Planar_Y.py +2 -2
  83. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/ETS/Puma560.py +2 -2
  84. roboticstoolbox_python-1.1.1/roboticstoolbox/models/ETS/Puma560dh.py +96 -0
  85. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/ETS/XYPanda.py +2 -2
  86. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/AL5D.py +4 -2
  87. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/Fetch.py +3 -2
  88. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/FetchCamera.py +3 -2
  89. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/Frankie.py +2 -2
  90. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/FrankieOmni.py +2 -2
  91. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/KinovaGen3.py +2 -2
  92. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/LBR.py +2 -2
  93. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/Mico.py +2 -2
  94. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/PR2.py +4 -2
  95. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/Panda.py +2 -2
  96. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/Puma560.py +4 -2
  97. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/UR10.py +2 -2
  98. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/UR3.py +2 -2
  99. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/UR5.py +2 -2
  100. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/Valkyrie.py +2 -2
  101. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/YuMi.py +2 -2
  102. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/px100.py +3 -3
  103. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/px150.py +3 -3
  104. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/rx150.py +3 -3
  105. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/rx200.py +3 -3
  106. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/vx300.py +3 -3
  107. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/vx300s.py +3 -3
  108. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/wx200.py +3 -3
  109. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/wx250.py +3 -3
  110. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/wx250s.py +3 -3
  111. roboticstoolbox_python-1.1.1/roboticstoolbox/robot/BaseRobot.py +3090 -0
  112. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/robot/DHFactor.py +97 -87
  113. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/robot/DHLink.py +12 -13
  114. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/robot/DHRobot.py +67 -25
  115. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/robot/Dynamics.py +657 -667
  116. roboticstoolbox_python-1.1.1/roboticstoolbox/robot/ERobot.py +25 -0
  117. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/robot/ET.py +394 -191
  118. roboticstoolbox_python-1.1.1/roboticstoolbox/robot/ETS.py +3489 -0
  119. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/robot/Gripper.py +134 -42
  120. roboticstoolbox_python-1.1.1/roboticstoolbox/robot/IK.py +1521 -0
  121. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/robot/Link.py +653 -474
  122. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/robot/PoERobot.py +10 -33
  123. roboticstoolbox_python-1.1.1/roboticstoolbox/robot/Robot.py +2010 -0
  124. roboticstoolbox_python-1.1.1/roboticstoolbox/robot/RobotKinematics.py +1696 -0
  125. roboticstoolbox_python-1.1.1/roboticstoolbox/robot/RobotProto.py +113 -0
  126. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/robot/__init__.py +12 -12
  127. roboticstoolbox_python-1.1.1/roboticstoolbox/robot/symsimp.py +154 -0
  128. roboticstoolbox_python-1.1.1/roboticstoolbox/robot/symsimp2.py +78 -0
  129. roboticstoolbox_python-1.1.1/roboticstoolbox/robot/test-plot.py +7 -0
  130. roboticstoolbox_python-1.1.1/roboticstoolbox/robot/test_fkine.py +13 -0
  131. roboticstoolbox_python-1.1.1/roboticstoolbox/robot/test_invdyn.py +108 -0
  132. roboticstoolbox_python-1.1.1/roboticstoolbox/robot/timing_dynamics.py +64 -0
  133. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/__init__.py +6 -1
  134. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/data.py +1 -1
  135. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/p_servo.py +11 -0
  136. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/plot.py +2 -1
  137. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/trajectory.py +288 -161
  138. roboticstoolbox_python-1.1.1/roboticstoolbox/tools/types.py +13 -0
  139. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1/roboticstoolbox_python.egg-info}/PKG-INFO +35 -9
  140. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox_python.egg-info/SOURCES.txt +72 -15
  141. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox_python.egg-info/entry_points.txt +1 -0
  142. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox_python.egg-info/requires.txt +10 -3
  143. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/setup.py +0 -3
  144. roboticstoolbox_python-1.1.1/tests/test_BaseRobot.py +631 -0
  145. roboticstoolbox_python-1.1.1/tests/test_CustomXacro.py +67 -0
  146. roboticstoolbox_python-1.1.1/tests/test_DHRobot.py +1513 -0
  147. roboticstoolbox_python-1.1.1/tests/test_ELink.py +353 -0
  148. roboticstoolbox_python-1.1.1/tests/test_ERobot.py +223 -0
  149. roboticstoolbox_python-1.1.1/tests/test_ET.py +359 -0
  150. roboticstoolbox_python-1.1.1/tests/test_ETS.py +4371 -0
  151. roboticstoolbox_python-1.1.1/tests/test_ETS2.py +466 -0
  152. roboticstoolbox_python-1.1.1/tests/test_Gripper.py +115 -0
  153. roboticstoolbox_python-1.1.1/tests/test_IK.py +846 -0
  154. roboticstoolbox_python-1.1.1/tests/test_Link.py +208 -0
  155. roboticstoolbox_python-1.1.1/tests/test_PyPlot.py +50 -0
  156. roboticstoolbox_python-1.1.1/tests/test_PyPlot2.py +45 -0
  157. roboticstoolbox_python-1.1.1/tests/test_Robot.py +1460 -0
  158. roboticstoolbox_python-1.1.1/tests/test_Ticker.py +21 -0
  159. roboticstoolbox_python-1.1.1/tests/test_VPython.py +943 -0
  160. roboticstoolbox_python-1.1.1/tests/test_blocks.py +417 -0
  161. roboticstoolbox_python-1.1.1/tests/test_fknm.py +84 -0
  162. roboticstoolbox_python-1.1.1/tests/test_jacob.py +364 -0
  163. roboticstoolbox_python-1.1.1/tests/test_mobile.py +576 -0
  164. roboticstoolbox_python-1.1.1/tests/test_mobile_planner.py +177 -0
  165. roboticstoolbox_python-1.1.1/tests/test_models.py +146 -0
  166. roboticstoolbox_python-1.1.1/tests/test_tools.py +104 -0
  167. roboticstoolbox_python-1.1.1/tests/test_trajectory.py +612 -0
  168. roboticstoolbox-python-1.0.3/roboticstoolbox/backends/VPython/VPython.py +0 -527
  169. roboticstoolbox-python-1.0.3/roboticstoolbox/backends/VPython/__init__.py +0 -5
  170. roboticstoolbox-python-1.0.3/roboticstoolbox/backends/VPython/canvas.py +0 -1553
  171. roboticstoolbox-python-1.0.3/roboticstoolbox/backends/VPython/common_functions.py +0 -142
  172. roboticstoolbox-python-1.0.3/roboticstoolbox/backends/VPython/graphicalrobot.py +0 -823
  173. roboticstoolbox-python-1.0.3/roboticstoolbox/backends/VPython/grid.py +0 -624
  174. roboticstoolbox-python-1.0.3/roboticstoolbox/backends/VPython/object2d.py +0 -247
  175. roboticstoolbox-python-1.0.3/roboticstoolbox/backends/VPython/stl.py +0 -130
  176. roboticstoolbox-python-1.0.3/roboticstoolbox/backends/VPython/text.py +0 -347
  177. roboticstoolbox-python-1.0.3/roboticstoolbox/backends/__init__.py +0 -10
  178. roboticstoolbox-python-1.0.3/roboticstoolbox/bin/rtbtool +0 -224
  179. roboticstoolbox-python-1.0.3/roboticstoolbox/blocks/__init__.py +0 -5
  180. roboticstoolbox-python-1.0.3/roboticstoolbox/blocks/arm.py +0 -1593
  181. roboticstoolbox-python-1.0.3/roboticstoolbox/blocks/mobile.py +0 -416
  182. roboticstoolbox-python-1.0.3/roboticstoolbox/blocks/uav.py +0 -830
  183. roboticstoolbox-python-1.0.3/roboticstoolbox/examples/test.py +0 -15
  184. roboticstoolbox-python-1.0.3/roboticstoolbox/robot/ERobot.py +0 -2866
  185. roboticstoolbox-python-1.0.3/roboticstoolbox/robot/ETS.py +0 -2650
  186. roboticstoolbox-python-1.0.3/roboticstoolbox/robot/ETSRobot.py +0 -13
  187. roboticstoolbox-python-1.0.3/roboticstoolbox/robot/IK.py +0 -959
  188. roboticstoolbox-python-1.0.3/roboticstoolbox/robot/KinematicCache.py +0 -459
  189. roboticstoolbox-python-1.0.3/roboticstoolbox/robot/Robot.py +0 -2220
  190. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/LICENSE +0 -0
  191. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/backends/Connector.py +0 -0
  192. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/backends/PyPlot/RobotPlot2.py +0 -0
  193. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/backends/PyPlot/__init__.py +0 -0
  194. {roboticstoolbox-python-1.0.3/roboticstoolbox/examples → roboticstoolbox_python-1.1.1/roboticstoolbox/backends}/__init__.py +0 -0
  195. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/backends/swift/__init__.py +0 -0
  196. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/Cholesky +0 -0
  197. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/CholmodSupport +0 -0
  198. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/Core +0 -0
  199. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/Dense +0 -0
  200. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/Eigen +0 -0
  201. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/Eigenvalues +0 -0
  202. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/Geometry +0 -0
  203. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/Householder +0 -0
  204. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/IterativeLinearSolvers +0 -0
  205. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/Jacobi +0 -0
  206. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/KLUSupport +0 -0
  207. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/LU +0 -0
  208. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/MetisSupport +0 -0
  209. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/OrderingMethods +0 -0
  210. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/PaStiXSupport +0 -0
  211. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/PardisoSupport +0 -0
  212. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/QR +0 -0
  213. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/QtAlignedMalloc +0 -0
  214. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/SPQRSupport +0 -0
  215. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/SVD +0 -0
  216. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/Sparse +0 -0
  217. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/SparseCholesky +0 -0
  218. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/SparseCore +0 -0
  219. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/SparseLU +0 -0
  220. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/SparseQR +0 -0
  221. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/StdDeque +0 -0
  222. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/StdList +0 -0
  223. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/StdVector +0 -0
  224. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/SuperLUSupport +0 -0
  225. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/UmfPackSupport +0 -0
  226. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Cholesky/LDLT.h +0 -0
  227. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Cholesky/LLT.h +0 -0
  228. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Cholesky/LLT_LAPACKE.h +0 -0
  229. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/CholmodSupport/CholmodSupport.h +0 -0
  230. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/ArithmeticSequence.h +0 -0
  231. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Array.h +0 -0
  232. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/ArrayBase.h +0 -0
  233. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/ArrayWrapper.h +0 -0
  234. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Assign.h +0 -0
  235. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/AssignEvaluator.h +0 -0
  236. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Assign_MKL.h +0 -0
  237. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/BandMatrix.h +0 -0
  238. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Block.h +0 -0
  239. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/BooleanRedux.h +0 -0
  240. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/CommaInitializer.h +0 -0
  241. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/ConditionEstimator.h +0 -0
  242. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/CoreEvaluators.h +0 -0
  243. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/CoreIterators.h +0 -0
  244. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/CwiseBinaryOp.h +0 -0
  245. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/CwiseNullaryOp.h +0 -0
  246. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/CwiseTernaryOp.h +0 -0
  247. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/CwiseUnaryOp.h +0 -0
  248. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/CwiseUnaryView.h +0 -0
  249. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/DenseBase.h +0 -0
  250. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/DenseCoeffsBase.h +0 -0
  251. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/DenseStorage.h +0 -0
  252. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Diagonal.h +0 -0
  253. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/DiagonalMatrix.h +0 -0
  254. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/DiagonalProduct.h +0 -0
  255. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Dot.h +0 -0
  256. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/EigenBase.h +0 -0
  257. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/ForceAlignedAccess.h +0 -0
  258. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Fuzzy.h +0 -0
  259. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/GeneralProduct.h +0 -0
  260. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/GenericPacketMath.h +0 -0
  261. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/GlobalFunctions.h +0 -0
  262. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/IO.h +0 -0
  263. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/IndexedView.h +0 -0
  264. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Inverse.h +0 -0
  265. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Map.h +0 -0
  266. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/MapBase.h +0 -0
  267. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/MathFunctions.h +0 -0
  268. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/MathFunctionsImpl.h +0 -0
  269. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Matrix.h +0 -0
  270. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/MatrixBase.h +0 -0
  271. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/NestByValue.h +0 -0
  272. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/NoAlias.h +0 -0
  273. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/NumTraits.h +0 -0
  274. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/PartialReduxEvaluator.h +0 -0
  275. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/PermutationMatrix.h +0 -0
  276. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/PlainObjectBase.h +0 -0
  277. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Product.h +0 -0
  278. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/ProductEvaluators.h +0 -0
  279. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Random.h +0 -0
  280. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Redux.h +0 -0
  281. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Ref.h +0 -0
  282. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Replicate.h +0 -0
  283. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Reshaped.h +0 -0
  284. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/ReturnByValue.h +0 -0
  285. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Reverse.h +0 -0
  286. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Select.h +0 -0
  287. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/SelfAdjointView.h +0 -0
  288. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/SelfCwiseBinaryOp.h +0 -0
  289. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Solve.h +0 -0
  290. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/SolveTriangular.h +0 -0
  291. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/SolverBase.h +0 -0
  292. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/StableNorm.h +0 -0
  293. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/StlIterators.h +0 -0
  294. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Stride.h +0 -0
  295. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Swap.h +0 -0
  296. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Transpose.h +0 -0
  297. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Transpositions.h +0 -0
  298. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/TriangularMatrix.h +0 -0
  299. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/VectorBlock.h +0 -0
  300. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/VectorwiseOp.h +0 -0
  301. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Visitor.h +0 -0
  302. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/AVX/Complex.h +0 -0
  303. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/AVX/MathFunctions.h +0 -0
  304. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/AVX/PacketMath.h +0 -0
  305. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/AVX/TypeCasting.h +0 -0
  306. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/AVX512/Complex.h +0 -0
  307. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/AVX512/MathFunctions.h +0 -0
  308. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/AVX512/PacketMath.h +0 -0
  309. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/AVX512/TypeCasting.h +0 -0
  310. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/AltiVec/Complex.h +0 -0
  311. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/AltiVec/MathFunctions.h +0 -0
  312. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/AltiVec/MatrixProduct.h +0 -0
  313. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/AltiVec/MatrixProductCommon.h +0 -0
  314. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/AltiVec/MatrixProductMMA.h +0 -0
  315. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/AltiVec/PacketMath.h +0 -0
  316. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/CUDA/Complex.h +0 -0
  317. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/Default/BFloat16.h +0 -0
  318. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/Default/ConjHelper.h +0 -0
  319. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/Default/GenericPacketMathFunctions.h +0 -0
  320. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/Default/GenericPacketMathFunctionsFwd.h +0 -0
  321. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/Default/Half.h +0 -0
  322. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/Default/Settings.h +0 -0
  323. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/Default/TypeCasting.h +0 -0
  324. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/GPU/MathFunctions.h +0 -0
  325. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/GPU/PacketMath.h +0 -0
  326. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/GPU/TypeCasting.h +0 -0
  327. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/HIP/hcc/math_constants.h +0 -0
  328. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/MSA/Complex.h +0 -0
  329. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/MSA/MathFunctions.h +0 -0
  330. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/MSA/PacketMath.h +0 -0
  331. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/NEON/Complex.h +0 -0
  332. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/NEON/GeneralBlockPanelKernel.h +0 -0
  333. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/NEON/MathFunctions.h +0 -0
  334. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/NEON/PacketMath.h +0 -0
  335. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/NEON/TypeCasting.h +0 -0
  336. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/SSE/Complex.h +0 -0
  337. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/SSE/MathFunctions.h +0 -0
  338. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/SSE/PacketMath.h +0 -0
  339. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/SSE/TypeCasting.h +0 -0
  340. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/SVE/MathFunctions.h +0 -0
  341. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/SVE/PacketMath.h +0 -0
  342. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/SVE/TypeCasting.h +0 -0
  343. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/SYCL/InteropHeaders.h +0 -0
  344. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/SYCL/MathFunctions.h +0 -0
  345. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/SYCL/PacketMath.h +0 -0
  346. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/SYCL/SyclMemoryModel.h +0 -0
  347. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/SYCL/TypeCasting.h +0 -0
  348. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/ZVector/Complex.h +0 -0
  349. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/ZVector/MathFunctions.h +0 -0
  350. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/ZVector/PacketMath.h +0 -0
  351. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/functors/AssignmentFunctors.h +0 -0
  352. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/functors/BinaryFunctors.h +0 -0
  353. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/functors/NullaryFunctors.h +0 -0
  354. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/functors/StlFunctors.h +0 -0
  355. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/functors/TernaryFunctors.h +0 -0
  356. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/functors/UnaryFunctors.h +0 -0
  357. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/GeneralBlockPanelKernel.h +0 -0
  358. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/GeneralMatrixMatrix.h +0 -0
  359. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h +0 -0
  360. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h +0 -0
  361. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h +0 -0
  362. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/GeneralMatrixVector.h +0 -0
  363. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h +0 -0
  364. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/Parallelizer.h +0 -0
  365. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/SelfadjointMatrixMatrix.h +0 -0
  366. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h +0 -0
  367. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/SelfadjointMatrixVector.h +0 -0
  368. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h +0 -0
  369. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/SelfadjointProduct.h +0 -0
  370. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/SelfadjointRank2Update.h +0 -0
  371. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/TriangularMatrixMatrix.h +0 -0
  372. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h +0 -0
  373. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/TriangularMatrixVector.h +0 -0
  374. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h +0 -0
  375. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/TriangularSolverMatrix.h +0 -0
  376. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h +0 -0
  377. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/TriangularSolverVector.h +0 -0
  378. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/BlasUtil.h +0 -0
  379. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/ConfigureVectorization.h +0 -0
  380. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/Constants.h +0 -0
  381. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/DisableStupidWarnings.h +0 -0
  382. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/ForwardDeclarations.h +0 -0
  383. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/IndexedViewHelper.h +0 -0
  384. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/IntegralConstant.h +0 -0
  385. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/MKL_support.h +0 -0
  386. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/Macros.h +0 -0
  387. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/Memory.h +0 -0
  388. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/Meta.h +0 -0
  389. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/NonMPL2.h +0 -0
  390. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/ReenableStupidWarnings.h +0 -0
  391. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/ReshapedHelper.h +0 -0
  392. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/StaticAssert.h +0 -0
  393. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/SymbolicIndex.h +0 -0
  394. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/XprHelper.h +0 -0
  395. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Eigenvalues/ComplexEigenSolver.h +0 -0
  396. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Eigenvalues/ComplexSchur.h +0 -0
  397. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h +0 -0
  398. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Eigenvalues/EigenSolver.h +0 -0
  399. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h +0 -0
  400. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h +0 -0
  401. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Eigenvalues/HessenbergDecomposition.h +0 -0
  402. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h +0 -0
  403. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Eigenvalues/RealQZ.h +0 -0
  404. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Eigenvalues/RealSchur.h +0 -0
  405. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h +0 -0
  406. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h +0 -0
  407. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h +0 -0
  408. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Eigenvalues/Tridiagonalization.h +0 -0
  409. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Geometry/AlignedBox.h +0 -0
  410. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Geometry/AngleAxis.h +0 -0
  411. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Geometry/EulerAngles.h +0 -0
  412. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Geometry/Homogeneous.h +0 -0
  413. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Geometry/Hyperplane.h +0 -0
  414. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Geometry/OrthoMethods.h +0 -0
  415. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Geometry/ParametrizedLine.h +0 -0
  416. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Geometry/Quaternion.h +0 -0
  417. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Geometry/Rotation2D.h +0 -0
  418. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Geometry/RotationBase.h +0 -0
  419. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Geometry/Scaling.h +0 -0
  420. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Geometry/Transform.h +0 -0
  421. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Geometry/Translation.h +0 -0
  422. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Geometry/Umeyama.h +0 -0
  423. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Geometry/arch/Geometry_SIMD.h +0 -0
  424. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Householder/BlockHouseholder.h +0 -0
  425. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Householder/Householder.h +0 -0
  426. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Householder/HouseholderSequence.h +0 -0
  427. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h +0 -0
  428. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h +0 -0
  429. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h +0 -0
  430. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h +0 -0
  431. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h +0 -0
  432. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h +0 -0
  433. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h +0 -0
  434. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h +0 -0
  435. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Jacobi/Jacobi.h +0 -0
  436. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/KLUSupport/KLUSupport.h +0 -0
  437. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/LU/Determinant.h +0 -0
  438. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/LU/FullPivLU.h +0 -0
  439. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/LU/InverseImpl.h +0 -0
  440. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/LU/PartialPivLU.h +0 -0
  441. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/LU/PartialPivLU_LAPACKE.h +0 -0
  442. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/LU/arch/InverseSize4.h +0 -0
  443. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/MetisSupport/MetisSupport.h +0 -0
  444. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/OrderingMethods/Amd.h +0 -0
  445. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/OrderingMethods/Eigen_Colamd.h +0 -0
  446. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/OrderingMethods/Ordering.h +0 -0
  447. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/PaStiXSupport/PaStiXSupport.h +0 -0
  448. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/PardisoSupport/PardisoSupport.h +0 -0
  449. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/QR/ColPivHouseholderQR.h +0 -0
  450. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h +0 -0
  451. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/QR/CompleteOrthogonalDecomposition.h +0 -0
  452. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/QR/FullPivHouseholderQR.h +0 -0
  453. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/QR/HouseholderQR.h +0 -0
  454. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/QR/HouseholderQR_LAPACKE.h +0 -0
  455. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h +0 -0
  456. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SVD/BDCSVD.h +0 -0
  457. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SVD/JacobiSVD.h +0 -0
  458. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SVD/JacobiSVD_LAPACKE.h +0 -0
  459. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SVD/SVDBase.h +0 -0
  460. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SVD/UpperBidiagonalization.h +0 -0
  461. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCholesky/SimplicialCholesky.h +0 -0
  462. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h +0 -0
  463. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/AmbiVector.h +0 -0
  464. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/CompressedStorage.h +0 -0
  465. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h +0 -0
  466. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/MappedSparseMatrix.h +0 -0
  467. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseAssign.h +0 -0
  468. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseBlock.h +0 -0
  469. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseColEtree.h +0 -0
  470. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseCompressedBase.h +0 -0
  471. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseCwiseBinaryOp.h +0 -0
  472. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseCwiseUnaryOp.h +0 -0
  473. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseDenseProduct.h +0 -0
  474. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseDiagonalProduct.h +0 -0
  475. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseDot.h +0 -0
  476. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseFuzzy.h +0 -0
  477. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseMap.h +0 -0
  478. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseMatrix.h +0 -0
  479. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseMatrixBase.h +0 -0
  480. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparsePermutation.h +0 -0
  481. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseProduct.h +0 -0
  482. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseRedux.h +0 -0
  483. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseRef.h +0 -0
  484. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseSelfAdjointView.h +0 -0
  485. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseSolverBase.h +0 -0
  486. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseSparseProductWithPruning.h +0 -0
  487. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseTranspose.h +0 -0
  488. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseTriangularView.h +0 -0
  489. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseUtil.h +0 -0
  490. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseVector.h +0 -0
  491. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseView.h +0 -0
  492. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/TriangularSolver.h +0 -0
  493. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU.h +0 -0
  494. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLUImpl.h +0 -0
  495. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU_Memory.h +0 -0
  496. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU_Structs.h +0 -0
  497. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h +0 -0
  498. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU_Utils.h +0 -0
  499. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU_column_bmod.h +0 -0
  500. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU_column_dfs.h +0 -0
  501. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h +0 -0
  502. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU_gemm_kernel.h +0 -0
  503. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h +0 -0
  504. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU_kernel_bmod.h +0 -0
  505. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU_panel_bmod.h +0 -0
  506. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU_panel_dfs.h +0 -0
  507. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU_pivotL.h +0 -0
  508. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU_pruneL.h +0 -0
  509. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU_relax_snode.h +0 -0
  510. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseQR/SparseQR.h +0 -0
  511. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/StlSupport/StdDeque.h +0 -0
  512. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/StlSupport/StdList.h +0 -0
  513. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/StlSupport/StdVector.h +0 -0
  514. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/StlSupport/details.h +0 -0
  515. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SuperLUSupport/SuperLUSupport.h +0 -0
  516. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/UmfPackSupport/UmfPackSupport.h +0 -0
  517. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/misc/Image.h +0 -0
  518. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/misc/Kernel.h +0 -0
  519. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/misc/RealSvd2x2.h +0 -0
  520. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/misc/blas.h +0 -0
  521. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/misc/lapack.h +0 -0
  522. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/misc/lapacke.h +0 -0
  523. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/misc/lapacke_mangling.h +0 -0
  524. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/plugins/ArrayCwiseBinaryOps.h +0 -0
  525. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/plugins/ArrayCwiseUnaryOps.h +0 -0
  526. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/plugins/BlockMethods.h +0 -0
  527. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/plugins/CommonCwiseBinaryOps.h +0 -0
  528. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/plugins/CommonCwiseUnaryOps.h +0 -0
  529. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/plugins/IndexedViewMethods.h +0 -0
  530. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/plugins/MatrixCwiseBinaryOps.h +0 -0
  531. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/plugins/MatrixCwiseUnaryOps.h +0 -0
  532. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/plugins/ReshapedMethods.h +0 -0
  533. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/frne.c +0 -0
  534. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/frne.h +0 -0
  535. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/ik.h +0 -0
  536. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/linalg.cpp +0 -0
  537. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/linalg.h +0 -0
  538. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/methods.h +0 -0
  539. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/ne.c +0 -0
  540. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/structs.cpp +0 -0
  541. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/vmath.c +0 -0
  542. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/vmath.h +0 -0
  543. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/RRMC.py +0 -0
  544. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/RRMC_swift.py +0 -0
  545. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/baur.py +0 -0
  546. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/branched_robot.py +0 -0
  547. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/fetch_vision.py +0 -0
  548. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/holistic_mm_non_holonomic.py +0 -0
  549. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/holistic_mm_omni.py +0 -0
  550. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/icra2021.py +0 -0
  551. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/ik_exp.py +0 -0
  552. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/ik_speed.py +0 -0
  553. {roboticstoolbox-python-1.0.3/roboticstoolbox/robot → roboticstoolbox_python-1.1.1/roboticstoolbox/examples}/ikine_evaluate.py +0 -0
  554. {roboticstoolbox-python-1.0.3/roboticstoolbox/robot → roboticstoolbox_python-1.1.1/roboticstoolbox/examples}/ikine_evaluate2.py +0 -0
  555. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/mexican-wave.py +0 -0
  556. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/mmc.py +0 -0
  557. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/mobile.py +0 -0
  558. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/neo.py +0 -0
  559. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/park.py +0 -0
  560. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/plot.py +0 -0
  561. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/plot_swift.py +0 -0
  562. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/puma_jtraj.py +0 -0
  563. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/puma_swift.py +0 -0
  564. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/readme.py +0 -0
  565. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/robots.py +0 -0
  566. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/swift_recording.py +0 -0
  567. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/teach.py +0 -0
  568. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/teach_swift.py +0 -0
  569. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/tripleangledemo.py +0 -0
  570. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/twistdemo.py +0 -0
  571. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/vehicle1.py +0 -0
  572. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/CurvaturePolyPlanner.py +0 -0
  573. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/AL5D.py +0 -0
  574. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Ball.py +0 -0
  575. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Baxter.py +0 -0
  576. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Cobra600.py +0 -0
  577. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Coil.py +0 -0
  578. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Hyper.py +0 -0
  579. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Hyper3d.py +0 -0
  580. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/IRB140.py +0 -0
  581. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Jaco.py +0 -0
  582. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/KR5.py +0 -0
  583. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/LWR4.py +0 -0
  584. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Mico.py +0 -0
  585. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Orion5.py +0 -0
  586. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/P8.py +0 -0
  587. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Panda.py +0 -0
  588. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Planar2.py +0 -0
  589. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Planar3.py +0 -0
  590. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Puma560.py +0 -0
  591. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Stanford.py +0 -0
  592. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/TwoLink.py +0 -0
  593. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/UR10.py +0 -0
  594. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/UR3.py +0 -0
  595. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/UR5.py +0 -0
  596. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Uprighttl.py +0 -0
  597. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/__init__.py +0 -0
  598. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/ETS/__init__.py +0 -0
  599. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/__init__.py +0 -0
  600. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/__init__.py +0 -0
  601. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/list.py +0 -0
  602. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/robot/ELink.py +0 -0
  603. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/DHFactor.py +0 -0
  604. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/Ticker.py +0 -0
  605. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/jsingu.py +0 -0
  606. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/null.py +0 -0
  607. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/numerical.py +0 -0
  608. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/params.py +0 -0
  609. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/urdf/__init__.py +0 -0
  610. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/urdf/urdf.py +0 -0
  611. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/urdf/utils.py +0 -0
  612. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/xacro/__init__.py +0 -0
  613. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/xacro/cli.py +0 -0
  614. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/xacro/color.py +0 -0
  615. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/xacro/xmlutils.py +0 -0
  616. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox_python.egg-info/dependency_links.txt +0 -0
  617. {roboticstoolbox-python-1.0.3 → roboticstoolbox_python-1.1.1}/roboticstoolbox_python.egg-info/top_level.txt +0 -0
  618. {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.0.3
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
- License-File: LICENSE
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
  [![PyPI version](https://badge.fury.io/py/roboticstoolbox-python.svg)](https://badge.fury.io/py/roboticstoolbox-python)
54
81
  [![Anaconda version](https://anaconda.org/conda-forge/roboticstoolbox-python/badges/version.svg)](https://anaconda.org/conda-forge/roboticstoolbox-python)
55
82
  ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/roboticstoolbox-python.svg)
56
- [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
57
83
 
58
- [![Build Status](https://github.com/petercorke/robotics-toolbox-python/workflows/build/badge.svg?branch=master)](https://github.com/petercorke/robotics-toolbox-python/actions?query=workflow%3Abuild)
84
+ [![Build Status](https://github.com/petercorke/robotics-toolbox-python/workflows/Test/badge.svg?branch=master)](https://github.com/petercorke/robotics-toolbox-python/actions?query=workflow%3ATest)
59
85
  [![Coverage](https://codecov.io/gh/petercorke/robotics-toolbox-python/branch/master/graph/badge.svg)](https://codecov.io/gh/petercorke/robotics-toolbox-python)
60
- [![Language grade: Python](https://img.shields.io/lgtm/grade/python/g/petercorke/robotics-toolbox-python.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/petercorke/robotics-toolbox-python/context:python)
61
86
  [![PyPI - Downloads](https://img.shields.io/pypi/dw/roboticstoolbox-python)](https://pypistats.org/packages/roboticstoolbox-python)
87
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](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.ik_lm_chan(Tep) # solve IK
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 rp
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 = rp.models.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 = rp.p_servo(panda.fkine(panda.q), Tep, 1)
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
  [![PyPI version](https://badge.fury.io/py/roboticstoolbox-python.svg)](https://badge.fury.io/py/roboticstoolbox-python)
8
8
  [![Anaconda version](https://anaconda.org/conda-forge/roboticstoolbox-python/badges/version.svg)](https://anaconda.org/conda-forge/roboticstoolbox-python)
9
9
  ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/roboticstoolbox-python.svg)
10
- [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
11
10
 
12
- [![Build Status](https://github.com/petercorke/robotics-toolbox-python/workflows/build/badge.svg?branch=master)](https://github.com/petercorke/robotics-toolbox-python/actions?query=workflow%3Abuild)
11
+ [![Build Status](https://github.com/petercorke/robotics-toolbox-python/workflows/Test/badge.svg?branch=master)](https://github.com/petercorke/robotics-toolbox-python/actions?query=workflow%3ATest)
13
12
  [![Coverage](https://codecov.io/gh/petercorke/robotics-toolbox-python/branch/master/graph/badge.svg)](https://codecov.io/gh/petercorke/robotics-toolbox-python)
14
- [![Language grade: Python](https://img.shields.io/lgtm/grade/python/g/petercorke/robotics-toolbox-python.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/petercorke/robotics-toolbox-python/context:python)
15
13
  [![PyPI - Downloads](https://img.shields.io/pypi/dw/roboticstoolbox-python)](https://pypistats.org/packages/roboticstoolbox-python)
14
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](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.ik_lm_chan(Tep) # solve IK
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 rp
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 = rp.models.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 = rp.p_servo(panda.fkine(panda.q), Tep, 1)
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.0.3"
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~=1.0.0",
17
- "spatialgeometry~=1.0.0",
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~=1.0.0",
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 = ["python", "robotics", "robotics-toolbox", "kinematics", "dynamics", "motion-planning", "trajectory-generation", "jacobian", "hessian", "control", "simulation", "robot-manipulator", "mobile-robot"]
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
- "Development Status :: 5 - Production/Stable",
37
- # Indicate who your project is intended for
38
- "Intended Audience :: Developers",
39
- # Pick your license as you wish (should match "license" above)
40
- "License :: OSI Approved :: MIT License",
41
- # Specify the Python versions you support here.
42
- "Programming Language :: Python :: 3.7",
43
- "Programming Language :: Python :: 3.8",
44
- "Programming Language :: Python :: 3.9",
45
- "Programming Language :: Python :: 3.10",
46
- "Programming Language :: Python :: 3.11",
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' meaning" "end-effector"
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.ax.collections.remove(self.ell)
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." " Set opt='trans'"
186
+ "Can not do rotational ellipse for a 2d robot plot. Set opt='trans'"
184
187
  )
185
188
 
186
- # if not self.vell:
187
- # # Do the extra step for the force ellipse
188
- # try:
189
- # A = np.linalg.inv(A)
190
- # except:
191
- # A = np.zeros((2,2))
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
- # points on unit circle
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 = f"PyPlot3D backend, t = {self.sim_time}, scene:"
81
+ s = ""
81
82
  for robot in self.robots:
82
- s += f"\n {robot.robot.name}"
83
- return s
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. " "Must be one of 'p', 'v', or 'a'"
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 isinstance(ob, rp.DHRobot) or isinstance(ob, rp.ERobot):
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 = f"PyPlot2D backend, t = {self.sim_time}, scene:"
50
+ s = ""
51
51
  for robot in self.robots:
52
- s += f"\n {robot.name}"
53
- return s
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
- self.fig = plt.figure(name)
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.ERobot2):
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. " "Must be one of 'p', 'v', or 'a'"
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
- Tj = T[link.number - 1]
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)
@@ -0,0 +1,10 @@
1
+ from roboticstoolbox import *
2
+
3
+ # puma = models.ETS.Panda()
4
+ # print(puma)
5
+
6
+ # puma.plot(puma.qr, block=True)
7
+
8
+ a1 = 1
9
+ e = ET2.R() * ET2.tx(a1)
10
+ e.plot(0, block=True)