roboticstoolbox-python 1.1.0__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 (596) hide show
  1. {roboticstoolbox-python-1.1.0/roboticstoolbox_python.egg-info → roboticstoolbox_python-1.1.1}/PKG-INFO +33 -6
  2. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/README.md +4 -4
  3. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/pyproject.toml +2 -2
  4. roboticstoolbox_python-1.1.1/roboticstoolbox/backends/PyPlot/test1.py +46 -0
  5. roboticstoolbox_python-1.1.1/roboticstoolbox/backends/PyPlot/test2.py +10 -0
  6. roboticstoolbox_python-1.1.1/roboticstoolbox/blocks/test.py +156 -0
  7. roboticstoolbox_python-1.1.1/roboticstoolbox/examples/armer.py +80 -0
  8. roboticstoolbox_python-1.1.1/roboticstoolbox/examples/aside.py +142 -0
  9. roboticstoolbox_python-1.1.1/roboticstoolbox/examples/colors.py +29 -0
  10. roboticstoolbox_python-1.1.1/roboticstoolbox/examples/eg2.py +3 -0
  11. roboticstoolbox_python-1.1.1/roboticstoolbox/examples/erobot-test.py +10 -0
  12. roboticstoolbox_python-1.1.1/roboticstoolbox/examples/poly_example.py +95 -0
  13. roboticstoolbox_python-1.1.1/roboticstoolbox/examples/test1.py +6 -0
  14. roboticstoolbox_python-1.1.1/roboticstoolbox/examples/test_et.py +72 -0
  15. roboticstoolbox_python-1.1.1/roboticstoolbox/examples/timing.py +62 -0
  16. roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/CurvaturePolyPlanner.py-new.py +166 -0
  17. roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/DstarPlanner-nearly.py +515 -0
  18. roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/DstarPlanner-old.py +403 -0
  19. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/EKF.py +2 -1
  20. roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/bug.py +331 -0
  21. roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/distancexform.py +0 -0
  22. roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/dubins_path_planning.py +402 -0
  23. roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/new.py +19 -0
  24. roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/plot_vehicle.py +51 -0
  25. roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/probabilistic_road_map.py +298 -0
  26. roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/qtiming.py +103 -0
  27. roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/reedsshepp-old.py +301 -0
  28. roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/rrt.py +278 -0
  29. roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/rrt_dubins.py +256 -0
  30. roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/rrt_star.py +293 -0
  31. roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/rrt_with_pathsmoothing.py +150 -0
  32. roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/state_lattice_planner.py +348 -0
  33. roboticstoolbox_python-1.1.1/roboticstoolbox/mobile/test2.py +32 -0
  34. roboticstoolbox_python-1.1.1/roboticstoolbox/models/DH/arte_parse.py +209 -0
  35. roboticstoolbox_python-1.1.1/roboticstoolbox/models/ETS/Puma560dh.py +96 -0
  36. roboticstoolbox_python-1.1.1/roboticstoolbox/robot/symsimp.py +154 -0
  37. roboticstoolbox_python-1.1.1/roboticstoolbox/robot/symsimp2.py +78 -0
  38. roboticstoolbox_python-1.1.1/roboticstoolbox/robot/test-plot.py +7 -0
  39. roboticstoolbox_python-1.1.1/roboticstoolbox/robot/test_fkine.py +13 -0
  40. roboticstoolbox_python-1.1.1/roboticstoolbox/robot/test_invdyn.py +108 -0
  41. roboticstoolbox_python-1.1.1/roboticstoolbox/robot/timing_dynamics.py +64 -0
  42. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1/roboticstoolbox_python.egg-info}/PKG-INFO +33 -6
  43. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox_python.egg-info/SOURCES.txt +37 -0
  44. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/LICENSE +0 -0
  45. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/__init__.py +0 -0
  46. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/backends/Connector.py +0 -0
  47. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/backends/PyPlot/EllipsePlot.py +0 -0
  48. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/backends/PyPlot/PyPlot.py +0 -0
  49. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/backends/PyPlot/PyPlot2.py +0 -0
  50. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/backends/PyPlot/RobotPlot.py +0 -0
  51. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/backends/PyPlot/RobotPlot2.py +0 -0
  52. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/backends/PyPlot/__init__.py +0 -0
  53. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/backends/__init__.py +0 -0
  54. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/backends/swift/__init__.py +0 -0
  55. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/bin/__init__.py +0 -0
  56. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/bin/rtbtool.py +0 -0
  57. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/blocks/__init__.py +0 -0
  58. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/blocks/arm.py +0 -0
  59. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/blocks/mobile.py +0 -0
  60. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/blocks/quad_model.py +0 -0
  61. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/blocks/spatial.py +0 -0
  62. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/blocks/uav.py +0 -0
  63. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/Cholesky +0 -0
  64. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/CholmodSupport +0 -0
  65. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/Core +0 -0
  66. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/Dense +0 -0
  67. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/Eigen +0 -0
  68. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/Eigenvalues +0 -0
  69. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/Geometry +0 -0
  70. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/Householder +0 -0
  71. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/IterativeLinearSolvers +0 -0
  72. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/Jacobi +0 -0
  73. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/KLUSupport +0 -0
  74. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/LU +0 -0
  75. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/MetisSupport +0 -0
  76. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/OrderingMethods +0 -0
  77. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/PaStiXSupport +0 -0
  78. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/PardisoSupport +0 -0
  79. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/QR +0 -0
  80. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/QtAlignedMalloc +0 -0
  81. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/SPQRSupport +0 -0
  82. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/SVD +0 -0
  83. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/Sparse +0 -0
  84. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/SparseCholesky +0 -0
  85. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/SparseCore +0 -0
  86. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/SparseLU +0 -0
  87. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/SparseQR +0 -0
  88. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/StdDeque +0 -0
  89. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/StdList +0 -0
  90. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/StdVector +0 -0
  91. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/SuperLUSupport +0 -0
  92. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/UmfPackSupport +0 -0
  93. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Cholesky/LDLT.h +0 -0
  94. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Cholesky/LLT.h +0 -0
  95. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Cholesky/LLT_LAPACKE.h +0 -0
  96. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/CholmodSupport/CholmodSupport.h +0 -0
  97. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/ArithmeticSequence.h +0 -0
  98. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Array.h +0 -0
  99. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/ArrayBase.h +0 -0
  100. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/ArrayWrapper.h +0 -0
  101. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Assign.h +0 -0
  102. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/AssignEvaluator.h +0 -0
  103. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Assign_MKL.h +0 -0
  104. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/BandMatrix.h +0 -0
  105. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Block.h +0 -0
  106. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/BooleanRedux.h +0 -0
  107. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/CommaInitializer.h +0 -0
  108. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/ConditionEstimator.h +0 -0
  109. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/CoreEvaluators.h +0 -0
  110. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/CoreIterators.h +0 -0
  111. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/CwiseBinaryOp.h +0 -0
  112. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/CwiseNullaryOp.h +0 -0
  113. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/CwiseTernaryOp.h +0 -0
  114. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/CwiseUnaryOp.h +0 -0
  115. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/CwiseUnaryView.h +0 -0
  116. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/DenseBase.h +0 -0
  117. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/DenseCoeffsBase.h +0 -0
  118. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/DenseStorage.h +0 -0
  119. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Diagonal.h +0 -0
  120. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/DiagonalMatrix.h +0 -0
  121. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/DiagonalProduct.h +0 -0
  122. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Dot.h +0 -0
  123. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/EigenBase.h +0 -0
  124. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/ForceAlignedAccess.h +0 -0
  125. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Fuzzy.h +0 -0
  126. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/GeneralProduct.h +0 -0
  127. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/GenericPacketMath.h +0 -0
  128. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/GlobalFunctions.h +0 -0
  129. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/IO.h +0 -0
  130. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/IndexedView.h +0 -0
  131. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Inverse.h +0 -0
  132. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Map.h +0 -0
  133. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/MapBase.h +0 -0
  134. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/MathFunctions.h +0 -0
  135. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/MathFunctionsImpl.h +0 -0
  136. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Matrix.h +0 -0
  137. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/MatrixBase.h +0 -0
  138. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/NestByValue.h +0 -0
  139. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/NoAlias.h +0 -0
  140. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/NumTraits.h +0 -0
  141. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/PartialReduxEvaluator.h +0 -0
  142. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/PermutationMatrix.h +0 -0
  143. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/PlainObjectBase.h +0 -0
  144. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Product.h +0 -0
  145. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/ProductEvaluators.h +0 -0
  146. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Random.h +0 -0
  147. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Redux.h +0 -0
  148. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Ref.h +0 -0
  149. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Replicate.h +0 -0
  150. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Reshaped.h +0 -0
  151. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/ReturnByValue.h +0 -0
  152. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Reverse.h +0 -0
  153. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Select.h +0 -0
  154. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/SelfAdjointView.h +0 -0
  155. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/SelfCwiseBinaryOp.h +0 -0
  156. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Solve.h +0 -0
  157. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/SolveTriangular.h +0 -0
  158. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/SolverBase.h +0 -0
  159. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/StableNorm.h +0 -0
  160. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/StlIterators.h +0 -0
  161. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Stride.h +0 -0
  162. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Swap.h +0 -0
  163. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Transpose.h +0 -0
  164. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Transpositions.h +0 -0
  165. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/TriangularMatrix.h +0 -0
  166. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/VectorBlock.h +0 -0
  167. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/VectorwiseOp.h +0 -0
  168. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/Visitor.h +0 -0
  169. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/AVX/Complex.h +0 -0
  170. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/AVX/MathFunctions.h +0 -0
  171. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/AVX/PacketMath.h +0 -0
  172. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/AVX/TypeCasting.h +0 -0
  173. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/AVX512/Complex.h +0 -0
  174. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/AVX512/MathFunctions.h +0 -0
  175. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/AVX512/PacketMath.h +0 -0
  176. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/AVX512/TypeCasting.h +0 -0
  177. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/AltiVec/Complex.h +0 -0
  178. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/AltiVec/MathFunctions.h +0 -0
  179. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/AltiVec/MatrixProduct.h +0 -0
  180. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/AltiVec/MatrixProductCommon.h +0 -0
  181. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/AltiVec/MatrixProductMMA.h +0 -0
  182. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/AltiVec/PacketMath.h +0 -0
  183. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/CUDA/Complex.h +0 -0
  184. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/Default/BFloat16.h +0 -0
  185. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/Default/ConjHelper.h +0 -0
  186. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/Default/GenericPacketMathFunctions.h +0 -0
  187. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/Default/GenericPacketMathFunctionsFwd.h +0 -0
  188. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/Default/Half.h +0 -0
  189. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/Default/Settings.h +0 -0
  190. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/Default/TypeCasting.h +0 -0
  191. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/GPU/MathFunctions.h +0 -0
  192. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/GPU/PacketMath.h +0 -0
  193. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/GPU/TypeCasting.h +0 -0
  194. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/HIP/hcc/math_constants.h +0 -0
  195. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/MSA/Complex.h +0 -0
  196. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/MSA/MathFunctions.h +0 -0
  197. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/MSA/PacketMath.h +0 -0
  198. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/NEON/Complex.h +0 -0
  199. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/NEON/GeneralBlockPanelKernel.h +0 -0
  200. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/NEON/MathFunctions.h +0 -0
  201. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/NEON/PacketMath.h +0 -0
  202. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/NEON/TypeCasting.h +0 -0
  203. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/SSE/Complex.h +0 -0
  204. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/SSE/MathFunctions.h +0 -0
  205. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/SSE/PacketMath.h +0 -0
  206. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/SSE/TypeCasting.h +0 -0
  207. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/SVE/MathFunctions.h +0 -0
  208. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/SVE/PacketMath.h +0 -0
  209. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/SVE/TypeCasting.h +0 -0
  210. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/SYCL/InteropHeaders.h +0 -0
  211. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/SYCL/MathFunctions.h +0 -0
  212. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/SYCL/PacketMath.h +0 -0
  213. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/SYCL/SyclMemoryModel.h +0 -0
  214. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/SYCL/TypeCasting.h +0 -0
  215. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/ZVector/Complex.h +0 -0
  216. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/ZVector/MathFunctions.h +0 -0
  217. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/arch/ZVector/PacketMath.h +0 -0
  218. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/functors/AssignmentFunctors.h +0 -0
  219. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/functors/BinaryFunctors.h +0 -0
  220. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/functors/NullaryFunctors.h +0 -0
  221. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/functors/StlFunctors.h +0 -0
  222. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/functors/TernaryFunctors.h +0 -0
  223. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/functors/UnaryFunctors.h +0 -0
  224. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/GeneralBlockPanelKernel.h +0 -0
  225. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/GeneralMatrixMatrix.h +0 -0
  226. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h +0 -0
  227. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h +0 -0
  228. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h +0 -0
  229. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/GeneralMatrixVector.h +0 -0
  230. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h +0 -0
  231. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/Parallelizer.h +0 -0
  232. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/SelfadjointMatrixMatrix.h +0 -0
  233. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h +0 -0
  234. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/SelfadjointMatrixVector.h +0 -0
  235. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h +0 -0
  236. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/SelfadjointProduct.h +0 -0
  237. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/SelfadjointRank2Update.h +0 -0
  238. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/TriangularMatrixMatrix.h +0 -0
  239. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h +0 -0
  240. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/TriangularMatrixVector.h +0 -0
  241. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h +0 -0
  242. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/TriangularSolverMatrix.h +0 -0
  243. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h +0 -0
  244. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/products/TriangularSolverVector.h +0 -0
  245. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/BlasUtil.h +0 -0
  246. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/ConfigureVectorization.h +0 -0
  247. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/Constants.h +0 -0
  248. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/DisableStupidWarnings.h +0 -0
  249. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/ForwardDeclarations.h +0 -0
  250. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/IndexedViewHelper.h +0 -0
  251. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/IntegralConstant.h +0 -0
  252. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/MKL_support.h +0 -0
  253. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/Macros.h +0 -0
  254. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/Memory.h +0 -0
  255. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/Meta.h +0 -0
  256. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/NonMPL2.h +0 -0
  257. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/ReenableStupidWarnings.h +0 -0
  258. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/ReshapedHelper.h +0 -0
  259. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/StaticAssert.h +0 -0
  260. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/SymbolicIndex.h +0 -0
  261. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Core/util/XprHelper.h +0 -0
  262. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Eigenvalues/ComplexEigenSolver.h +0 -0
  263. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Eigenvalues/ComplexSchur.h +0 -0
  264. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h +0 -0
  265. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Eigenvalues/EigenSolver.h +0 -0
  266. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h +0 -0
  267. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h +0 -0
  268. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Eigenvalues/HessenbergDecomposition.h +0 -0
  269. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h +0 -0
  270. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Eigenvalues/RealQZ.h +0 -0
  271. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Eigenvalues/RealSchur.h +0 -0
  272. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h +0 -0
  273. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h +0 -0
  274. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h +0 -0
  275. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Eigenvalues/Tridiagonalization.h +0 -0
  276. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Geometry/AlignedBox.h +0 -0
  277. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Geometry/AngleAxis.h +0 -0
  278. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Geometry/EulerAngles.h +0 -0
  279. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Geometry/Homogeneous.h +0 -0
  280. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Geometry/Hyperplane.h +0 -0
  281. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Geometry/OrthoMethods.h +0 -0
  282. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Geometry/ParametrizedLine.h +0 -0
  283. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Geometry/Quaternion.h +0 -0
  284. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Geometry/Rotation2D.h +0 -0
  285. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Geometry/RotationBase.h +0 -0
  286. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Geometry/Scaling.h +0 -0
  287. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Geometry/Transform.h +0 -0
  288. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Geometry/Translation.h +0 -0
  289. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Geometry/Umeyama.h +0 -0
  290. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Geometry/arch/Geometry_SIMD.h +0 -0
  291. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Householder/BlockHouseholder.h +0 -0
  292. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Householder/Householder.h +0 -0
  293. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Householder/HouseholderSequence.h +0 -0
  294. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h +0 -0
  295. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h +0 -0
  296. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h +0 -0
  297. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h +0 -0
  298. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h +0 -0
  299. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h +0 -0
  300. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h +0 -0
  301. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h +0 -0
  302. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/Jacobi/Jacobi.h +0 -0
  303. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/KLUSupport/KLUSupport.h +0 -0
  304. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/LU/Determinant.h +0 -0
  305. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/LU/FullPivLU.h +0 -0
  306. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/LU/InverseImpl.h +0 -0
  307. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/LU/PartialPivLU.h +0 -0
  308. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/LU/PartialPivLU_LAPACKE.h +0 -0
  309. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/LU/arch/InverseSize4.h +0 -0
  310. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/MetisSupport/MetisSupport.h +0 -0
  311. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/OrderingMethods/Amd.h +0 -0
  312. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/OrderingMethods/Eigen_Colamd.h +0 -0
  313. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/OrderingMethods/Ordering.h +0 -0
  314. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/PaStiXSupport/PaStiXSupport.h +0 -0
  315. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/PardisoSupport/PardisoSupport.h +0 -0
  316. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/QR/ColPivHouseholderQR.h +0 -0
  317. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h +0 -0
  318. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/QR/CompleteOrthogonalDecomposition.h +0 -0
  319. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/QR/FullPivHouseholderQR.h +0 -0
  320. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/QR/HouseholderQR.h +0 -0
  321. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/QR/HouseholderQR_LAPACKE.h +0 -0
  322. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h +0 -0
  323. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SVD/BDCSVD.h +0 -0
  324. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SVD/JacobiSVD.h +0 -0
  325. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SVD/JacobiSVD_LAPACKE.h +0 -0
  326. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SVD/SVDBase.h +0 -0
  327. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SVD/UpperBidiagonalization.h +0 -0
  328. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCholesky/SimplicialCholesky.h +0 -0
  329. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h +0 -0
  330. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/AmbiVector.h +0 -0
  331. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/CompressedStorage.h +0 -0
  332. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h +0 -0
  333. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/MappedSparseMatrix.h +0 -0
  334. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseAssign.h +0 -0
  335. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseBlock.h +0 -0
  336. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseColEtree.h +0 -0
  337. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseCompressedBase.h +0 -0
  338. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseCwiseBinaryOp.h +0 -0
  339. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseCwiseUnaryOp.h +0 -0
  340. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseDenseProduct.h +0 -0
  341. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseDiagonalProduct.h +0 -0
  342. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseDot.h +0 -0
  343. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseFuzzy.h +0 -0
  344. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseMap.h +0 -0
  345. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseMatrix.h +0 -0
  346. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseMatrixBase.h +0 -0
  347. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparsePermutation.h +0 -0
  348. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseProduct.h +0 -0
  349. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseRedux.h +0 -0
  350. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseRef.h +0 -0
  351. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseSelfAdjointView.h +0 -0
  352. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseSolverBase.h +0 -0
  353. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseSparseProductWithPruning.h +0 -0
  354. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseTranspose.h +0 -0
  355. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseTriangularView.h +0 -0
  356. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseUtil.h +0 -0
  357. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseVector.h +0 -0
  358. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/SparseView.h +0 -0
  359. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseCore/TriangularSolver.h +0 -0
  360. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU.h +0 -0
  361. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLUImpl.h +0 -0
  362. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU_Memory.h +0 -0
  363. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU_Structs.h +0 -0
  364. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h +0 -0
  365. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU_Utils.h +0 -0
  366. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU_column_bmod.h +0 -0
  367. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU_column_dfs.h +0 -0
  368. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h +0 -0
  369. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU_gemm_kernel.h +0 -0
  370. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h +0 -0
  371. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU_kernel_bmod.h +0 -0
  372. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU_panel_bmod.h +0 -0
  373. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU_panel_dfs.h +0 -0
  374. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU_pivotL.h +0 -0
  375. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU_pruneL.h +0 -0
  376. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseLU/SparseLU_relax_snode.h +0 -0
  377. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SparseQR/SparseQR.h +0 -0
  378. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/StlSupport/StdDeque.h +0 -0
  379. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/StlSupport/StdList.h +0 -0
  380. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/StlSupport/StdVector.h +0 -0
  381. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/StlSupport/details.h +0 -0
  382. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/SuperLUSupport/SuperLUSupport.h +0 -0
  383. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/UmfPackSupport/UmfPackSupport.h +0 -0
  384. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/misc/Image.h +0 -0
  385. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/misc/Kernel.h +0 -0
  386. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/misc/RealSvd2x2.h +0 -0
  387. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/misc/blas.h +0 -0
  388. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/misc/lapack.h +0 -0
  389. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/misc/lapacke.h +0 -0
  390. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/misc/lapacke_mangling.h +0 -0
  391. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/plugins/ArrayCwiseBinaryOps.h +0 -0
  392. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/plugins/ArrayCwiseUnaryOps.h +0 -0
  393. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/plugins/BlockMethods.h +0 -0
  394. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/plugins/CommonCwiseBinaryOps.h +0 -0
  395. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/plugins/CommonCwiseUnaryOps.h +0 -0
  396. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/plugins/IndexedViewMethods.h +0 -0
  397. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/plugins/MatrixCwiseBinaryOps.h +0 -0
  398. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/plugins/MatrixCwiseUnaryOps.h +0 -0
  399. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/Eigen/src/plugins/ReshapedMethods.h +0 -0
  400. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/fknm.cpp +0 -0
  401. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/fknm.h +0 -0
  402. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/frne.c +0 -0
  403. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/frne.h +0 -0
  404. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/ik.cpp +0 -0
  405. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/ik.h +0 -0
  406. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/linalg.cpp +0 -0
  407. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/linalg.h +0 -0
  408. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/methods.cpp +0 -0
  409. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/methods.h +0 -0
  410. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/ne.c +0 -0
  411. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/structs.cpp +0 -0
  412. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/structs.h +0 -0
  413. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/vmath.c +0 -0
  414. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/core/vmath.h +0 -0
  415. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/RRMC.py +0 -0
  416. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/RRMC_swift.py +0 -0
  417. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/__init__.py +0 -0
  418. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/baur.py +0 -0
  419. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/branched_robot.py +0 -0
  420. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/eigdemo.py +0 -0
  421. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/fetch_vision.py +0 -0
  422. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/holistic_mm_non_holonomic.py +0 -0
  423. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/holistic_mm_omni.py +0 -0
  424. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/icra2021.py +0 -0
  425. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/ik_exp.py +0 -0
  426. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/ik_speed.py +0 -0
  427. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/ikine_evaluate.py +0 -0
  428. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/ikine_evaluate2.py +0 -0
  429. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/mexican-wave.py +0 -0
  430. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/mmc.py +0 -0
  431. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/mobile.py +0 -0
  432. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/neo.py +0 -0
  433. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/park.py +0 -0
  434. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/plot.py +0 -0
  435. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/plot_swift.py +0 -0
  436. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/puma_fdyn.py +0 -0
  437. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/puma_jtraj.py +0 -0
  438. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/puma_swift.py +0 -0
  439. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/readme.py +0 -0
  440. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/robots.py +0 -0
  441. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/swift_recording.py +0 -0
  442. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/teach.py +0 -0
  443. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/teach_swift.py +0 -0
  444. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/test.py +0 -0
  445. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/tripleangledemo.py +0 -0
  446. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/twistdemo.py +0 -0
  447. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/examples/vehicle1.py +0 -0
  448. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/Animations.py +0 -0
  449. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/Bug2.py +0 -0
  450. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/CurvaturePolyPlanner.py +0 -0
  451. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/DistanceTransformPlanner.py +0 -0
  452. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/DstarPlanner.py +0 -0
  453. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/DubinsPlanner.py +0 -0
  454. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/LatticePlanner.py +0 -0
  455. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/OccGrid.py +0 -0
  456. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/PRMPlanner.py +0 -0
  457. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/ParticleFilter.py +0 -0
  458. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/PlannerBase.py +0 -0
  459. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/PoseGraph.py +0 -0
  460. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/QuinticPolyPlanner.py +0 -0
  461. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/RRTPlanner.py +0 -0
  462. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/ReedsSheppPlanner.py +0 -0
  463. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/Vehicle.py +0 -0
  464. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/__init__.py +0 -0
  465. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/drivers.py +0 -0
  466. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/landmarkmap.py +0 -0
  467. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/mobile/sensors.py +0 -0
  468. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/AL5D.py +0 -0
  469. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Ball.py +0 -0
  470. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Baxter.py +0 -0
  471. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Cobra600.py +0 -0
  472. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Coil.py +0 -0
  473. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Hyper.py +0 -0
  474. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Hyper3d.py +0 -0
  475. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/IRB140.py +0 -0
  476. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Jaco.py +0 -0
  477. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/KR5.py +0 -0
  478. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/LWR4.py +0 -0
  479. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Mico.py +0 -0
  480. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Orion5.py +0 -0
  481. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/P8.py +0 -0
  482. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Panda.py +0 -0
  483. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Planar2.py +0 -0
  484. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Planar3.py +0 -0
  485. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Puma560.py +0 -0
  486. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Sawyer.py +0 -0
  487. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Stanford.py +0 -0
  488. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/TwoLink.py +0 -0
  489. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/UR10.py +0 -0
  490. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/UR3.py +0 -0
  491. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/UR5.py +0 -0
  492. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/Uprighttl.py +0 -0
  493. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/DH/__init__.py +0 -0
  494. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/ETS/Frankie.py +0 -0
  495. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/ETS/GenericSeven.py +0 -0
  496. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/ETS/Omni.py +0 -0
  497. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/ETS/Panda.py +0 -0
  498. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/ETS/Planar2.py +0 -0
  499. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/ETS/Planar_Y.py +0 -0
  500. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/ETS/Puma560.py +0 -0
  501. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/ETS/XYPanda.py +0 -0
  502. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/ETS/__init__.py +0 -0
  503. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/AL5D.py +0 -0
  504. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/Fetch.py +0 -0
  505. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/FetchCamera.py +0 -0
  506. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/Frankie.py +0 -0
  507. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/FrankieOmni.py +0 -0
  508. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/KinovaGen3.py +0 -0
  509. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/LBR.py +0 -0
  510. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/Mico.py +0 -0
  511. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/PR2.py +0 -0
  512. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/Panda.py +0 -0
  513. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/Puma560.py +0 -0
  514. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/UR10.py +0 -0
  515. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/UR3.py +0 -0
  516. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/UR5.py +0 -0
  517. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/Valkyrie.py +0 -0
  518. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/YuMi.py +0 -0
  519. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/__init__.py +0 -0
  520. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/px100.py +0 -0
  521. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/px150.py +0 -0
  522. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/rx150.py +0 -0
  523. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/rx200.py +0 -0
  524. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/vx300.py +0 -0
  525. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/vx300s.py +0 -0
  526. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/wx200.py +0 -0
  527. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/wx250.py +0 -0
  528. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/URDF/wx250s.py +0 -0
  529. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/__init__.py +0 -0
  530. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/models/list.py +0 -0
  531. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/robot/BaseRobot.py +0 -0
  532. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/robot/DHFactor.py +0 -0
  533. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/robot/DHLink.py +0 -0
  534. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/robot/DHRobot.py +0 -0
  535. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/robot/Dynamics.py +0 -0
  536. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/robot/ELink.py +0 -0
  537. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/robot/ERobot.py +0 -0
  538. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/robot/ET.py +0 -0
  539. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/robot/ETS.py +0 -0
  540. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/robot/Gripper.py +0 -0
  541. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/robot/IK.py +0 -0
  542. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/robot/Link.py +0 -0
  543. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/robot/PoERobot.py +0 -0
  544. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/robot/Robot.py +0 -0
  545. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/robot/RobotKinematics.py +0 -0
  546. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/robot/RobotProto.py +0 -0
  547. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/robot/__init__.py +0 -0
  548. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/DHFactor.py +0 -0
  549. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/Ticker.py +0 -0
  550. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/__init__.py +0 -0
  551. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/data.py +0 -0
  552. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/jsingu.py +0 -0
  553. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/null.py +0 -0
  554. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/numerical.py +0 -0
  555. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/p_servo.py +0 -0
  556. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/params.py +0 -0
  557. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/plot.py +0 -0
  558. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/trajectory.py +0 -0
  559. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/types.py +0 -0
  560. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/urdf/__init__.py +0 -0
  561. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/urdf/urdf.py +0 -0
  562. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/urdf/utils.py +0 -0
  563. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/xacro/__init__.py +0 -0
  564. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/xacro/cli.py +0 -0
  565. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/xacro/color.py +0 -0
  566. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox/tools/xacro/xmlutils.py +0 -0
  567. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox_python.egg-info/dependency_links.txt +0 -0
  568. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox_python.egg-info/entry_points.txt +0 -0
  569. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox_python.egg-info/requires.txt +0 -0
  570. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/roboticstoolbox_python.egg-info/top_level.txt +0 -0
  571. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/setup.cfg +0 -0
  572. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/setup.py +0 -0
  573. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/tests/test_BaseRobot.py +0 -0
  574. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/tests/test_CustomXacro.py +0 -0
  575. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/tests/test_DHRobot.py +0 -0
  576. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/tests/test_ELink.py +0 -0
  577. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/tests/test_ERobot.py +0 -0
  578. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/tests/test_ET.py +0 -0
  579. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/tests/test_ETS.py +0 -0
  580. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/tests/test_ETS2.py +0 -0
  581. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/tests/test_Gripper.py +0 -0
  582. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/tests/test_IK.py +0 -0
  583. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/tests/test_Link.py +0 -0
  584. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/tests/test_PyPlot.py +0 -0
  585. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/tests/test_PyPlot2.py +0 -0
  586. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/tests/test_Robot.py +0 -0
  587. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/tests/test_Ticker.py +0 -0
  588. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/tests/test_VPython.py +0 -0
  589. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/tests/test_blocks.py +0 -0
  590. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/tests/test_fknm.py +0 -0
  591. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/tests/test_jacob.py +0 -0
  592. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/tests/test_mobile.py +0 -0
  593. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/tests/test_mobile_planner.py +0 -0
  594. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/tests/test_models.py +0 -0
  595. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/tests/test_tools.py +0 -0
  596. {roboticstoolbox-python-1.1.0 → roboticstoolbox_python-1.1.1}/tests/test_trajectory.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: roboticstoolbox-python
