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