3
- Version: 1.1.0
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
 
@@ -243,7 +270,7 @@ orientation parallel to y-axis (O=+Y)).
243
270
  from spatialmath import SE3
244
271
 
245
272
  Tep = SE3.Trans(0.6, -0.3, 0.1) * SE3.OA([0, 1, 0], [0, 0, -1])
246
- sol = robot.ik_lm_chan(Tep) # solve IK
273
+ sol = robot.ik_LM(Tep) # solve IK
247
274
  print(sol)
248
275
 
249
276
  (array([ 0.20592815, 0.86609481, -0.79473206, -1.68254794, 0.74872915,
@@ -285,14 +312,14 @@ We can also experiment with velocity controllers in Swift. Here is a resolved-ra
285
312
 
286
313
  ```python
287
314
  import swift
288
- import roboticstoolbox as rp
315
+ import roboticstoolbox as rtb
289
316
  import spatialmath as sm
290
317
  import numpy as np
291
318
 
292
319
  env = swift.Swift()
293
320
  env.launch(realtime=True)
294
321
 
295
- panda = rp.models.Panda()
322
+ panda = rtb.models.Panda()
296
323
  panda.q = panda.qr
297
324
 
298
325
  Tep = panda.fkine(panda.q) * sm.SE3.Trans(0.2, 0.2, 0.45)
@@ -304,7 +331,7 @@ dt = 0.05
304
331
 
305
332
  while not arrived:
306
333
 
307
- v, arrived = rp.p_servo(panda.fkine(panda.q), Tep, 1)
334
+ v, arrived = rtb.p_servo(panda.fkine(panda.q), Tep, 1)
308
335
  panda.qd = np.linalg.pinv(panda.jacobe(panda.q)) @ v
309
336
  env.step(dt)
310
337
 
@@ -197,7 +197,7 @@ orientation parallel to y-axis (O=+Y)).
197
197
  from spatialmath import SE3
198
198
 
199
199
  Tep = SE3.Trans(0.6, -0.3, 0.1) * SE3.OA([0, 1, 0], [0, 0, -1])
200
- sol = robot.ik_lm_chan(Tep) # solve IK
200
+ sol = robot.ik_LM(Tep) # solve IK
201
201
  print(sol)
202
202
 
203
203
  (array([ 0.20592815, 0.86609481, -0.79473206, -1.68254794, 0.74872915,
@@ -239,14 +239,14 @@ We can also experiment with velocity controllers in Swift. Here is a resolved-ra
239
239
 
240
240
  ```python
241
241
  import swift
242
- import roboticstoolbox as rp
242
+ import roboticstoolbox as rtb
243
243
  import spatialmath as sm
244
244
  import numpy as np
245
245
 
246
246
  env = swift.Swift()
247
247
  env.launch(realtime=True)
248
248
 
249
- panda = rp.models.Panda()
249
+ panda = rtb.models.Panda()
250
250
  panda.q = panda.qr
251
251
 
252
252
  Tep = panda.fkine(panda.q) * sm.SE3.Trans(0.2, 0.2, 0.45)
@@ -258,7 +258,7 @@ dt = 0.05
258
258
 
259
259
  while not arrived:
260
260
 
261
- v, arrived = rp.p_servo(panda.fkine(panda.q), Tep, 1)
261
+ v, arrived = rtb.p_servo(panda.fkine(panda.q), Tep, 1)
262
262
  panda.qd = np.linalg.pinv(panda.jacobe(panda.q)) @ v
263
263
  env.step(dt)
264
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.1.0"
7
+ version = "1.1.1"
8
8
 
9
9
  authors = [
10
10
  { name = "Jesse Haviland", email = "j.haviland@qut.edu.au" },
@@ -90,7 +90,7 @@ docs = [
90
90
  "sphinx_rtd_theme",
91
91
  "sphinx-autorun",
92
92
  "sphinx_autodoc_typehints",
93
- "sphinx-favicon"
93
+ "sphinx-favicon",
94
94
  ]
95
95
 
96
96
 
@@ -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)
@@ -0,0 +1,156 @@
1
+ #!/usr/bin/env python3
2
+
3
+ import numpy as np
4
+ import scipy.interpolate
5
+ import math
6
+
7
+ from roboticstoolbox.blocks.arm import *
8
+ from spatialmath import SE3, SO3
9
+ import roboticstoolbox as rtb
10
+
11
+ import unittest
12
+ import numpy.testing as nt
13
+
14
+
15
+ class ArmTest(unittest.TestCase):
16
+ def setup(self):
17
+ # allow assertEqual for SE3
18
+ self.addTypeEqualityFunc(SE3, lambda x, y: x == y)
19
+
20
+ def test_fk(self):
21
+ robot = rtb.models.DH.Puma560()
22
+
23
+ block = Forward_Kinematics(robot)
24
+ self.assertEqual(block._eval(robot.qn)[0], robot.fkine(robot.qn))
25
+
26
+ def test_ik(self):
27
+ robot = rtb.models.DH.Puma560()
28
+ T = robot.fkine(robot.qn)
29
+
30
+ block = Inverse_Kinematics(robot)
31
+ q = block._eval(T)[0]
32
+ self.assertEqual(robot.fkine(q), T)
33
+
34
+ def test_rne(self):
35
+ robot = rtb.models.DH.Puma560()
36
+ block = Inverse_Dynamics(robot)
37
+ tau = block._eval(robot.qn, robot.qz, robot.qz)[0]
38
+ nt.assert_array_equal(tau, robot.rne(robot.qn, robot.qz, robot.qz))
39
+
40
+ def test_jacobian(self):
41
+ robot = rtb.models.DH.Puma560()
42
+ q = robot.qn
43
+
44
+ block = Jacobian(robot)
45
+ nt.assert_array_equal(block._eval(q)[0], robot.jacob0(robot.qn))
46
+ block = Jacobian(robot, inverse=True)
47
+ nt.assert_array_equal(block._eval(q)[0], np.linalg.inv(robot.jacob0(robot.qn)))
48
+ block = Jacobian(robot, transpose=True)
49
+ nt.assert_array_equal(block._eval(q)[0], robot.jacob0(robot.qn).T)
50
+ block = Jacobian(robot, inverse=True, transpose=True)
51
+ nt.assert_array_almost_equal(
52
+ block._eval(q)[0], np.linalg.inv(robot.jacob0(robot.qn).T)
53
+ )
54
+
55
+ block = Jacobian(robot, frame="e")
56
+ nt.assert_array_equal(block._eval(q)[0], robot.jacobe(robot.qn))
57
+ block = Jacobian(robot, frame="e", inverse=True)
58
+ nt.assert_array_equal(block._eval(q)[0], np.linalg.inv(robot.jacobe(robot.qn)))
59
+ block = Jacobian(robot, frame="e", transpose=True)
60
+ nt.assert_array_equal(block._eval(q)[0], robot.jacobe(robot.qn).T)
61
+ block = Jacobian(robot, frame="e", inverse=True, transpose=True)
62
+ nt.assert_array_almost_equal(
63
+ block._eval(q)[0], np.linalg.inv(robot.jacobe(robot.qn).T)
64
+ )
65
+
66
+ def test_tr2delta(self):
67
+
68
+ T1 = SE3(1, 2, 3)
69
+ T2 = SE3(1.1, 2.2, 3.3) * SE3.RPY(0.1, 0.2, 0.3)
70
+
71
+ block = Tr2Delta()
72
+ nt.assert_array_almost_equal(block._eval(T1, T2)[0], base.tr2delta(T1.A, T2.A))
73
+
74
+ def test_delta2tr(self):
75
+
76
+ delta = np.r_[0.1, 0.2, 0.3, 0.4, 0.5, 0.6] / 100
77
+
78
+ block = Delta2Tr()
79
+ out = block._eval(delta)[0]
80
+ self.assertIsInstance(out, SE3)
81
+ self.assertEqual(out, SE3.Delta(delta))
82
+
83
+ def test_tpoly(self):
84
+
85
+ block = Traj(0, 1, 10, traj="tpoly")
86
+ block.start()
87
+ # initial point
88
+ nt.assert_array_almost_equal(block._eval(0)[0], 0)
89
+ nt.assert_array_almost_equal(block._eval(0)[1], 0)
90
+ nt.assert_array_almost_equal(block._eval(0)[2], 0)
91
+
92
+ # final point
93
+ nt.assert_array_almost_equal(block._eval(10)[0], 1)
94
+ nt.assert_array_almost_equal(block._eval(10)[1], 0)
95
+ nt.assert_array_almost_equal(block._eval(10)[2], 0)
96
+
97
+ block = Traj([2, 3], [5, 6], 10, traj="tpoly")
98
+ block.start()
99
+ # initial point
100
+ nt.assert_array_almost_equal(block._eval(0)[0], [2, 3])
101
+ nt.assert_array_almost_equal(block._eval(0)[1], [0, 0])
102
+ nt.assert_array_almost_equal(block._eval(0)[2], [0, 0])
103
+
104
+ # final point
105
+ nt.assert_array_almost_equal(block._eval(10)[0], [5, 6])
106
+ nt.assert_array_almost_equal(block._eval(10)[1], [0, 0])
107
+ nt.assert_array_almost_equal(block._eval(10)[2], [0, 0])
108
+
109
+ def test_lspb(self):
110
+
111
+ block = Traj(0, 1, 10, traj="lspb")
112
+ block.start()
113
+ # initial point
114
+ nt.assert_array_almost_equal(block._eval(0)[0], 0)
115
+ nt.assert_array_almost_equal(block._eval(0)[1], 0)
116
+
117
+ # final point
118
+ nt.assert_array_almost_equal(block._eval(10)[0], 1)
119
+ nt.assert_array_almost_equal(block._eval(10)[1], 0)
120
+
121
+ block = Traj([2, 3], [5, 6], 10, traj="lspb")
122
+ block.start()
123
+ # initial point
124
+ nt.assert_array_almost_equal(block._eval(0)[0], [2, 3])
125
+ nt.assert_array_almost_equal(block._eval(0)[1], [0, 0])
126
+
127
+ # final point
128
+ nt.assert_array_almost_equal(block._eval(10)[0], [5, 6])
129
+ nt.assert_array_almost_equal(block._eval(10)[1], [0, 0])
130
+
131
+ def test_circle(self):
132
+ block = CirclePath(radius=1, centre=(0, 0, 1))
133
+ nt.assert_array_almost_equal(block._eval(t=0)[0], [1, 0, 1])
134
+ nt.assert_array_almost_equal(block._eval(t=0.25)[0], [0, 1, 1])
135
+ nt.assert_array_almost_equal(block._eval(t=0.5)[0], [-1, 0, 1])
136
+
137
+ block = CirclePath(radius=1, pose=SE3.Rx(pi / 2))
138
+ nt.assert_array_almost_equal(block._eval(t=0)[0], [1, 0, 0])
139
+ nt.assert_array_almost_equal(block._eval(t=0.25)[0], [0, 0, 1])
140
+ nt.assert_array_almost_equal(block._eval(t=0.5)[0], [-1, 0, 0])
141
+
142
+ def test_point2tr(self):
143
+ T = SE3.Rx(pi / 2)
144
+ block = Point2Tr(T)
145
+ t = [1, 2, 3]
146
+
147
+ out = block._eval(t)[0]
148
+ self.assertIsInstance(out, SE3)
149
+ nt.assert_array_almost_equal(out.R, T.R)
150
+ nt.assert_array_almost_equal(out.t, t)
151
+
152
+
153
+ # ---------------------------------------------------------------------------------------#
154
+ if __name__ == "__main__":
155
+
156
+ unittest.main()
@@ -0,0 +1,80 @@
1
+ from roboticstoolbox import *
2
+ from spatialmath import *
3
+ from spatialmath.base import *
4
+ import numpy as np
5
+
6
+
7
+ robot = models.ETS.Panda()
8
+ q0 = [.1, .3, .1, 0, 0, 0, 0]
9
+
10
+ T0 = robot.fkine(q0)
11
+ p0 = T0.t
12
+ R0 = SO3(T0)
13
+
14
+ q = q0
15
+ dt = 0.01
16
+
17
+
18
+ # # move at velocity (translational, rotational)
19
+ # # rotational velocity is an Eulervector
20
+ # v = np.r_[0, 0, -0.1, 0, 0, 0]
21
+ # for t in np.arange(0.0, 10.0, dt):
22
+
23
+ # p = p0 + v[:3] * t
24
+ # # print(p)
25
+ # R = R0 * SO3.EulerVec(v[3:] * t)
26
+
27
+ # T = SE3.Rt(R, p)
28
+
29
+ # Tactual = robot.fkine(q)
30
+ # Tactual.printline()
31
+
32
+ # delta = Tactual.delta(T) # Tactual - Tstar in the Tactual frame
33
+
34
+ # qd = np.linalg.pinv(robot.jacobe(q)) @ delta * 0.9
35
+
36
+ # q += qd * [0.99, 0.98, 1.01, 1.02, 0.99, 1.02, 0.97] * dt
37
+
38
+ # print(p0 - Tactual.t)
39
+
40
+
41
+ Tf = SE3(0.3, 0.1, 0.1) * SE3.Rx(np.pi/2) # hand down
42
+
43
+ delta_vmax = 0.1 # max translational speed in m/s
44
+ delta_rmax = 0.1
45
+
46
+ for t in np.arange(0.0, 10.0, dt):
47
+
48
+ Tactual = robot.fkine(q)
49
+ Tactual.printline()
50
+
51
+ delta = Tactual.delta(Tf) # Tactual - Tstar in the Tactual frame
52
+
53
+ if norm(delta) < 1e-3:
54
+ print('done at t=', t)
55
+ break
56
+ print(norm(delta))
57
+
58
+ delta *= 10
59
+ print(delta)
60
+ # delta is velocity per tick
61
+
62
+ # clip translational velocity
63
+ max = np.abs(delta[:3]).max()
64
+ if max > delta_vmax / dt:
65
+ delta[:3] *= delta_vmax / max / dt
66
+
67
+ # clip rotational velocity
68
+ max = np.abs(delta[3:]).max()
69
+ if max > delta_rmax / dt:
70
+ delta[3:] *= delta_rmax / max / dt
71
+ print(delta)
72
+ print()
73
+
74
+
75
+ qd = np.linalg.pinv(robot.jacobe(q)) @ delta
76
+
77
+ q += qd * [0.99, 0.98, 1.01, 1.02, 0.99, 1.02, 0.97] * dt
78
+
79
+
80
+
@@ -0,0 +1,142 @@
1
+ from math import pi
2
+ import numpy as np
3
+
4
+ # Spatial mathematics
5
+ from spatialmath.base import *
6
+ T = transl(0.5, 0.0, 0.0) @ rpy2tr(0.1, 0.2, 0.3, order='xyz') @ trotx(-90, 'deg')
7
+ print(T)
8
+
9
+ from spatialmath import *
10
+ T = SE3(0.5, 0.0, 0.0) * SE3.RPY([0.1, 0.2, 0.3], order='xyz') * SE3.Rx(-90, unit='deg')
11
+ print(T)
12
+
13
+ T.eul()
14
+ T.R
15
+
16
+ T.plot(color='red', label='2')
17
+
18
+ UnitQuaternion.Rx(0.3)
19
+ UnitQuaternion.AngVec(0.3, [1, 0, 0])
20
+
21
+ R = SE3.Rx(np.linspace(0, pi/2, num=100))
22
+ len(R)
23
+
24
+ from roboticstoolbox import *
25
+ # robot length values (metres)
26
+ d1 = 0.352
27
+ a1 = 0.070
28
+ a2 = 0.360
29
+ d4 = 0.380
30
+ d6 = 0.065
31
+
32
+ robot = DHRobot([
33
+ RevoluteDH(d=d1, a=a1, alpha=-pi/2),
34
+ RevoluteDH(a=a2),
35
+ RevoluteDH(alpha=pi/2),
36
+ ], name="my IRB140")
37
+
38
+ print(robot)
39
+
40
+ puma = models.DH.Puma560()
41
+ T = puma.fkine([0.1, 0.2, 0.3, 0.4, 0.5, 0.6])
42
+ sol = puma.ikine_LM(T)
43
+ print(sol)
44
+
45
+ puma.plot(sol.q)
46
+
47
+ puma.ikine_a(T, config="lun")
48
+
49
+ from roboticstoolbox import ETS as ET
50
+
51
+ # Puma dimensions (m), see RVC2 Fig. 7.4 for details
52
+ l1 = 0.672
53
+ l2 = -0.2337
54
+ l3 = 0.4318
55
+ l4 = 0.0203
56
+ l5 = 0.0837
57
+ l6 = 0.4318
58
+
59
+ e = ET.tz(l1) * ET.rz() * ET.ty(l2) * ET.ry() \
60
+ * ET.tz(l3) * ET.tx(l4) * ET.ty(l5) * ET.ry() \
61
+ * ET.tz(l6) * ET.rz() * ET.ry() * ET.rz()
62
+
63
+ robot = ERobot(e)
64
+ print(robot)
65
+
66
+ panda = models.URDF.Panda()
67
+
68
+
69
+ traj = jtraj(puma.qz, puma.qr, 100)
70
+ qplot(traj.q)
71
+
72
+ t = np.arange(0, 2, 0.010)
73
+ T0 = SE3(0.6, -0.5, 0.3)
74
+ T1 = SE3(0.4, 0.5, 0.2)
75
+ Ts = ctraj(T0, T1, t)
76
+ len(Ts)
77
+ sol = puma.ikine_LM(Ts)
78
+ sol.q.shape
79
+
80
+ import spatialmath.base.symbolic as sym
81
+ phi, theta, psi = sym.symbol('φ, ϴ, ψ')
82
+ rpy2r(phi, theta, psi)
83
+
84
+ q = sym.symbol("q_:6") # q = (q_1, q_2, ... q_5)
85
+ T = puma.fkine(q)
86
+
87
+ puma = models.DH.Puma560(symbolic=True)
88
+ T = puma.fkine(q)
89
+ T.t[0]
90
+
91
+ puma = models.DH.Puma560(symbolic=False)
92
+ J = puma.jacob0(puma.qn)
93
+ J = puma.jacobe(puma.qn)
94
+
95
+ J = puma.jacob0(puma.qr)
96
+ np.linalg.matrix_rank(J)
97
+
98
+ jsingu(J)
99
+
100
+ H = panda.hessian0(panda.qz)
101
+ H.shape
102
+
103
+ puma.manipulability(puma.qn)
104
+ puma.manipulability(puma.qn, method="asada")
105
+
106
+ puma.manipulability(puma.qn, axes="trans")
107
+
108
+ panda.jacobm(panda.qr)
109
+
110
+
111
+ tau = puma.rne(puma.qn, np.zeros((6,)), np.zeros((6,)))
112
+ J = puma.inertia(puma.qn)
113
+ C = puma.coriolis(puma.qn, 0.1 * np.ones((6,)))
114
+ g = puma.gravload(puma.qn)
115
+ qdd = puma.accel(puma.qn, tau, np.zeros((6,)))
116
+
117
+
118
+ obstacle = Box([1, 1, 1], SE3(1, 0, 0))
119
+ iscollision = panda.collided(obstacle) # boolean
120
+ iscollision = panda.links[0].collided(obstacle)
121
+
122
+ d, p1, p2 = panda.closest_point(obstacle)
123
+ d, p1, p2 = panda.links[0].closest_point(obstacle)
124
+
125
+ panda.plot(panda.qr)
126
+
127
+ from roboticstoolbox.backends.Swift import Swift
128
+ backend = Swift()
129
+ backend.launch() # create graphical world
130
+ backend.add(panda) # add robot to the world
131
+ panda.q = panda.qr # update the robot
132
+ backend.step() # display the world
133
+
134
+
135
+
136
+ # q = puma.fdyn(q, ...)
137
+ # puma.plot(q)
138
+ # pyplot = roboticstoolbox.backends.PyPlot()
139
+ # pyplot.launch()
140
+ # pyplot.add(puma)
141
+ # puma.q = q
142
+ # puma.step()
@@ -0,0 +1,29 @@
1
+ from matplotlib import colors
2
+ from matplotlib import cm
3
+
4
+ def linkcolormap(self, linkcolors="viridis"): # self is a robot object
5
+
6
+ if isinstance(linkcolors, list) and len(linkcolors) == self.n:
7
+ # provided a list of color names
8
+ return colors.ListedColormap(linkcolors)
9
+ else:
10
+ # assume it is a colormap name
11
+ return cm.get_cmap(linkcolors, 6)
12
+
13
+ import roboticstoolbox as rtb
14
+ robot = rtb.models.DH.Puma560()
15
+
16
+ c = linkcolormap(robot)
17
+ for i in range(6):
18
+ print(c(i))
19
+
20
+ c = linkcolormap(robot, "inferno")
21
+ for i in range(6):
22
+ print(c(i))
23
+ print(type(c))
24
+ c = linkcolormap(robot, ['red', (0,1,0), 'b', 'yellow', 'cyan', 'brown'])
25
+ for i in range(6):
26
+ print(c(i))
27
+
28
+ print(c(range(6)))
29
+ print(type(c))
@@ -0,0 +1,3 @@
1
+ import roboticstoolbox as rtb
2
+ robot = rtb.models.URDF.Puma560()
3
+ robot.plot(robot.qn)
@@ -0,0 +1,10 @@
1
+ import roboticstoolbox as rtb
2
+
3
+ robot = rtb.models.URDF.PR2()
4
+
5
+ print(robot)
6
+ print(robot.ee_links[0])
7
+ robot.hierarchy()
8
+ # print(robot.ets())
9
+
10
+ print(rtb.ETS.SE3(robot.base))