dartpy 7.0.0.dev0__cp313-cp313-manylinux_2_39_x86_64.whl
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.
Potentially problematic release.
This version of dartpy might be problematic. Click here for more details.
- dartpy-7.0.0.dev0.dist-info/METADATA +86 -0
- dartpy-7.0.0.dev0.dist-info/RECORD +994 -0
- dartpy-7.0.0.dev0.dist-info/WHEEL +5 -0
- dartpy-7.0.0.dev0.dist-info/licenses/LICENSE +31 -0
- dartpy.cpython-313-x86_64-linux-gnu.so +0 -0
- dartpy.libs/libBulletCollision-f96eb02c.so.3.25 +0 -0
- dartpy.libs/libBulletDynamics-3cff1f18.so.3.25 +0 -0
- dartpy.libs/libBulletSoftBody-220f01bd.so.3.25 +0 -0
- dartpy.libs/libLinearMath-71568d02.so.3.25 +0 -0
- dartpy.libs/libOpenThreads-8bc434db.so.3.3.1 +0 -0
- dartpy.libs/libSDL2-2-3db87ac0.0.so.0.3200.56 +0 -0
- dartpy.libs/libassimp-44cf3e77.so.5.4.3 +0 -0
- dartpy.libs/libccd-4f119cf4.so.2.0 +0 -0
- dartpy.libs/libconsole_bridge-f26e11cc.so.1.0 +0 -0
- dartpy.libs/libfcl-0400fc28.so.0.7.0 +0 -0
- dartpy.libs/libfmt-277170bf.so.11.2.0 +0 -0
- dartpy.libs/libfontconfig-582da43c.so.1.14.0 +0 -0
- dartpy.libs/libfreetype-64806fc6.so.6.20.4 +0 -0
- dartpy.libs/libglfw-6f066845.so.3.4 +0 -0
- dartpy.libs/libimgui-ab87b07d.so +0 -0
- dartpy.libs/libnlopt-d1ae937b.so.1.0.0 +0 -0
- dartpy.libs/liboctomap-38e56f99.so.1.10.0 +0 -0
- dartpy.libs/liboctomath-bff26442.so.1.10.0 +0 -0
- dartpy.libs/libode-99b67f5b.so.8.2.0 +0 -0
- dartpy.libs/libosg-e67375e5.so.3.6.5 +0 -0
- dartpy.libs/libosgDB-bcdb6be9.so.3.6.5 +0 -0
- dartpy.libs/libosgGA-6af4078b.so.3.6.5 +0 -0
- dartpy.libs/libosgManipulator-3270f659.so.3.6.5 +0 -0
- dartpy.libs/libosgShadow-127a8d77.so.3.6.5 +0 -0
- dartpy.libs/libosgText-87d82d87.so.3.6.5 +0 -0
- dartpy.libs/libosgUtil-55896958.so.3.6.5 +0 -0
- dartpy.libs/libosgViewer-76d832e3.so.3.6.5 +0 -0
- dartpy.libs/libpng16-bd65464e.so.16.50.0 +0 -0
- dartpy.libs/libtinyxml2-8d10763c.so.11.0.0 +0 -0
- dartpy.libs/liburdfdom_model-7b26ae88.so.4.0 +0 -0
- dartpy.libs/liburdfdom_model_state-95a5ad6e.so.4.0 +0 -0
- dartpy.libs/liburdfdom_sensor-55a145ea.so.4.0 +0 -0
- dartpy.libs/liburdfdom_world-a32c7194.so.4.0 +0 -0
- dartpy.libs/libvulkan-08e1e162.so.1.4.328 +0 -0
- include/dart/collision/CollisionDetector.hpp +305 -0
- include/dart/collision/CollisionFilter.hpp +126 -0
- include/dart/collision/CollisionGroup.hpp +546 -0
- include/dart/collision/CollisionObject.hpp +90 -0
- include/dart/collision/CollisionOption.hpp +71 -0
- include/dart/collision/CollisionResult.hpp +109 -0
- include/dart/collision/Contact.hpp +103 -0
- include/dart/collision/DistanceFilter.hpp +66 -0
- include/dart/collision/DistanceOption.hpp +80 -0
- include/dart/collision/DistanceResult.hpp +123 -0
- include/dart/collision/Option.hpp +42 -0
- include/dart/collision/RaycastOption.hpp +58 -0
- include/dart/collision/RaycastResult.hpp +80 -0
- include/dart/collision/Result.hpp +42 -0
- include/dart/collision/SmartPointer.hpp +51 -0
- include/dart/collision/all.hpp +17 -0
- include/dart/collision/bullet/BulletCollisionDetector.hpp +168 -0
- include/dart/collision/bullet/BulletCollisionGroup.hpp +98 -0
- include/dart/collision/bullet/BulletCollisionObject.hpp +75 -0
- include/dart/collision/bullet/BulletCollisionShape.hpp +62 -0
- include/dart/collision/bullet/BulletInclude.hpp +47 -0
- include/dart/collision/bullet/BulletTypes.hpp +57 -0
- include/dart/collision/bullet/all.hpp +8 -0
- include/dart/collision/bullet/bullet.hpp +14 -0
- include/dart/collision/bullet/detail/BulletCollisionDispatcher.hpp +70 -0
- include/dart/collision/bullet/detail/BulletOverlapFilterCallback.hpp +72 -0
- include/dart/collision/collision.hpp +14 -0
- include/dart/collision/dart/DARTCollide.hpp +106 -0
- include/dart/collision/dart/DARTCollisionDetector.hpp +109 -0
- include/dart/collision/dart/DARTCollisionGroup.hpp +82 -0
- include/dart/collision/dart/DARTCollisionObject.hpp +63 -0
- include/dart/collision/dart/all.hpp +6 -0
- include/dart/collision/dart/dart.hpp +14 -0
- include/dart/collision/detail/CollisionDetector.hpp +66 -0
- include/dart/collision/detail/CollisionGroup.hpp +287 -0
- include/dart/collision/detail/Contact-impl.hpp +56 -0
- include/dart/collision/detail/UnorderedPairs.hpp +153 -0
- include/dart/collision/fcl/BackwardCompatibility.hpp +145 -0
- include/dart/collision/fcl/CollisionShapes.hpp +374 -0
- include/dart/collision/fcl/FCLCollisionDetector.hpp +204 -0
- include/dart/collision/fcl/FCLCollisionGroup.hpp +95 -0
- include/dart/collision/fcl/FCLCollisionObject.hpp +72 -0
- include/dart/collision/fcl/FCLTypes.hpp +62 -0
- include/dart/collision/fcl/TriTriIntersectionTest.hpp +17 -0
- include/dart/collision/fcl/all.hpp +9 -0
- include/dart/collision/fcl/fcl.hpp +14 -0
- include/dart/collision/fcl/tri_tri_intersection_test.hpp +332 -0
- include/dart/collision/ode/OdeCollisionDetector.hpp +131 -0
- include/dart/collision/ode/OdeCollisionGroup.hpp +87 -0
- include/dart/collision/ode/OdeCollisionObject.hpp +89 -0
- include/dart/collision/ode/OdeTypes.hpp +51 -0
- include/dart/collision/ode/all.hpp +6 -0
- include/dart/collision/ode/detail/OdeBox.hpp +58 -0
- include/dart/collision/ode/detail/OdeCapsule.hpp +58 -0
- include/dart/collision/ode/detail/OdeCylinder.hpp +58 -0
- include/dart/collision/ode/detail/OdeGeom.hpp +83 -0
- include/dart/collision/ode/detail/OdeHeightmap-impl.hpp +170 -0
- include/dart/collision/ode/detail/OdeHeightmap.hpp +70 -0
- include/dart/collision/ode/detail/OdeMesh.hpp +83 -0
- include/dart/collision/ode/detail/OdePlane.hpp +67 -0
- include/dart/collision/ode/detail/OdeSphere.hpp +58 -0
- include/dart/collision/ode/ode.hpp +14 -0
- include/dart/common/Aspect.hpp +215 -0
- include/dart/common/AspectWithVersion.hpp +180 -0
- include/dart/common/CAllocator.hpp +65 -0
- include/dart/common/Castable.hpp +102 -0
- include/dart/common/ClassWithVirtualBase.hpp +47 -0
- include/dart/common/Cloneable.hpp +327 -0
- include/dart/common/Composite.hpp +205 -0
- include/dart/common/CompositeJoiner.hpp +160 -0
- include/dart/common/Console.hpp +75 -0
- include/dart/common/Deprecated.hpp +126 -0
- include/dart/common/EmbeddedAspect.hpp +466 -0
- include/dart/common/Empty.hpp +55 -0
- include/dart/common/Factory.hpp +146 -0
- include/dart/common/Filesystem.hpp +112 -0
- include/dart/common/FreeListAllocator.hpp +162 -0
- include/dart/common/IncludeWindows.hpp +50 -0
- include/dart/common/LocalResource.hpp +76 -0
- include/dart/common/LocalResourceRetriever.hpp +63 -0
- include/dart/common/LockableReference.hpp +166 -0
- include/dart/common/Logging.hpp +146 -0
- include/dart/common/Macros.hpp +78 -0
- include/dart/common/Memory.hpp +215 -0
- include/dart/common/MemoryAllocator.hpp +120 -0
- include/dart/common/MemoryAllocatorDebugger.hpp +98 -0
- include/dart/common/MemoryManager.hpp +189 -0
- include/dart/common/Metaprogramming.hpp +68 -0
- include/dart/common/NameManager.hpp +184 -0
- include/dart/common/Observer.hpp +85 -0
- include/dart/common/Optional.hpp +48 -0
- include/dart/common/Platform.hpp +92 -0
- include/dart/common/PoolAllocator.hpp +141 -0
- include/dart/common/Profile.hpp +56 -0
- include/dart/common/ProxyAspect.hpp +93 -0
- include/dart/common/RequiresAspect.hpp +79 -0
- include/dart/common/Resource.hpp +96 -0
- include/dart/common/ResourceRetriever.hpp +82 -0
- include/dart/common/SharedLibrary.hpp +201 -0
- include/dart/common/Signal.hpp +250 -0
- include/dart/common/Singleton.hpp +85 -0
- include/dart/common/SmartPointer.hpp +63 -0
- include/dart/common/SpecializedForAspect.hpp +207 -0
- include/dart/common/StlAllocator.hpp +111 -0
- include/dart/common/StlHelpers.hpp +61 -0
- include/dart/common/Stopwatch.hpp +143 -0
- include/dart/common/String.hpp +71 -0
- include/dart/common/SubPtr.hpp +17 -0
- include/dart/common/Subject.hpp +84 -0
- include/dart/common/Timer.hpp +119 -0
- include/dart/common/Uri.hpp +229 -0
- include/dart/common/VersionCounter.hpp +68 -0
- include/dart/common/Virtual.hpp +51 -0
- include/dart/common/all.hpp +53 -0
- include/dart/common/common.hpp +14 -0
- include/dart/common/detail/Aspect.hpp +102 -0
- include/dart/common/detail/AspectWithVersion.hpp +455 -0
- include/dart/common/detail/Castable-impl.hpp +109 -0
- include/dart/common/detail/Cloneable.hpp +638 -0
- include/dart/common/detail/Composite.hpp +241 -0
- include/dart/common/detail/CompositeData.hpp +393 -0
- include/dart/common/detail/CompositeJoiner.hpp +128 -0
- include/dart/common/detail/ConnectionBody.hpp +157 -0
- include/dart/common/detail/EmbeddedAspect.hpp +487 -0
- include/dart/common/detail/Factory-impl.hpp +200 -0
- include/dart/common/detail/LockableReference-impl.hpp +156 -0
- include/dart/common/detail/Logging-impl.hpp +162 -0
- include/dart/common/detail/Memory-impl.hpp +66 -0
- include/dart/common/detail/MemoryAllocator-impl.hpp +97 -0
- include/dart/common/detail/MemoryAllocatorDebugger-impl.hpp +201 -0
- include/dart/common/detail/MemoryManager-impl.hpp +102 -0
- include/dart/common/detail/Metaprogramming-impl.hpp +89 -0
- include/dart/common/detail/NameManager.hpp +301 -0
- include/dart/common/detail/NoOp.hpp +57 -0
- include/dart/common/detail/ProxyAspect.hpp +172 -0
- include/dart/common/detail/RequiresAspect.hpp +51 -0
- include/dart/common/detail/SharedLibraryManager.hpp +106 -0
- include/dart/common/detail/Signal.hpp +242 -0
- include/dart/common/detail/Singleton-impl.hpp +74 -0
- include/dart/common/detail/SpecializedForAspect.hpp +331 -0
- include/dart/common/detail/StlAllocator-impl.hpp +108 -0
- include/dart/common/detail/Stopwatch-impl.hpp +242 -0
- include/dart/common/detail/SubPtr.hpp +17 -0
- include/dart/common/detail/TemplateJoinerDispatchMacro.hpp +59 -0
- include/dart/common/detail/sub_ptr.hpp +139 -0
- include/dart/common/sub_ptr.hpp +103 -0
- include/dart/config.hpp +100 -0
- include/dart/constraint/BalanceConstraint.hpp +202 -0
- include/dart/constraint/BallJointConstraint.hpp +142 -0
- include/dart/constraint/BoxedLcpConstraintSolver.hpp +182 -0
- include/dart/constraint/BoxedLcpSolver.hpp +101 -0
- include/dart/constraint/ConstrainedGroup.hpp +120 -0
- include/dart/constraint/ConstraintBase.hpp +141 -0
- include/dart/constraint/ConstraintSolver.hpp +325 -0
- include/dart/constraint/ContactConstraint.hpp +286 -0
- include/dart/constraint/ContactSurface.hpp +191 -0
- include/dart/constraint/DantzigBoxedLcpSolver.hpp +71 -0
- include/dart/constraint/DantzigLCPSolver.hpp +87 -0
- include/dart/constraint/DynamicJointConstraint.hpp +120 -0
- include/dart/constraint/JointConstraint.hpp +182 -0
- include/dart/constraint/JointCoulombFrictionConstraint.hpp +149 -0
- include/dart/constraint/JointLimitConstraint.hpp +185 -0
- include/dart/constraint/LCPSolver.hpp +71 -0
- include/dart/constraint/MimicMotorConstraint.hpp +164 -0
- include/dart/constraint/PGSLCPSolver.hpp +109 -0
- include/dart/constraint/PgsBoxedLcpSolver.hpp +106 -0
- include/dart/constraint/ServoMotorConstraint.hpp +151 -0
- include/dart/constraint/SmartPointer.hpp +69 -0
- include/dart/constraint/SoftContactConstraint.hpp +262 -0
- include/dart/constraint/WeldJointConstraint.hpp +133 -0
- include/dart/constraint/all.hpp +25 -0
- include/dart/constraint/constraint.hpp +14 -0
- include/dart/constraint/detail/ConstraintSolver-impl.hpp +78 -0
- include/dart/dart.hpp +44 -0
- include/dart/dynamics/ArrowShape.hpp +121 -0
- include/dart/dynamics/AssimpInputResourceAdaptor.hpp +129 -0
- include/dart/dynamics/BallJoint.hpp +143 -0
- include/dart/dynamics/BodyNode.hpp +1279 -0
- include/dart/dynamics/BoxShape.hpp +90 -0
- include/dart/dynamics/Branch.hpp +107 -0
- include/dart/dynamics/CapsuleShape.hpp +105 -0
- include/dart/dynamics/Chain.hpp +142 -0
- include/dart/dynamics/CompositeNode.hpp +114 -0
- include/dart/dynamics/ConeShape.hpp +107 -0
- include/dart/dynamics/CylinderShape.hpp +96 -0
- include/dart/dynamics/DegreeOfFreedom.hpp +415 -0
- include/dart/dynamics/EllipsoidShape.hpp +115 -0
- include/dart/dynamics/EndEffector.hpp +158 -0
- include/dart/dynamics/Entity.hpp +258 -0
- include/dart/dynamics/EntityNode.hpp +77 -0
- include/dart/dynamics/EulerJoint.hpp +174 -0
- include/dart/dynamics/FixedFrame.hpp +105 -0
- include/dart/dynamics/FixedJacobianNode.hpp +168 -0
- include/dart/dynamics/Frame.hpp +388 -0
- include/dart/dynamics/FreeJoint.hpp +369 -0
- include/dart/dynamics/GenericJoint.hpp +825 -0
- include/dart/dynamics/Group.hpp +270 -0
- include/dart/dynamics/HeightmapShape.hpp +195 -0
- include/dart/dynamics/HierarchicalIK.hpp +419 -0
- include/dart/dynamics/IkFast.hpp +277 -0
- include/dart/dynamics/Inertia.hpp +176 -0
- include/dart/dynamics/InvalidIndex.hpp +46 -0
- include/dart/dynamics/InverseKinematics.hpp +1401 -0
- include/dart/dynamics/JacobianNode.hpp +312 -0
- include/dart/dynamics/Joint.hpp +1128 -0
- include/dart/dynamics/LineSegmentShape.hpp +140 -0
- include/dart/dynamics/Linkage.hpp +246 -0
- include/dart/dynamics/Marker.hpp +126 -0
- include/dart/dynamics/MeshShape.hpp +225 -0
- include/dart/dynamics/MetaSkeleton.hpp +1034 -0
- include/dart/dynamics/MimicDofProperties.hpp +62 -0
- include/dart/dynamics/MultiSphereConvexHullShape.hpp +111 -0
- include/dart/dynamics/MultiSphereShape.hpp +42 -0
- include/dart/dynamics/Node.hpp +273 -0
- include/dart/dynamics/NodeManagerJoiner.hpp +190 -0
- include/dart/dynamics/PlanarJoint.hpp +161 -0
- include/dart/dynamics/PlaneShape.hpp +105 -0
- include/dart/dynamics/PointCloudShape.hpp +186 -0
- include/dart/dynamics/PointMass.hpp +709 -0
- include/dart/dynamics/PrismaticJoint.hpp +120 -0
- include/dart/dynamics/PyramidShape.hpp +122 -0
- include/dart/dynamics/ReferentialSkeleton.hpp +550 -0
- include/dart/dynamics/RevoluteJoint.hpp +120 -0
- include/dart/dynamics/ScrewJoint.hpp +126 -0
- include/dart/dynamics/Shape.hpp +231 -0
- include/dart/dynamics/ShapeFrame.hpp +291 -0
- include/dart/dynamics/ShapeNode.hpp +134 -0
- include/dart/dynamics/SharedLibraryIkFast.hpp +147 -0
- include/dart/dynamics/SimpleFrame.hpp +247 -0
- include/dart/dynamics/Skeleton.hpp +1350 -0
- include/dart/dynamics/SmartPointer.hpp +185 -0
- include/dart/dynamics/SoftBodyNode.hpp +472 -0
- include/dart/dynamics/SoftMeshShape.hpp +100 -0
- include/dart/dynamics/SpecializedNodeManager.hpp +230 -0
- include/dart/dynamics/SphereShape.hpp +89 -0
- include/dart/dynamics/TemplatedJacobianNode.hpp +128 -0
- include/dart/dynamics/TranslationalJoint.hpp +105 -0
- include/dart/dynamics/TranslationalJoint2D.hpp +156 -0
- include/dart/dynamics/UniversalJoint.hpp +128 -0
- include/dart/dynamics/VoxelGridShape.hpp +171 -0
- include/dart/dynamics/WeldJoint.hpp +116 -0
- include/dart/dynamics/ZeroDofJoint.hpp +562 -0
- include/dart/dynamics/all.hpp +69 -0
- include/dart/dynamics/detail/BasicNodeManager.hpp +539 -0
- include/dart/dynamics/detail/BodyNode.hpp +344 -0
- include/dart/dynamics/detail/BodyNodeAspect.hpp +177 -0
- include/dart/dynamics/detail/BodyNodePtr.hpp +351 -0
- include/dart/dynamics/detail/CompositeNode.hpp +93 -0
- include/dart/dynamics/detail/DegreeOfFreedomPtr.hpp +338 -0
- include/dart/dynamics/detail/EndEffectorAspect.hpp +106 -0
- include/dart/dynamics/detail/EntityNode.hpp +81 -0
- include/dart/dynamics/detail/EntityNodeAspect.hpp +101 -0
- include/dart/dynamics/detail/EulerJointAspect.hpp +93 -0
- include/dart/dynamics/detail/FixedFrameAspect.hpp +58 -0
- include/dart/dynamics/detail/FixedJacobianNode.hpp +55 -0
- include/dart/dynamics/detail/GenericJoint.hpp +2471 -0
- include/dart/dynamics/detail/GenericJointAspect.hpp +353 -0
- include/dart/dynamics/detail/HeightmapShape-impl.hpp +243 -0
- include/dart/dynamics/detail/InverseKinematics.hpp +83 -0
- include/dart/dynamics/detail/InverseKinematicsPtr.hpp +341 -0
- include/dart/dynamics/detail/JointAspect.hpp +161 -0
- include/dart/dynamics/detail/JointPtr.hpp +293 -0
- include/dart/dynamics/detail/MarkerAspect.hpp +68 -0
- include/dart/dynamics/detail/MetaSkeleton-impl.hpp +151 -0
- include/dart/dynamics/detail/Node.hpp +532 -0
- include/dart/dynamics/detail/NodeManagerJoiner.hpp +184 -0
- include/dart/dynamics/detail/NodePtr.hpp +259 -0
- include/dart/dynamics/detail/PlanarJointAspect.hpp +136 -0
- include/dart/dynamics/detail/PrismaticJointAspect.hpp +85 -0
- include/dart/dynamics/detail/RevoluteJointAspect.hpp +86 -0
- include/dart/dynamics/detail/ScrewJointAspect.hpp +90 -0
- include/dart/dynamics/detail/ShapeFrameAspect.hpp +169 -0
- include/dart/dynamics/detail/ShapeNode.hpp +51 -0
- include/dart/dynamics/detail/Skeleton.hpp +92 -0
- include/dart/dynamics/detail/SkeletonAspect.hpp +181 -0
- include/dart/dynamics/detail/SoftBodyNodeAspect.hpp +132 -0
- include/dart/dynamics/detail/SpecializedNodeManager.hpp +324 -0
- include/dart/dynamics/detail/TemplatedJacobianNode.hpp +294 -0
- include/dart/dynamics/detail/TranslationalJoint2DAspect.hpp +140 -0
- include/dart/dynamics/detail/UniversalJointAspect.hpp +86 -0
- include/dart/dynamics/dynamics.hpp +14 -0
- include/dart/dynamics/ikfast.h +345 -0
- include/dart/external/convhull_3d/convhull_3d.h +1878 -0
- include/dart/external/convhull_3d/safe_convhull_3d.h +53 -0
- include/dart/external/odelcpsolver/common.h +418 -0
- include/dart/external/odelcpsolver/error.h +62 -0
- include/dart/external/odelcpsolver/lcp.h +75 -0
- include/dart/external/odelcpsolver/matrix.h +277 -0
- include/dart/external/odelcpsolver/misc.h +82 -0
- include/dart/external/odelcpsolver/odeconfig.h +110 -0
- include/dart/gui/osg/DefaultEventHandler.hpp +237 -0
- include/dart/gui/osg/DragAndDrop.hpp +360 -0
- include/dart/gui/osg/GridVisual.hpp +218 -0
- include/dart/gui/osg/ImGuiHandler.hpp +113 -0
- include/dart/gui/osg/ImGuiViewer.hpp +83 -0
- include/dart/gui/osg/ImGuiWidget.hpp +91 -0
- include/dart/gui/osg/IncludeImGui.hpp +75 -0
- include/dart/gui/osg/InteractiveFrame.hpp +170 -0
- include/dart/gui/osg/MouseEventHandler.hpp +76 -0
- include/dart/gui/osg/RealTimeWorldNode.hpp +126 -0
- include/dart/gui/osg/ShapeFrameNode.hpp +117 -0
- include/dart/gui/osg/SupportPolygonVisual.hpp +202 -0
- include/dart/gui/osg/TrackballManipulator.hpp +97 -0
- include/dart/gui/osg/Utils.hpp +120 -0
- include/dart/gui/osg/Viewer.hpp +427 -0
- include/dart/gui/osg/WorldNode.hpp +211 -0
- include/dart/gui/osg/all.hpp +19 -0
- include/dart/gui/osg/detail/CameraModeCallback.hpp +82 -0
- include/dart/gui/osg/detail/Utils-impl.hpp +160 -0
- include/dart/gui/osg/osg.hpp +14 -0
- include/dart/gui/osg/render/BoxShapeNode.hpp +74 -0
- include/dart/gui/osg/render/CapsuleShapeNode.hpp +75 -0
- include/dart/gui/osg/render/ConeShapeNode.hpp +74 -0
- include/dart/gui/osg/render/CylinderShapeNode.hpp +75 -0
- include/dart/gui/osg/render/EllipsoidShapeNode.hpp +76 -0
- include/dart/gui/osg/render/HeightmapShapeNode.hpp +485 -0
- include/dart/gui/osg/render/LineSegmentShapeNode.hpp +75 -0
- include/dart/gui/osg/render/MeshShapeNode.hpp +86 -0
- include/dart/gui/osg/render/MultiSphereShapeNode.hpp +76 -0
- include/dart/gui/osg/render/PlaneShapeNode.hpp +75 -0
- include/dart/gui/osg/render/PointCloudShapeNode.hpp +85 -0
- include/dart/gui/osg/render/PyramidShapeNode.hpp +75 -0
- include/dart/gui/osg/render/ShapeNode.hpp +126 -0
- include/dart/gui/osg/render/SoftMeshShapeNode.hpp +75 -0
- include/dart/gui/osg/render/SphereShapeNode.hpp +76 -0
- include/dart/gui/osg/render/VoxelGridShapeNode.hpp +83 -0
- include/dart/gui/osg/render/WarningShapeNode.hpp +64 -0
- include/dart/gui/osg/render/all.hpp +19 -0
- include/dart/gui/osg/render/render.hpp +14 -0
- include/dart/integration/EulerIntegrator.hpp +64 -0
- include/dart/integration/Integrator.hpp +104 -0
- include/dart/integration/RK4Integrator.hpp +68 -0
- include/dart/integration/SemiImplicitEulerIntegrator.hpp +64 -0
- include/dart/integration/all.hpp +6 -0
- include/dart/integration/integration.hpp +14 -0
- include/dart/lcpsolver/Lemke.hpp +54 -0
- include/dart/lcpsolver/ODELCPSolver.hpp +88 -0
- include/dart/lcpsolver/all.hpp +4 -0
- include/dart/lcpsolver/lcpsolver.hpp +14 -0
- include/dart/math/ConfigurationSpace.hpp +144 -0
- include/dart/math/Constants.hpp +79 -0
- include/dart/math/Geometry.hpp +659 -0
- include/dart/math/Helpers.hpp +481 -0
- include/dart/math/Icosphere.hpp +106 -0
- include/dart/math/MathTypes.hpp +100 -0
- include/dart/math/Mesh.hpp +108 -0
- include/dart/math/Random.hpp +225 -0
- include/dart/math/TriMesh.hpp +121 -0
- include/dart/math/all.hpp +11 -0
- include/dart/math/detail/ConfigurationSpace.hpp +235 -0
- include/dart/math/detail/Geometry-impl.hpp +126 -0
- include/dart/math/detail/Icosphere-impl.hpp +214 -0
- include/dart/math/detail/Mesh-impl.hpp +151 -0
- include/dart/math/detail/Random-impl.hpp +353 -0
- include/dart/math/detail/TriMesh-impl.hpp +202 -0
- include/dart/math/math.hpp +14 -0
- include/dart/optimizer/Function.hpp +203 -0
- include/dart/optimizer/GenericMultiObjectiveProblem.hpp +174 -0
- include/dart/optimizer/GradientDescentSolver.hpp +240 -0
- include/dart/optimizer/MultiObjectiveProblem.hpp +168 -0
- include/dart/optimizer/MultiObjectiveSolver.hpp +168 -0
- include/dart/optimizer/Population.hpp +108 -0
- include/dart/optimizer/Problem.hpp +191 -0
- include/dart/optimizer/Solver.hpp +182 -0
- include/dart/optimizer/all.hpp +10 -0
- include/dart/optimizer/ipopt/BackwardCompatibility.hpp +43 -0
- include/dart/optimizer/ipopt/IpoptSolver.hpp +223 -0
- include/dart/optimizer/ipopt/all.hpp +4 -0
- include/dart/optimizer/ipopt/ipopt.hpp +14 -0
- include/dart/optimizer/nlopt/NloptSolver.hpp +212 -0
- include/dart/optimizer/nlopt/all.hpp +3 -0
- include/dart/optimizer/nlopt/nlopt.hpp +14 -0
- include/dart/optimizer/optimizer.hpp +14 -0
- include/dart/simulation/Recording.hpp +118 -0
- include/dart/simulation/SmartPointer.hpp +46 -0
- include/dart/simulation/World.hpp +405 -0
- include/dart/simulation/all.hpp +5 -0
- include/dart/simulation/detail/World-impl.hpp +129 -0
- include/dart/simulation/simulation.hpp +14 -0
- include/dart/utils/C3D.hpp +107 -0
- include/dart/utils/CompositeResourceRetriever.hpp +97 -0
- include/dart/utils/DartResourceRetriever.hpp +104 -0
- include/dart/utils/FileInfoC3D.hpp +91 -0
- include/dart/utils/FileInfoDof.hpp +109 -0
- include/dart/utils/FileInfoWorld.hpp +75 -0
- include/dart/utils/PackageResourceRetriever.hpp +118 -0
- include/dart/utils/SkelParser.hpp +70 -0
- include/dart/utils/VskParser.hpp +108 -0
- include/dart/utils/XmlHelpers.hpp +243 -0
- include/dart/utils/all.hpp +14 -0
- include/dart/utils/detail/XmlHelpers-impl.hpp +213 -0
- include/dart/utils/mjcf/MjcfParser.hpp +80 -0
- include/dart/utils/mjcf/all.hpp +3 -0
- include/dart/utils/mjcf/mjcf.hpp +14 -0
- include/dart/utils/sdf/SdfParser.hpp +98 -0
- include/dart/utils/sdf/all.hpp +3 -0
- include/dart/utils/sdf/sdf.hpp +14 -0
- include/dart/utils/urdf/BackwardCompatibility.hpp +52 -0
- include/dart/utils/urdf/DartLoader.hpp +277 -0
- include/dart/utils/urdf/IncludeUrdf.hpp +47 -0
- include/dart/utils/urdf/URDFTypes.hpp +42 -0
- include/dart/utils/urdf/all.hpp +5 -0
- include/dart/utils/urdf/urdf.hpp +14 -0
- include/dart/utils/urdf/urdf_world_parser.hpp +83 -0
- include/dart/utils/utils.hpp +14 -0
- lib64/libdart-collision-bullet.a +0 -0
- lib64/libdart-collision-ode.a +0 -0
- lib64/libdart-external-odelcpsolver.a +0 -0
- lib64/libdart-gui-osg.a +0 -0
- lib64/libdart-optimizer-ipopt.a +0 -0
- lib64/libdart-optimizer-nlopt.a +0 -0
- lib64/libdart-utils-urdf.a +0 -0
- lib64/libdart-utils.a +0 -0
- lib64/libdart.a +0 -0
- lib64/pkgconfig/dart.pc +12 -0
- share/dart/cmake/DARTConfig.cmake +194 -0
- share/dart/cmake/DARTConfigVersion.cmake +65 -0
- share/dart/cmake/DARTFindBullet.cmake +96 -0
- share/dart/cmake/DARTFindEigen3.cmake +9 -0
- share/dart/cmake/DARTFindIPOPT.cmake +20 -0
- share/dart/cmake/DARTFindNLOPT.cmake +17 -0
- share/dart/cmake/DARTFindODE.cmake +23 -0
- share/dart/cmake/DARTFindOpenSceneGraph.cmake +69 -0
- share/dart/cmake/DARTFindassimp.cmake +18 -0
- share/dart/cmake/DARTFindfcl.cmake +23 -0
- share/dart/cmake/DARTFindfmt.cmake +9 -0
- share/dart/cmake/DARTFindimgui.cmake +21 -0
- share/dart/cmake/DARTFindoctomap.cmake +17 -0
- share/dart/cmake/DARTFindspdlog.cmake +9 -0
- share/dart/cmake/DARTFindtinyxml2.cmake +27 -0
- share/dart/cmake/DARTFindurdfdom.cmake +29 -0
- share/dart/cmake/FindIPOPT.cmake +54 -0
- share/dart/cmake/FindNLOPT.cmake +54 -0
- share/dart/cmake/FindODE.cmake +54 -0
- share/dart/cmake/Findassimp.cmake +56 -0
- share/dart/cmake/Findfcl.cmake +67 -0
- share/dart/cmake/Findimgui.cmake +70 -0
- share/dart/cmake/Findtinyxml2.cmake +54 -0
- share/dart/cmake/dart_collision-bulletComponent.cmake +19 -0
- share/dart/cmake/dart_collision-bulletTargets-release.cmake +19 -0
- share/dart/cmake/dart_collision-bulletTargets.cmake +122 -0
- share/dart/cmake/dart_collision-odeComponent.cmake +19 -0
- share/dart/cmake/dart_collision-odeTargets-release.cmake +19 -0
- share/dart/cmake/dart_collision-odeTargets.cmake +122 -0
- share/dart/cmake/dart_dartComponent.cmake +19 -0
- share/dart/cmake/dart_dartTargets-release.cmake +19 -0
- share/dart/cmake/dart_dartTargets.cmake +125 -0
- share/dart/cmake/dart_external-odelcpsolverComponent.cmake +19 -0
- share/dart/cmake/dart_external-odelcpsolverTargets-release.cmake +19 -0
- share/dart/cmake/dart_external-odelcpsolverTargets.cmake +106 -0
- share/dart/cmake/dart_gui-osgComponent.cmake +19 -0
- share/dart/cmake/dart_gui-osgTargets-release.cmake +19 -0
- share/dart/cmake/dart_gui-osgTargets.cmake +122 -0
- share/dart/cmake/dart_optimizer-ipoptComponent.cmake +19 -0
- share/dart/cmake/dart_optimizer-ipoptTargets-release.cmake +19 -0
- share/dart/cmake/dart_optimizer-ipoptTargets.cmake +123 -0
- share/dart/cmake/dart_optimizer-nloptComponent.cmake +19 -0
- share/dart/cmake/dart_optimizer-nloptTargets-release.cmake +19 -0
- share/dart/cmake/dart_optimizer-nloptTargets.cmake +123 -0
- share/dart/cmake/dart_utils-urdfComponent.cmake +19 -0
- share/dart/cmake/dart_utils-urdfTargets-release.cmake +19 -0
- share/dart/cmake/dart_utils-urdfTargets.cmake +122 -0
- share/dart/cmake/dart_utilsComponent.cmake +19 -0
- share/dart/cmake/dart_utilsTargets-release.cmake +19 -0
- share/dart/cmake/dart_utilsTargets.cmake +122 -0
- share/dart/package.xml +42 -0
- share/doc/dart/data/c3d/nick_freeform_001.c3d +0 -0
- share/doc/dart/data/c3d/squat.c3d +0 -0
- share/doc/dart/data/dof/RHand.dof +205 -0
- share/doc/dart/data/dof/fixedHand.dof +205 -0
- share/doc/dart/data/dof/init_Tpose.dof +240 -0
- share/doc/dart/data/dof/same.dof +1003 -0
- share/doc/dart/data/dof/simMotion.dof +1817 -0
- share/doc/dart/data/dof/simMotion1.dof +1355 -0
- share/doc/dart/data/etc/fort.4 +43 -0
- share/doc/dart/data/humanJointLimits/neuralnets/net-larm +0 -0
- share/doc/dart/data/humanJointLimits/neuralnets/net-lleg +0 -0
- share/doc/dart/data/mjcf/openai/LICENSE.md +36 -0
- share/doc/dart/data/mjcf/openai/ant.xml +81 -0
- share/doc/dart/data/mjcf/openai/half_cheetah.xml +96 -0
- share/doc/dart/data/mjcf/openai/hopper.xml +50 -0
- share/doc/dart/data/mjcf/openai/humanoid.xml +121 -0
- share/doc/dart/data/mjcf/openai/humanoidstandup.xml +121 -0
- share/doc/dart/data/mjcf/openai/inverted_double_pendulum.xml +47 -0
- share/doc/dart/data/mjcf/openai/inverted_pendulum.xml +27 -0
- share/doc/dart/data/mjcf/openai/point.xml +31 -0
- share/doc/dart/data/mjcf/openai/pusher.xml +91 -0
- share/doc/dart/data/mjcf/openai/reacher.xml +39 -0
- share/doc/dart/data/mjcf/openai/robotics/fetch/pick_and_place.xml +35 -0
- share/doc/dart/data/mjcf/openai/robotics/fetch/push.xml +32 -0
- share/doc/dart/data/mjcf/openai/robotics/fetch/reach.xml +26 -0
- share/doc/dart/data/mjcf/openai/robotics/fetch/robot.xml +123 -0
- share/doc/dart/data/mjcf/openai/robotics/fetch/shared.xml +66 -0
- share/doc/dart/data/mjcf/openai/robotics/fetch/slide.xml +32 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/.get +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/base_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/bellows_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/elbow_flex_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/estop_link.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/forearm_roll_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/gripper_link.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/head_pan_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/head_tilt_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/l_wheel_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/laser_link.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/r_wheel_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/shoulder_lift_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/shoulder_pan_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/torso_fixed_link.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/torso_lift_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/upperarm_roll_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/wrist_flex_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/wrist_roll_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/textures/block.png +0 -0
- share/doc/dart/data/mjcf/openai/robotics/textures/block_hidden.png +0 -0
- share/doc/dart/data/mjcf/openai/striker.xml +101 -0
- share/doc/dart/data/mjcf/openai/swimmer.xml +39 -0
- share/doc/dart/data/mjcf/openai/thrower.xml +127 -0
- share/doc/dart/data/mjcf/openai/walker2d.xml +62 -0
- share/doc/dart/data/mjcf/test/default.xml +17 -0
- share/doc/dart/data/mjcf/test/include_default.xml +8 -0
- share/doc/dart/data/mjcf/test/include_main.xml +12 -0
- share/doc/dart/data/obj/Body_Hip.obj +22830 -0
- share/doc/dart/data/obj/BoxSmall.obj +23 -0
- share/doc/dart/data/obj/foot.obj +10970 -0
- share/doc/dart/data/other/torus1.path +11991 -0
- share/doc/dart/data/other/torus1.tris +5329 -0
- share/doc/dart/data/other/torus2.path +11991 -0
- share/doc/dart/data/other/torus2.tris +12961 -0
- share/doc/dart/data/screencap/.KEEP +0 -0
- share/doc/dart/data/sdf/atlas/atlas_v3.urdf +914 -0
- share/doc/dart/data/sdf/atlas/atlas_v3_no_head.sdf +1541 -0
- share/doc/dart/data/sdf/atlas/atlas_v3_no_head.urdf +914 -0
- share/doc/dart/data/sdf/atlas/atlas_v3_no_head_soft_feet.sdf +1567 -0
- share/doc/dart/data/sdf/atlas/ground.urdf +28 -0
- share/doc/dart/data/sdf/atlas/head.dae +8607 -0
- share/doc/dart/data/sdf/atlas/head.stl +0 -0
- share/doc/dart/data/sdf/atlas/head_camera.dae +2326 -0
- share/doc/dart/data/sdf/atlas/head_camera.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_clav.dae +1278 -0
- share/doc/dart/data/sdf/atlas/l_clav.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_farm.dae +1204 -0
- share/doc/dart/data/sdf/atlas/l_farm.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_foot.dae +1330 -0
- share/doc/dart/data/sdf/atlas/l_foot.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_hand.dae +964 -0
- share/doc/dart/data/sdf/atlas/l_hand.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_larm.dae +1378 -0
- share/doc/dart/data/sdf/atlas/l_larm.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_lglut.dae +897 -0
- share/doc/dart/data/sdf/atlas/l_lglut.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_lleg.dae +6660 -0
- share/doc/dart/data/sdf/atlas/l_lleg.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_scap.dae +1531 -0
- share/doc/dart/data/sdf/atlas/l_scap.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_talus.dae +374 -0
- share/doc/dart/data/sdf/atlas/l_talus.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_uarm.dae +1204 -0
- share/doc/dart/data/sdf/atlas/l_uarm.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_uglut.dae +398 -0
- share/doc/dart/data/sdf/atlas/l_uglut.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_uleg.dae +9087 -0
- share/doc/dart/data/sdf/atlas/l_uleg.stl +0 -0
- share/doc/dart/data/sdf/atlas/ltorso.dae +614 -0
- share/doc/dart/data/sdf/atlas/ltorso.stl +0 -0
- share/doc/dart/data/sdf/atlas/mtorso.dae +266 -0
- share/doc/dart/data/sdf/atlas/mtorso.stl +0 -0
- share/doc/dart/data/sdf/atlas/pelvis.dae +8727 -0
- share/doc/dart/data/sdf/atlas/pelvis.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_clav.dae +1278 -0
- share/doc/dart/data/sdf/atlas/r_clav.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_farm.dae +1204 -0
- share/doc/dart/data/sdf/atlas/r_farm.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_foot.dae +1330 -0
- share/doc/dart/data/sdf/atlas/r_foot.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_hand.dae +904 -0
- share/doc/dart/data/sdf/atlas/r_hand.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_larm.dae +1378 -0
- share/doc/dart/data/sdf/atlas/r_larm.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_lglut.dae +897 -0
- share/doc/dart/data/sdf/atlas/r_lglut.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_lleg.dae +6661 -0
- share/doc/dart/data/sdf/atlas/r_lleg.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_scap.dae +1531 -0
- share/doc/dart/data/sdf/atlas/r_scap.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_talus.dae +374 -0
- share/doc/dart/data/sdf/atlas/r_talus.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_uarm.dae +1144 -0
- share/doc/dart/data/sdf/atlas/r_uarm.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_uglut.dae +398 -0
- share/doc/dart/data/sdf/atlas/r_uglut.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_uleg.dae +9087 -0
- share/doc/dart/data/sdf/atlas/r_uleg.stl +0 -0
- share/doc/dart/data/sdf/atlas/utorso.dae +28342 -0
- share/doc/dart/data/sdf/atlas/utorso.stl +0 -0
- share/doc/dart/data/sdf/atlas/utorso_mod.dae +16508 -0
- share/doc/dart/data/sdf/atlas/utorso_mod.stl +0 -0
- share/doc/dart/data/sdf/atlas/utorso_pack.dae +8521 -0
- share/doc/dart/data/sdf/atlas/utorso_pack.stl +0 -0
- share/doc/dart/data/sdf/benchmark.world +2510 -0
- share/doc/dart/data/sdf/double_pendulum.world +168 -0
- share/doc/dart/data/sdf/double_pendulum_with_base.world +263 -0
- share/doc/dart/data/sdf/empty.world +13 -0
- share/doc/dart/data/sdf/ground.world +48 -0
- share/doc/dart/data/sdf/materials/textures/atlas_cage_and_camera_diffuse_flat.jpg +0 -0
- share/doc/dart/data/sdf/materials/textures/drc_extremities_diffuse.jpg +0 -0
- share/doc/dart/data/sdf/materials/textures/drc_labels_1.jpg +0 -0
- share/doc/dart/data/sdf/materials/textures/drc_torso_head_diffuse.jpg +0 -0
- share/doc/dart/data/sdf/materials/textures/extremities_diffuse_unplugged.jpg +0 -0
- share/doc/dart/data/sdf/materials/textures/right_leg_diffuse_unplugged.jpg +0 -0
- share/doc/dart/data/sdf/materials/textures/torso_diffuse_unplugged.jpg +0 -0
- share/doc/dart/data/sdf/quad.sdf +867 -0
- share/doc/dart/data/sdf/test/force_torque_test.world +173 -0
- share/doc/dart/data/sdf/test/force_torque_test2.world +214 -0
- share/doc/dart/data/sdf/test/issue1193_revolute_test.sdf +70 -0
- share/doc/dart/data/sdf/test/issue1193_revolute_with_offset_test.sdf +70 -0
- share/doc/dart/data/sdf/test/issue1624_cubes.sdf +5037 -0
- share/doc/dart/data/sdf/test/single_bodynode_skeleton.world +55 -0
- share/doc/dart/data/sdf/test/test_issue1583.model +45 -0
- share/doc/dart/data/sdf/test/test_issue1596.model +182 -0
- share/doc/dart/data/sdf/test/test_skeleton_joint.world +278 -0
- share/doc/dart/data/skel/biped.skel +850 -0
- share/doc/dart/data/skel/bullet_collision.skel +174 -0
- share/doc/dart/data/skel/chain.skel +212 -0
- share/doc/dart/data/skel/cube.skel +71 -0
- share/doc/dart/data/skel/cubes.skel +137 -0
- share/doc/dart/data/skel/empty.skel +10 -0
- share/doc/dart/data/skel/freeChain.skel +212 -0
- share/doc/dart/data/skel/fullbody1.skel +1177 -0
- share/doc/dart/data/skel/ground.skel +31 -0
- share/doc/dart/data/skel/joint_limit.skel +123 -0
- share/doc/dart/data/skel/kima/abdomen.dae +18933 -0
- share/doc/dart/data/skel/kima/head.dae +34634 -0
- share/doc/dart/data/skel/kima/kima_human_edited.skel +933 -0
- share/doc/dart/data/skel/kima/kima_human_left_arm.skel +323 -0
- share/doc/dart/data/skel/kima/kima_human_left_leg.skel +327 -0
- share/doc/dart/data/skel/kima/l-clavicle.dae +20111 -0
- share/doc/dart/data/skel/kima/l-foot.dae +28208 -0
- share/doc/dart/data/skel/kima/pelvis.dae +35919 -0
- share/doc/dart/data/skel/kima/r-clavicle.dae +20090 -0
- share/doc/dart/data/skel/kima/thorax.dae +47337 -0
- share/doc/dart/data/skel/mesh_collision.skel +137 -0
- share/doc/dart/data/skel/shapes.skel +378 -0
- share/doc/dart/data/skel/skateboard.skel +222 -0
- share/doc/dart/data/skel/softBodies.skel +284 -0
- share/doc/dart/data/skel/soft_cubes.skel +134 -0
- share/doc/dart/data/skel/soft_open_chain.skel +241 -0
- share/doc/dart/data/skel/sphere.skel +74 -0
- share/doc/dart/data/skel/spheres.skel +118 -0
- share/doc/dart/data/skel/test/SimplePendulum.skel +141 -0
- share/doc/dart/data/skel/test/ball_joints.skel +49 -0
- share/doc/dart/data/skel/test/box_stacking.skel +346 -0
- share/doc/dart/data/skel/test/boxes.skel +52 -0
- share/doc/dart/data/skel/test/chainwhipa.skel +193 -0
- share/doc/dart/data/skel/test/collision_of_prescribed_joints_test.skel +249 -0
- share/doc/dart/data/skel/test/dof_attribute_test.skel +206 -0
- share/doc/dart/data/skel/test/double_pendulum.skel +76 -0
- share/doc/dart/data/skel/test/double_pendulum_ball_joint.skel +76 -0
- share/doc/dart/data/skel/test/double_pendulum_euler_joint.skel +78 -0
- share/doc/dart/data/skel/test/double_pendulum_with_base.skel +1390 -0
- share/doc/dart/data/skel/test/drop.skel +116 -0
- share/doc/dart/data/skel/test/drop_BENCHMARK.skel +10 -0
- share/doc/dart/data/skel/test/drop_unrotated_box.skel +156 -0
- share/doc/dart/data/skel/test/empty.skel +10 -0
- share/doc/dart/data/skel/test/file_info_world_test.skel +1177 -0
- share/doc/dart/data/skel/test/free_joints.skel +49 -0
- share/doc/dart/data/skel/test/gazebo/drop_test.skel +161 -0
- share/doc/dart/data/skel/test/gazebo/force_torque_test.skel +138 -0
- share/doc/dart/data/skel/test/gazebo/force_torque_test2.skel +171 -0
- share/doc/dart/data/skel/test/hybrid_dynamics_test.skel +172 -0
- share/doc/dart/data/skel/test/joint_actuator_type_test.skel +185 -0
- share/doc/dart/data/skel/test/joint_dynamics_elements_test.skel +103 -0
- share/doc/dart/data/skel/test/joint_friction_test.skel +80 -0
- share/doc/dart/data/skel/test/joint_limit_test.skel +80 -0
- share/doc/dart/data/skel/test/planar_joint.skel +167 -0
- share/doc/dart/data/skel/test/serial_chain_BENCHMARK.skel +10 -0
- share/doc/dart/data/skel/test/serial_chain_ball_joint.skel +212 -0
- share/doc/dart/data/skel/test/serial_chain_ball_joint_20.skel +412 -0
- share/doc/dart/data/skel/test/serial_chain_ball_joint_40.skel +812 -0
- share/doc/dart/data/skel/test/serial_chain_eulerxyz_joint.skel +224 -0
- share/doc/dart/data/skel/test/serial_chain_revolute_joint.skel +244 -0
- share/doc/dart/data/skel/test/simple_tree_structure.skel +108 -0
- share/doc/dart/data/skel/test/simple_tree_structure_ball_joint.skel +108 -0
- share/doc/dart/data/skel/test/simple_tree_structure_euler_joint.skel +111 -0
- share/doc/dart/data/skel/test/single_pendulum.skel +55 -0
- share/doc/dart/data/skel/test/single_pendulum_ball_joint.skel +55 -0
- share/doc/dart/data/skel/test/single_pendulum_euler_joint.skel +56 -0
- share/doc/dart/data/skel/test/spheres.skel +118 -0
- share/doc/dart/data/skel/test/test_adaptive_deformable.skel +88 -0
- share/doc/dart/data/skel/test/test_articulated_bodies.skel +112 -0
- share/doc/dart/data/skel/test/test_articulated_bodies_10bodies.skel +401 -0
- share/doc/dart/data/skel/test/test_double_pendulum.skel +105 -0
- share/doc/dart/data/skel/test/test_drop_box.skel +87 -0
- share/doc/dart/data/skel/test/test_drop_box_offset.skel +87 -0
- share/doc/dart/data/skel/test/test_drop_low_stiffness.skel +86 -0
- share/doc/dart/data/skel/test/test_drop_sphere.skel +86 -0
- share/doc/dart/data/skel/test/test_shapes.skel +324 -0
- share/doc/dart/data/skel/test/test_single_body.skel +55 -0
- share/doc/dart/data/skel/test/test_single_pendulum.skel +55 -0
- share/doc/dart/data/skel/test/translational_joints.skel +49 -0
- share/doc/dart/data/skel/test/tree_structure.skel +428 -0
- share/doc/dart/data/skel/test/tree_structure_ball_joint.skel +441 -0
- share/doc/dart/data/skel/test/tree_structure_euler_joint.skel +441 -0
- share/doc/dart/data/skel/two_cubes.skel +118 -0
- share/doc/dart/data/skel/vehicle.skel +322 -0
- share/doc/dart/data/test/hello_world.txt +1 -0
- share/doc/dart/data/urdf/KR5/KR5 sixx R650.urdf +397 -0
- share/doc/dart/data/urdf/KR5/ground.urdf +28 -0
- share/doc/dart/data/urdf/KR5/meshes/base_link.STL +0 -0
- share/doc/dart/data/urdf/KR5/meshes/bicep.STL +0 -0
- share/doc/dart/data/urdf/KR5/meshes/elbow.STL +0 -0
- share/doc/dart/data/urdf/KR5/meshes/forearm.STL +0 -0
- share/doc/dart/data/urdf/KR5/meshes/palm.STL +0 -0
- share/doc/dart/data/urdf/KR5/meshes/shoulder.STL +0 -0
- share/doc/dart/data/urdf/KR5/meshes/wrist.STL +0 -0
- share/doc/dart/data/urdf/drchubo/CMakeLists.txt +5 -0
- share/doc/dart/data/urdf/drchubo/drchubo.urdf +1508 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LAP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LAR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LEP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LF1.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LF2.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LF3.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LHP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LHR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LHY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LKP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LSP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LSR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LSY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LWP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LWR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LWY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_NK1_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_NK2.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_NKY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RAP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RAR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_REP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RF1.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RF2.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RF3.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RHP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RHR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RHY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RKP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RSP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RSR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RSY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RWP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RWR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RWY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_TSY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_Torso_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/package.xml +11 -0
- share/doc/dart/data/urdf/test/invalid.urdf +1 -0
- share/doc/dart/data/urdf/test/invalid_mesh.stl +1 -0
- share/doc/dart/data/urdf/test/invalid_mesh.urdf +10 -0
- share/doc/dart/data/urdf/test/issue838.urdf +86 -0
- share/doc/dart/data/urdf/test/joint_properties.urdf +60 -0
- share/doc/dart/data/urdf/test/missing_mesh.urdf +10 -0
- share/doc/dart/data/urdf/test/missing_package.urdf +10 -0
- share/doc/dart/data/urdf/test/primitive_geometry.urdf +12 -0
- share/doc/dart/data/urdf/test/testWorld.urdf +9 -0
- share/doc/dart/data/urdf/wam/meshes/images/base_gray_128x.jpg +0 -0
- share/doc/dart/data/urdf/wam/meshes/images/forearm_256x.jpg +0 -0
- share/doc/dart/data/urdf/wam/meshes/images/lpu_128x.jpg +0 -0
- share/doc/dart/data/urdf/wam/meshes/images/shoulder_256x.jpg +0 -0
- share/doc/dart/data/urdf/wam/meshes/images/upperarm_128x.jpg +0 -0
- share/doc/dart/data/urdf/wam/meshes/images/wrist_yaw_128x.jpg +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam1.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam1.dae +187 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam1_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam2.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam2.dae +187 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam2_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam3.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam3.dae +187 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam3_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam4.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam4.dae +187 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam4_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam5.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam5.dae +187 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam5_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam6.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam6.dae +187 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam6_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam7.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam7.dae +137 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam7_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam_base.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam_base.dae +103 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam_base_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/wam.urdf +230 -0
- share/doc/dart/data/vsk/Nick01.vsk +398 -0
- share/doc/dart/data/vsk/SehoonVSK3.vsk +398 -0
- share/doc/dart/data/vsk/Yuting.vsk +398 -0
- share/doc/dart/data/vsk/test/empty.vsk +3 -0
- share/doc/dart/examples/CMakeLists.txt +44 -0
- share/doc/dart/examples/README.md +33 -0
- share/doc/dart/examples/add_delete_skels/CMakeLists.txt +19 -0
- share/doc/dart/examples/add_delete_skels/main.cpp +165 -0
- share/doc/dart/examples/atlas_puppet/CMakeLists.txt +19 -0
- share/doc/dart/examples/atlas_puppet/README.md +20 -0
- share/doc/dart/examples/atlas_puppet/main.cpp +930 -0
- share/doc/dart/examples/atlas_simbicon/AtlasSimbiconEventHandler.cpp +71 -0
- share/doc/dart/examples/atlas_simbicon/AtlasSimbiconEventHandler.hpp +56 -0
- share/doc/dart/examples/atlas_simbicon/AtlasSimbiconWidget.cpp +187 -0
- share/doc/dart/examples/atlas_simbicon/AtlasSimbiconWidget.hpp +85 -0
- share/doc/dart/examples/atlas_simbicon/AtlasSimbiconWorldNode.cpp +134 -0
- share/doc/dart/examples/atlas_simbicon/AtlasSimbiconWorldNode.hpp +75 -0
- share/doc/dart/examples/atlas_simbicon/CMakeLists.txt +19 -0
- share/doc/dart/examples/atlas_simbicon/Controller.cpp +996 -0
- share/doc/dart/examples/atlas_simbicon/Controller.hpp +203 -0
- share/doc/dart/examples/atlas_simbicon/README.md +20 -0
- share/doc/dart/examples/atlas_simbicon/State.cpp +674 -0
- share/doc/dart/examples/atlas_simbicon/State.hpp +336 -0
- share/doc/dart/examples/atlas_simbicon/StateMachine.cpp +222 -0
- share/doc/dart/examples/atlas_simbicon/StateMachine.hpp +134 -0
- share/doc/dart/examples/atlas_simbicon/TerminalCondition.cpp +111 -0
- share/doc/dart/examples/atlas_simbicon/TerminalCondition.hpp +102 -0
- share/doc/dart/examples/atlas_simbicon/main.cpp +102 -0
- share/doc/dart/examples/biped_stand/CMakeLists.txt +19 -0
- share/doc/dart/examples/biped_stand/README.md +20 -0
- share/doc/dart/examples/biped_stand/main.cpp +287 -0
- share/doc/dart/examples/box_stacking/CMakeLists.txt +19 -0
- share/doc/dart/examples/box_stacking/README.md +20 -0
- share/doc/dart/examples/box_stacking/main.cpp +417 -0
- share/doc/dart/examples/boxes/CMakeLists.txt +19 -0
- share/doc/dart/examples/boxes/README.md +20 -0
- share/doc/dart/examples/boxes/main.cpp +157 -0
- share/doc/dart/examples/drag_and_drop/CMakeLists.txt +19 -0
- share/doc/dart/examples/drag_and_drop/README.md +20 -0
- share/doc/dart/examples/drag_and_drop/main.cpp +101 -0
- share/doc/dart/examples/empty/CMakeLists.txt +19 -0
- share/doc/dart/examples/empty/README.md +20 -0
- share/doc/dart/examples/empty/main.cpp +164 -0
- share/doc/dart/examples/fetch/CMakeLists.txt +19 -0
- share/doc/dart/examples/fetch/README.md +20 -0
- share/doc/dart/examples/fetch/main.cpp +246 -0
- share/doc/dart/examples/hardcoded_design/CMakeLists.txt +19 -0
- share/doc/dart/examples/hardcoded_design/HardcodedEventHandler.cpp +71 -0
- share/doc/dart/examples/hardcoded_design/HardcodedEventHandler.hpp +56 -0
- share/doc/dart/examples/hardcoded_design/README.md +27 -0
- share/doc/dart/examples/hardcoded_design/main.cpp +186 -0
- share/doc/dart/examples/heightmap/CMakeLists.txt +19 -0
- share/doc/dart/examples/heightmap/README.md +20 -0
- share/doc/dart/examples/heightmap/main.cpp +460 -0
- share/doc/dart/examples/hello_world/CMakeLists.txt +19 -0
- share/doc/dart/examples/hello_world/README.md +20 -0
- share/doc/dart/examples/hello_world/main.cpp +114 -0
- share/doc/dart/examples/hubo_puppet/CMakeLists.txt +19 -0
- share/doc/dart/examples/hubo_puppet/README.md +20 -0
- share/doc/dart/examples/hubo_puppet/main.cpp +1464 -0
- share/doc/dart/examples/human_joint_limits/CMakeLists.txt +49 -0
- share/doc/dart/examples/human_joint_limits/HumanArmJointLimitConstraint.cpp +411 -0
- share/doc/dart/examples/human_joint_limits/HumanArmJointLimitConstraint.hpp +182 -0
- share/doc/dart/examples/human_joint_limits/HumanLegJointLimitConstraint.cpp +432 -0
- share/doc/dart/examples/human_joint_limits/HumanLegJointLimitConstraint.hpp +179 -0
- share/doc/dart/examples/human_joint_limits/main.cpp +157 -0
- share/doc/dart/examples/hybrid_dynamics/CMakeLists.txt +19 -0
- share/doc/dart/examples/hybrid_dynamics/README.md +17 -0
- share/doc/dart/examples/hybrid_dynamics/main.cpp +187 -0
- share/doc/dart/examples/imgui/CMakeLists.txt +19 -0
- share/doc/dart/examples/imgui/README.md +20 -0
- share/doc/dart/examples/imgui/main.cpp +289 -0
- share/doc/dart/examples/joint_constraints/CMakeLists.txt +19 -0
- share/doc/dart/examples/joint_constraints/Controller.cpp +110 -0
- share/doc/dart/examples/joint_constraints/Controller.hpp +105 -0
- share/doc/dart/examples/joint_constraints/README.md +22 -0
- share/doc/dart/examples/joint_constraints/main.cpp +242 -0
- share/doc/dart/examples/mixed_chain/CMakeLists.txt +19 -0
- share/doc/dart/examples/mixed_chain/README.md +35 -0
- share/doc/dart/examples/mixed_chain/main.cpp +188 -0
- share/doc/dart/examples/operational_space_control/CMakeLists.txt +19 -0
- share/doc/dart/examples/operational_space_control/README.md +20 -0
- share/doc/dart/examples/operational_space_control/main.cpp +338 -0
- share/doc/dart/examples/point_cloud/CMakeLists.txt +19 -0
- share/doc/dart/examples/point_cloud/README.md +20 -0
- share/doc/dart/examples/point_cloud/main.cpp +740 -0
- share/doc/dart/examples/rerun/CMakeLists.txt +19 -0
- share/doc/dart/examples/rigid_chain/CMakeLists.txt +19 -0
- share/doc/dart/examples/rigid_chain/README.md +19 -0
- share/doc/dart/examples/rigid_chain/main.cpp +110 -0
- share/doc/dart/examples/rigid_cubes/CMakeLists.txt +19 -0
- share/doc/dart/examples/rigid_cubes/README.md +91 -0
- share/doc/dart/examples/rigid_cubes/main.cpp +201 -0
- share/doc/dart/examples/rigid_loop/CMakeLists.txt +19 -0
- share/doc/dart/examples/rigid_loop/README.md +34 -0
- share/doc/dart/examples/rigid_loop/main.cpp +127 -0
- share/doc/dart/examples/rigid_shapes/CMakeLists.txt +19 -0
- share/doc/dart/examples/rigid_shapes/README.md +19 -0
- share/doc/dart/examples/rigid_shapes/main.cpp +250 -0
- share/doc/dart/examples/simple_frames/CMakeLists.txt +19 -0
- share/doc/dart/examples/simple_frames/README.md +27 -0
- share/doc/dart/examples/simple_frames/main.cpp +124 -0
- share/doc/dart/examples/simulation_event_handler/CMakeLists.txt +19 -0
- share/doc/dart/examples/simulation_event_handler/README.md +189 -0
- share/doc/dart/examples/simulation_event_handler/SimulationEventHandler.cpp +572 -0
- share/doc/dart/examples/simulation_event_handler/SimulationEventHandler.hpp +211 -0
- share/doc/dart/examples/simulation_event_handler/main.cpp +277 -0
- share/doc/dart/examples/soft_bodies/CMakeLists.txt +19 -0
- share/doc/dart/examples/soft_bodies/README.md +20 -0
- share/doc/dart/examples/soft_bodies/main.cpp +219 -0
- share/doc/dart/examples/speed_test/CMakeLists.txt +19 -0
- share/doc/dart/examples/speed_test/README.md +20 -0
- share/doc/dart/examples/speed_test/main.cpp +250 -0
- share/doc/dart/examples/tinkertoy/CMakeLists.txt +19 -0
- share/doc/dart/examples/tinkertoy/README.md +20 -0
- share/doc/dart/examples/tinkertoy/TinkertoyWidget.cpp +208 -0
- share/doc/dart/examples/tinkertoy/TinkertoyWidget.hpp +70 -0
- share/doc/dart/examples/tinkertoy/TinkertoyWorldNode.cpp +35 -0
- share/doc/dart/examples/tinkertoy/TinkertoyWorldNode.hpp +470 -0
- share/doc/dart/examples/tinkertoy/main.cpp +186 -0
- share/doc/dart/examples/vehicle/CMakeLists.txt +19 -0
- share/doc/dart/examples/vehicle/README.md +22 -0
- share/doc/dart/examples/vehicle/main.cpp +195 -0
- share/doc/dart/examples/wam_ikfast/CMakeLists.txt +22 -0
- share/doc/dart/examples/wam_ikfast/Helpers.cpp +148 -0
- share/doc/dart/examples/wam_ikfast/Helpers.hpp +46 -0
- share/doc/dart/examples/wam_ikfast/InputHandler.cpp +110 -0
- share/doc/dart/examples/wam_ikfast/InputHandler.hpp +73 -0
- share/doc/dart/examples/wam_ikfast/README.md +20 -0
- share/doc/dart/examples/wam_ikfast/WamWorld.cpp +46 -0
- share/doc/dart/examples/wam_ikfast/WamWorld.hpp +53 -0
- share/doc/dart/examples/wam_ikfast/ikfast/CMakeLists.txt +11 -0
- share/doc/dart/examples/wam_ikfast/ikfast/ikfast71.Transform6D.4_6_9_10_11_12_f8.cpp +14930 -0
- share/doc/dart/examples/wam_ikfast/osgWamIkFast.cpp +96 -0
- share/doc/dart/tutorials/CMakeLists.txt +12 -0
- share/doc/dart/tutorials/README.md +45 -0
- share/doc/dart/tutorials/tutorial_biped/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_biped/README +18 -0
- share/doc/dart/tutorials/tutorial_biped/main.cpp +374 -0
- share/doc/dart/tutorials/tutorial_biped_finished/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_biped_finished/README +18 -0
- share/doc/dart/tutorials/tutorial_biped_finished/main.cpp +532 -0
- share/doc/dart/tutorials/tutorial_collisions/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_collisions/README +18 -0
- share/doc/dart/tutorials/tutorial_collisions/main.cpp +506 -0
- share/doc/dart/tutorials/tutorial_collisions_finished/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_collisions_finished/README +18 -0
- share/doc/dart/tutorials/tutorial_collisions_finished/main.cpp +679 -0
- share/doc/dart/tutorials/tutorial_dominoes/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_dominoes/README +18 -0
- share/doc/dart/tutorials/tutorial_dominoes/main.cpp +394 -0
- share/doc/dart/tutorials/tutorial_dominoes_finished/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_dominoes_finished/README +18 -0
- share/doc/dart/tutorials/tutorial_dominoes_finished/main.cpp +559 -0
- share/doc/dart/tutorials/tutorial_multi_pendulum/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_multi_pendulum/README +18 -0
- share/doc/dart/tutorials/tutorial_multi_pendulum/main.cpp +443 -0
- share/doc/dart/tutorials/tutorial_multi_pendulum_finished/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_multi_pendulum_finished/README +18 -0
- share/doc/dart/tutorials/tutorial_multi_pendulum_finished/main.cpp +512 -0
|
@@ -0,0 +1,1508 @@
|
|
|
1
|
+
<robot name="drchubo">
|
|
2
|
+
<link name="Body_Torso">
|
|
3
|
+
<inertial>
|
|
4
|
+
<origin rpy="0 0 0" xyz="0.00186303110078396 -0.000700932863027737 0.144864941081362" />
|
|
5
|
+
<mass value="8.95351612283643" />
|
|
6
|
+
<inertia ixx="0.097115701663788" ixy="-0.000131502652256357" ixz="-0.000536351319855448" iyy="0.0782182891825729" iyz="0.000190893230363873" izz="0.102805257612153" />
|
|
7
|
+
</inertial>
|
|
8
|
+
<visual>
|
|
9
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
10
|
+
<geometry>
|
|
11
|
+
<mesh filename="package://drchubo/meshes/convhull_Torso_merged.stl" />
|
|
12
|
+
</geometry>
|
|
13
|
+
<material name="">
|
|
14
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
15
|
+
</material>
|
|
16
|
+
</visual>
|
|
17
|
+
<collision>
|
|
18
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
19
|
+
<geometry>
|
|
20
|
+
<mesh filename="package://drchubo/meshes/convhull_Torso_merged.stl" />
|
|
21
|
+
</geometry>
|
|
22
|
+
</collision>
|
|
23
|
+
</link>
|
|
24
|
+
<link name="Body_LSP">
|
|
25
|
+
<inertial>
|
|
26
|
+
<origin rpy="0 0 0" xyz="0.0125095477277756 0.0682567187642331 -0.000101296692959801" />
|
|
27
|
+
<mass value="0.512814669817052" />
|
|
28
|
+
<inertia ixx="0.00105971934903801" ixy="0.000159674623034314" ixz="-8.62192186714616E-07" iyy="0.00101602821932241" iyz="6.2966884306785E-06" izz="0.00161449029531154" />
|
|
29
|
+
</inertial>
|
|
30
|
+
<visual>
|
|
31
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
32
|
+
<geometry>
|
|
33
|
+
<mesh filename="package://drchubo/meshes/convhull_LSP_merged.stl" />
|
|
34
|
+
</geometry>
|
|
35
|
+
<material name="">
|
|
36
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
37
|
+
</material>
|
|
38
|
+
</visual>
|
|
39
|
+
<collision>
|
|
40
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
41
|
+
<geometry>
|
|
42
|
+
<mesh filename="package://drchubo/meshes/convhull_LSP_merged.stl" />
|
|
43
|
+
</geometry>
|
|
44
|
+
</collision>
|
|
45
|
+
</link>
|
|
46
|
+
<joint name="LSP" type="revolute">
|
|
47
|
+
<origin rpy="-0 0 -0" xyz="0.0010 0.1305 0.2061" />
|
|
48
|
+
<parent link="Body_Torso" />
|
|
49
|
+
<child link="Body_LSP" />
|
|
50
|
+
<axis xyz="0 1 0" />
|
|
51
|
+
<limit effort="100.0" lower="-3.14" upper="3.14" velocity="10.0" />
|
|
52
|
+
</joint>
|
|
53
|
+
<link name="Body_LSR">
|
|
54
|
+
<inertial>
|
|
55
|
+
<origin rpy="0 0 0" xyz="-0.0353989625513559 -0.000442459951967733 -0.0177626332998561" />
|
|
56
|
+
<mass value="0.478101234588499" />
|
|
57
|
+
<inertia ixx="0.000470991608414918" ixy="-9.0901553039533E-08" ixz="-1.21957572289795E-05" iyy="0.00056865982747998" iyz="7.94197935321249E-06" izz="0.000377112142444654" />
|
|
58
|
+
</inertial>
|
|
59
|
+
<visual>
|
|
60
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
61
|
+
<geometry>
|
|
62
|
+
<mesh filename="package://drchubo/meshes/convhull_LSR_merged.stl" />
|
|
63
|
+
</geometry>
|
|
64
|
+
<material name="">
|
|
65
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
66
|
+
</material>
|
|
67
|
+
</visual>
|
|
68
|
+
<collision>
|
|
69
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
70
|
+
<geometry>
|
|
71
|
+
<mesh filename="package://drchubo/meshes/convhull_LSR_merged.stl" />
|
|
72
|
+
</geometry>
|
|
73
|
+
</collision>
|
|
74
|
+
</link>
|
|
75
|
+
<joint name="LSR" type="revolute">
|
|
76
|
+
<origin rpy="0 0 0" xyz="0.033 0.099 0" />
|
|
77
|
+
<parent link="Body_LSP" />
|
|
78
|
+
<child link="Body_LSR" />
|
|
79
|
+
<axis xyz="1 0 0" />
|
|
80
|
+
<limit effort="100.0" lower="-.262" upper="3.14" velocity="10.0" />
|
|
81
|
+
</joint>
|
|
82
|
+
<link name="Body_LSY">
|
|
83
|
+
<inertial>
|
|
84
|
+
<origin rpy="0 0 0" xyz="0.00596307108671425 -0.00223165835990308 -0.16200994741112" />
|
|
85
|
+
<mass value="1.35206539449553" />
|
|
86
|
+
<inertia ixx="0.0134777313253687" ixy="-2.51384514257897E-05" ixz="-0.000850780329961022" iyy="0.0134238053664017" iyz="0.000270964573540381" izz="0.00109460289061941" />
|
|
87
|
+
</inertial>
|
|
88
|
+
<visual>
|
|
89
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
90
|
+
<geometry>
|
|
91
|
+
<mesh filename="package://drchubo/meshes/convhull_LSY_merged.stl" />
|
|
92
|
+
</geometry>
|
|
93
|
+
<material name="">
|
|
94
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
95
|
+
</material>
|
|
96
|
+
</visual>
|
|
97
|
+
<collision>
|
|
98
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
99
|
+
<geometry>
|
|
100
|
+
<mesh filename="package://drchubo/meshes/convhull_LSY_merged.stl" />
|
|
101
|
+
</geometry>
|
|
102
|
+
</collision>
|
|
103
|
+
</link>
|
|
104
|
+
<joint name="LSY" type="revolute">
|
|
105
|
+
<origin rpy="0 0 0" xyz="-0.0330 0 -0.0270" />
|
|
106
|
+
<parent link="Body_LSR" />
|
|
107
|
+
<child link="Body_LSY" />
|
|
108
|
+
<axis xyz="0 0 1" />
|
|
109
|
+
<limit effort="100.0" lower="-2" upper="3.14" velocity="10.0" />
|
|
110
|
+
</joint>
|
|
111
|
+
<link name="Body_LEP">
|
|
112
|
+
<inertial>
|
|
113
|
+
<origin rpy="0 0 0" xyz="-0.02571445335908 0.000806178520288664 -0.0417853587164666" />
|
|
114
|
+
<mass value="0.267758871202315" />
|
|
115
|
+
<inertia ixx="0.000341774590608957" ixy="-8.94704764293737E-07" ixz="5.48147249702E-05" iyy="0.000322402837807457" iyz="2.93006728475972E-06" izz="0.000239480055722266" />
|
|
116
|
+
</inertial>
|
|
117
|
+
<visual>
|
|
118
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
119
|
+
<geometry>
|
|
120
|
+
<mesh filename="package://drchubo/meshes/convhull_LEP_merged.stl" />
|
|
121
|
+
</geometry>
|
|
122
|
+
<material name="">
|
|
123
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
124
|
+
</material>
|
|
125
|
+
</visual>
|
|
126
|
+
<collision>
|
|
127
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
128
|
+
<geometry>
|
|
129
|
+
<mesh filename="package://drchubo/meshes/convhull_LEP_merged.stl" />
|
|
130
|
+
</geometry>
|
|
131
|
+
</collision>
|
|
132
|
+
</link>
|
|
133
|
+
<joint name="LEP" type="revolute">
|
|
134
|
+
<origin rpy="0 0 0" xyz="0.0300 0.000 -0.2730" />
|
|
135
|
+
<parent link="Body_LSY" />
|
|
136
|
+
<child link="Body_LEP" />
|
|
137
|
+
<axis xyz="0 1 0" />
|
|
138
|
+
<limit effort="100.0" lower="-2.96" upper=".2" velocity="10.0" />
|
|
139
|
+
</joint>
|
|
140
|
+
<link name="Body_LWY">
|
|
141
|
+
<inertial>
|
|
142
|
+
<origin rpy="0 0 0" xyz="3.99379011692602E-05 0.0577379856357585 -0.151718765023044" />
|
|
143
|
+
<mass value="1.37072161761866" />
|
|
144
|
+
<inertia ixx="0.0138917492745533" ixy="-3.54251778004189E-06" ixz="7.9309444806889E-06" iyy="0.0118173705529259" iyz="-0.00394273246628464" izz="0.00267824831844074" />
|
|
145
|
+
</inertial>
|
|
146
|
+
<visual>
|
|
147
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
148
|
+
<geometry>
|
|
149
|
+
<mesh filename="package://drchubo/meshes/convhull_LWY_merged.stl" />
|
|
150
|
+
</geometry>
|
|
151
|
+
<material name="">
|
|
152
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
153
|
+
</material>
|
|
154
|
+
</visual>
|
|
155
|
+
<collision>
|
|
156
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
157
|
+
<geometry>
|
|
158
|
+
<mesh filename="package://drchubo/meshes/convhull_LWY_merged.stl" />
|
|
159
|
+
</geometry>
|
|
160
|
+
</collision>
|
|
161
|
+
</link>
|
|
162
|
+
<joint name="LWY" type="revolute">
|
|
163
|
+
<origin rpy="0 0 0" xyz="-0.0300 0 -0.0520" />
|
|
164
|
+
<parent link="Body_LEP" />
|
|
165
|
+
<child link="Body_LWY" />
|
|
166
|
+
<axis xyz="0 0 1" />
|
|
167
|
+
<limit effort="100.0" lower="-3.14" upper="3.14" velocity="10.0" />
|
|
168
|
+
</joint>
|
|
169
|
+
<link name="Body_LWP">
|
|
170
|
+
<inertial>
|
|
171
|
+
<origin rpy="0 0 0" xyz="-0.000378739071217597 0.0108882434913045 0.0170093706107317" />
|
|
172
|
+
<mass value="0.294902574333316" />
|
|
173
|
+
<inertia ixx="0.000715165417977553" ixy="-1.51543969240671E-06" ixz="-4.37551165446012E-06" iyy="0.000574579884042658" iyz="-5.5583549065965E-05" izz="0.000301632100473859" />
|
|
174
|
+
</inertial>
|
|
175
|
+
<visual>
|
|
176
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
177
|
+
<geometry>
|
|
178
|
+
<mesh filename="package://drchubo/meshes/convhull_LWP_merged.stl" />
|
|
179
|
+
</geometry>
|
|
180
|
+
<material name="">
|
|
181
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
182
|
+
</material>
|
|
183
|
+
</visual>
|
|
184
|
+
<collision>
|
|
185
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
186
|
+
<geometry>
|
|
187
|
+
<mesh filename="package://drchubo/meshes/convhull_LWP_merged.stl" />
|
|
188
|
+
</geometry>
|
|
189
|
+
</collision>
|
|
190
|
+
</link>
|
|
191
|
+
<joint name="LWP" type="revolute">
|
|
192
|
+
<origin rpy="0 0 0" xyz="0 0 -0.2618" />
|
|
193
|
+
<parent link="Body_LWY" />
|
|
194
|
+
<child link="Body_LWP" />
|
|
195
|
+
<axis xyz="0 1 0" />
|
|
196
|
+
<limit effort="100.0" lower="-3.14" upper="3.14" velocity="10.0" />
|
|
197
|
+
</joint>
|
|
198
|
+
<link name="Body_LWR">
|
|
199
|
+
<inertial>
|
|
200
|
+
<origin rpy="0 0 0" xyz="0.00526734472242982 -0.00165481505247564 -0.0476967183846567" />
|
|
201
|
+
<mass value="0.474006924726537" />
|
|
202
|
+
<inertia ixx="0.000397832341494148" ixy="2.62847439473878E-06" ixz="-1.84132721696329E-05" iyy="0.000310585574870465" iyz="-5.74611340451118E-06" izz="0.000251799615334244" />
|
|
203
|
+
</inertial>
|
|
204
|
+
<visual>
|
|
205
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
206
|
+
<geometry>
|
|
207
|
+
<mesh filename="package://drchubo/meshes/convhull_LWR_merged.stl" />
|
|
208
|
+
</geometry>
|
|
209
|
+
<material name="">
|
|
210
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
211
|
+
</material>
|
|
212
|
+
</visual>
|
|
213
|
+
<collision>
|
|
214
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
215
|
+
<geometry>
|
|
216
|
+
<mesh filename="package://drchubo/meshes/convhull_LWR_merged.stl" />
|
|
217
|
+
</geometry>
|
|
218
|
+
</collision>
|
|
219
|
+
</link>
|
|
220
|
+
<joint name="LWR" type="revolute">
|
|
221
|
+
<origin rpy="0 0 1.57079632679" xyz="0 0 -0.0275" />
|
|
222
|
+
<parent link="Body_LWP" />
|
|
223
|
+
<child link="Body_LWR" />
|
|
224
|
+
<axis xyz="0 0 1" />
|
|
225
|
+
<limit effort="100.0" lower="-3.14" upper="3.14" velocity="10.0" />
|
|
226
|
+
</joint>
|
|
227
|
+
|
|
228
|
+
<link name="Body_LF11">
|
|
229
|
+
<inertial>
|
|
230
|
+
<origin rpy="0 0 0" xyz="4.08082421144568E-06 -0.0103654579068141 -0.0223572146583746" />
|
|
231
|
+
<mass value="0.0209635645691505" />
|
|
232
|
+
<inertia ixx="5.79877083007342E-06" ixy="-3.61896654972963E-09" ixz="2.45166522675331E-07" iyy="6.02432212425641E-06" iyz="1.21167394757334E-09" izz="1.78245355770108E-06" />
|
|
233
|
+
</inertial>
|
|
234
|
+
<visual>
|
|
235
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
236
|
+
<geometry>
|
|
237
|
+
<mesh filename="package://drchubo/meshes/convhull_LF1.stl" />
|
|
238
|
+
</geometry>
|
|
239
|
+
<material name="">
|
|
240
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
241
|
+
</material>
|
|
242
|
+
</visual>
|
|
243
|
+
<collision>
|
|
244
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
245
|
+
<geometry>
|
|
246
|
+
<mesh filename="package://drchubo/meshes/convhull_LF1.stl" />
|
|
247
|
+
</geometry>
|
|
248
|
+
</collision>
|
|
249
|
+
</link>
|
|
250
|
+
<joint name="LF11" type="revolute">
|
|
251
|
+
<origin rpy="0 0 0" xyz="0.0230 -0.0120 -0.0755" />
|
|
252
|
+
<parent link="Body_LWR" />
|
|
253
|
+
<child link="Body_LF11" />
|
|
254
|
+
<axis xyz="0 1 0" />
|
|
255
|
+
<limit effort="10.0" lower="-1.5" upper=".1" velocity="2.0" />
|
|
256
|
+
</joint>
|
|
257
|
+
<link name="Body_LF12">
|
|
258
|
+
<inertial>
|
|
259
|
+
<origin rpy="0 0 0" xyz="0.000130946971760824 0.000226771833385403 -0.0135375370531412" />
|
|
260
|
+
<mass value="0.0121177256078384" />
|
|
261
|
+
<inertia ixx="2.50372945957958E-06" ixy="-2.32805891508231E-09" ixz="5.14105106916585E-08" iyy="2.26813369660349E-06" iyz="-4.92964124837522E-09" izz="1.22101156825522E-06" />
|
|
262
|
+
</inertial>
|
|
263
|
+
<visual>
|
|
264
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
265
|
+
<geometry>
|
|
266
|
+
<mesh filename="package://drchubo/meshes/convhull_LF2.stl" />
|
|
267
|
+
</geometry>
|
|
268
|
+
<material name="">
|
|
269
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
270
|
+
</material>
|
|
271
|
+
</visual>
|
|
272
|
+
<collision>
|
|
273
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
274
|
+
<geometry>
|
|
275
|
+
<mesh filename="package://drchubo/meshes/convhull_LF2.stl" />
|
|
276
|
+
</geometry>
|
|
277
|
+
</collision>
|
|
278
|
+
</link>
|
|
279
|
+
<joint name="LF12" type="revolute">
|
|
280
|
+
<origin rpy="0 0 0" xyz="-0.0020 -0.0105 -0.0420" />
|
|
281
|
+
<parent link="Body_LF11" />
|
|
282
|
+
<child link="Body_LF12" />
|
|
283
|
+
<axis xyz="0 1 0" />
|
|
284
|
+
<limit effort="10.0" lower="-1.5" upper=".1" velocity="2.0" />
|
|
285
|
+
</joint>
|
|
286
|
+
<link name="Body_LF13">
|
|
287
|
+
<inertial>
|
|
288
|
+
<origin rpy="0 0 0" xyz="0.000169386130301579 0.000356898419659246 -0.0163165219752076" />
|
|
289
|
+
<mass value="0.0163435127658012" />
|
|
290
|
+
<inertia ixx="2.35338373719888E-06" ixy="-4.4210418009567E-09" ixz="1.38024261681812E-07" iyy="2.40973096927305E-06" iyz="-2.82215020077362E-08" izz="9.69758896639509E-07" />
|
|
291
|
+
</inertial>
|
|
292
|
+
<visual>
|
|
293
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
294
|
+
<geometry>
|
|
295
|
+
<mesh filename="package://drchubo/meshes/convhull_LF3.stl" />
|
|
296
|
+
</geometry>
|
|
297
|
+
<material name="">
|
|
298
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
299
|
+
</material>
|
|
300
|
+
</visual>
|
|
301
|
+
<collision>
|
|
302
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
303
|
+
<geometry>
|
|
304
|
+
<mesh filename="package://drchubo/meshes/convhull_LF3.stl" />
|
|
305
|
+
</geometry>
|
|
306
|
+
</collision>
|
|
307
|
+
</link>
|
|
308
|
+
<joint name="LF13" type="revolute">
|
|
309
|
+
<origin rpy="0 0 0" xyz="-0.0014 0 -0.0300" />
|
|
310
|
+
<parent link="Body_LF12" />
|
|
311
|
+
<child link="Body_LF13" />
|
|
312
|
+
<axis xyz="0 1 0" />
|
|
313
|
+
<limit effort="10.0" lower="-1.5" upper=".1" velocity="2.0" />
|
|
314
|
+
</joint>
|
|
315
|
+
<link name="Body_TSY">
|
|
316
|
+
<inertial>
|
|
317
|
+
<origin rpy="0 0 0" xyz="-0.0160702033923426 -0.00217130156788575 -0.0329438544914258" />
|
|
318
|
+
<mass value="3.85811444190788" />
|
|
319
|
+
<inertia ixx="0.0199734074242983" ixy="-0.00013227939476964" ixz="0.00017668619158262" iyy="0.0085778641786012" iyz="0.000147644598532384" izz="0.0237690845804838" />
|
|
320
|
+
</inertial>
|
|
321
|
+
<visual>
|
|
322
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
323
|
+
<geometry>
|
|
324
|
+
<mesh filename="package://drchubo/meshes/convhull_TSY_merged.stl" />
|
|
325
|
+
</geometry>
|
|
326
|
+
<material name="">
|
|
327
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
328
|
+
</material>
|
|
329
|
+
</visual>
|
|
330
|
+
<collision>
|
|
331
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
332
|
+
<geometry>
|
|
333
|
+
<mesh filename="package://drchubo/meshes/convhull_TSY_merged.stl" />
|
|
334
|
+
</geometry>
|
|
335
|
+
</collision>
|
|
336
|
+
</link>
|
|
337
|
+
<joint name="TSY" type="revolute">
|
|
338
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
339
|
+
<parent link="Body_TSY" />
|
|
340
|
+
<child link="Body_Torso" />
|
|
341
|
+
<axis xyz="0 0 1" />
|
|
342
|
+
<limit effort="100.0" lower="-1.57" upper="1.57" velocity="10.0" />
|
|
343
|
+
</joint>
|
|
344
|
+
<link name="Body_LHY">
|
|
345
|
+
<inertial>
|
|
346
|
+
<origin rpy="0 0 0" xyz="0.0378123600719454 2.54097696217315E-08 -0.116128242308007" />
|
|
347
|
+
<mass value="1.02665437743596" />
|
|
348
|
+
<inertia ixx="0.00249606232939035" ixy="-2.76272075666202E-09" ixz="-0.000829704581049298" iyy="0.00377324783994803" iyz="5.79132768620233E-10" izz="0.0021281978106318" />
|
|
349
|
+
</inertial>
|
|
350
|
+
<visual>
|
|
351
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
352
|
+
<geometry>
|
|
353
|
+
<mesh filename="package://drchubo/meshes/convhull_LHY_merged.stl" />
|
|
354
|
+
</geometry>
|
|
355
|
+
<material name="">
|
|
356
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
357
|
+
</material>
|
|
358
|
+
</visual>
|
|
359
|
+
<collision>
|
|
360
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
361
|
+
<geometry>
|
|
362
|
+
<mesh filename="package://drchubo/meshes/convhull_LHY_merged.stl" />
|
|
363
|
+
</geometry>
|
|
364
|
+
</collision>
|
|
365
|
+
</link>
|
|
366
|
+
<joint name="LHY" type="revolute">
|
|
367
|
+
<origin rpy="0 0 0" xyz="0 0.0885 -0.0230" />
|
|
368
|
+
<parent link="Body_TSY" />
|
|
369
|
+
<child link="Body_LHY" />
|
|
370
|
+
<axis xyz="0 0 1" />
|
|
371
|
+
<limit effort="100.0" lower="-1.92" upper="1.92" velocity="10.0" />
|
|
372
|
+
</joint>
|
|
373
|
+
<link name="Body_LHR">
|
|
374
|
+
<inertial>
|
|
375
|
+
<origin rpy="0 0 0" xyz="0.00473723996484245 -0.00482931760302879 -0.0325563692830159" />
|
|
376
|
+
<mass value="1.37473370900606" />
|
|
377
|
+
<inertia ixx="0.00222021321390697" ixy="3.01344959315266E-05" ixz="0.000214745489876361" iyy="0.00208177057868792" iyz="6.99363261903671E-05" izz="0.00174245289623185" />
|
|
378
|
+
</inertial>
|
|
379
|
+
<visual>
|
|
380
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
381
|
+
<geometry>
|
|
382
|
+
<mesh filename="package://drchubo/meshes/convhull_LHR_merged.stl" />
|
|
383
|
+
</geometry>
|
|
384
|
+
<material name="">
|
|
385
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
386
|
+
</material>
|
|
387
|
+
</visual>
|
|
388
|
+
<collision>
|
|
389
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
390
|
+
<geometry>
|
|
391
|
+
<mesh filename="package://drchubo/meshes/convhull_LHR_merged.stl" />
|
|
392
|
+
</geometry>
|
|
393
|
+
</collision>
|
|
394
|
+
</link>
|
|
395
|
+
<joint name="LHR" type="revolute">
|
|
396
|
+
<origin rpy="0 0 0" xyz="0 0 -0.1410" />
|
|
397
|
+
<parent link="Body_LHY" />
|
|
398
|
+
<child link="Body_LHR" />
|
|
399
|
+
<axis xyz="1 0 0" />
|
|
400
|
+
<limit effort="100.0" lower="-0.52" upper="0.52" velocity="10.0" />
|
|
401
|
+
</joint>
|
|
402
|
+
<link name="Body_LHP">
|
|
403
|
+
<inertial>
|
|
404
|
+
<origin rpy="0 0 0" xyz="0.0139820973756429 0.0119128547059099 -0.190050892707924" />
|
|
405
|
+
<mass value="3.39708806380558" />
|
|
406
|
+
<inertia ixx="0.0610144402594715" ixy="-0.000679183163268319" ixz="-0.00115726366946058" iyy="0.0588960128286437" iyz="0.00381190200425667" izz="0.00864106131257887" />
|
|
407
|
+
</inertial>
|
|
408
|
+
<visual>
|
|
409
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
410
|
+
<geometry>
|
|
411
|
+
<mesh filename="package://drchubo/meshes/convhull_LHP_merged.stl" />
|
|
412
|
+
</geometry>
|
|
413
|
+
<material name="">
|
|
414
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
415
|
+
</material>
|
|
416
|
+
</visual>
|
|
417
|
+
<collision>
|
|
418
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
419
|
+
<geometry>
|
|
420
|
+
<mesh filename="package://drchubo/meshes/convhull_LHP_merged.stl" />
|
|
421
|
+
</geometry>
|
|
422
|
+
</collision>
|
|
423
|
+
</link>
|
|
424
|
+
<joint name="LHP" type="revolute">
|
|
425
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
426
|
+
<parent link="Body_LHR" />
|
|
427
|
+
<child link="Body_LHP" />
|
|
428
|
+
<axis xyz="0 1 0" />
|
|
429
|
+
<limit effort="100.0" lower="-1.87" upper="1.61" velocity="10.0" />
|
|
430
|
+
</joint>
|
|
431
|
+
<link name="Body_LKP">
|
|
432
|
+
<inertial>
|
|
433
|
+
<origin rpy="0 0 0" xyz="0.0167128425968244 -0.00423174064898188 -0.163547981620547" />
|
|
434
|
+
<mass value="1.2513314922159" />
|
|
435
|
+
<inertia ixx="0.0176853262863822" ixy="5.97588040758602E-05" ixz="0.000242087956452148" iyy="0.0161941871476601" iyz="2.05953671058067E-05" izz="0.00355046513294474" />
|
|
436
|
+
</inertial>
|
|
437
|
+
<visual>
|
|
438
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
439
|
+
<geometry>
|
|
440
|
+
<mesh filename="package://drchubo/meshes/convhull_LKP_merged.stl" />
|
|
441
|
+
</geometry>
|
|
442
|
+
<material name="">
|
|
443
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
444
|
+
</material>
|
|
445
|
+
</visual>
|
|
446
|
+
<collision>
|
|
447
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
448
|
+
<geometry>
|
|
449
|
+
<mesh filename="package://drchubo/meshes/convhull_LKP_merged.stl" />
|
|
450
|
+
</geometry>
|
|
451
|
+
</collision>
|
|
452
|
+
</link>
|
|
453
|
+
<joint name="LKP" type="revolute">
|
|
454
|
+
<origin rpy="0 0 0" xyz="0 0 -0.3299" />
|
|
455
|
+
<parent link="Body_LHP" />
|
|
456
|
+
<child link="Body_LKP" />
|
|
457
|
+
<axis xyz="0 1 0" />
|
|
458
|
+
<limit effort="100.0" lower="-0.07" upper="2.61" velocity="10.0" />
|
|
459
|
+
</joint>
|
|
460
|
+
<link name="Body_LAP">
|
|
461
|
+
<inertial>
|
|
462
|
+
<origin rpy="0 0 0" xyz="0.0148223972690647 0.0100562738748088 0.00997467775305361" />
|
|
463
|
+
<mass value="2.00597218062827" />
|
|
464
|
+
<inertia ixx="0.00317573590934402" ixy="-0.00030397733226894" ixz="-0.000298327569678596" iyy="0.00347243568780368" iyz="-0.000320093631728957" izz="0.0036796574607068" />
|
|
465
|
+
</inertial>
|
|
466
|
+
<visual>
|
|
467
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
468
|
+
<geometry>
|
|
469
|
+
<mesh filename="package://drchubo/meshes/convhull_LAP_merged.stl" />
|
|
470
|
+
</geometry>
|
|
471
|
+
<material name="">
|
|
472
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
473
|
+
</material>
|
|
474
|
+
</visual>
|
|
475
|
+
<collision>
|
|
476
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
477
|
+
<geometry>
|
|
478
|
+
<mesh filename="package://drchubo/meshes/convhull_LAP_merged.stl" />
|
|
479
|
+
</geometry>
|
|
480
|
+
</collision>
|
|
481
|
+
</link>
|
|
482
|
+
<joint name="LAP" type="revolute">
|
|
483
|
+
<origin rpy="0 0 0" xyz="0 0 -0.3300" />
|
|
484
|
+
<parent link="Body_LKP" />
|
|
485
|
+
<child link="Body_LAP" />
|
|
486
|
+
<axis xyz="0 1 0" />
|
|
487
|
+
<limit effort="100.0" lower="-1.7" upper="1.7" velocity="10.0" />
|
|
488
|
+
</joint>
|
|
489
|
+
<link name="Body_LAR">
|
|
490
|
+
<inertial>
|
|
491
|
+
<origin rpy="0 0 0" xyz="0.0165455008793805 0.00216085982209592 -0.0952915062130097" />
|
|
492
|
+
<mass value="1.06815376654094" />
|
|
493
|
+
<inertia ixx="0.00372790935829238" ixy="3.13391462968031E-05" ixz="-0.000480888102685697" iyy="0.00607005664613535" iyz="-9.42514897869005E-05" izz="0.00420512438203011" />
|
|
494
|
+
</inertial>
|
|
495
|
+
<visual>
|
|
496
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
497
|
+
<geometry>
|
|
498
|
+
<mesh filename="package://drchubo/meshes/convhull_LAR_merged.stl" />
|
|
499
|
+
</geometry>
|
|
500
|
+
<material name="">
|
|
501
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
502
|
+
</material>
|
|
503
|
+
</visual>
|
|
504
|
+
<collision>
|
|
505
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
506
|
+
<geometry>
|
|
507
|
+
<mesh filename="package://drchubo/meshes/convhull_LAR_merged.stl" />
|
|
508
|
+
</geometry>
|
|
509
|
+
</collision>
|
|
510
|
+
</link>
|
|
511
|
+
<joint name="LAR" type="revolute">
|
|
512
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
513
|
+
<parent link="Body_LAP" />
|
|
514
|
+
<child link="Body_LAR" />
|
|
515
|
+
<axis xyz="1 0 0" />
|
|
516
|
+
<limit effort="100.0" lower="-1.57" upper="1.57" velocity="10.0" />
|
|
517
|
+
</joint>
|
|
518
|
+
<link name="Body_NKY">
|
|
519
|
+
<inertial>
|
|
520
|
+
<origin rpy="0 0 0" xyz="-0.0132341759354885 -0.000264833073564218 0.0409690989083223" />
|
|
521
|
+
<mass value="0.170508153365938" />
|
|
522
|
+
<inertia ixx="0.000101054047458944" ixy="-6.00968902822632E-07" ixz="-2.18923858832909E-06" iyy="0.000105642534003898" iyz="5.06882999846784E-07" izz="0.000105863654255542" />
|
|
523
|
+
</inertial>
|
|
524
|
+
<visual>
|
|
525
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
526
|
+
<geometry>
|
|
527
|
+
<mesh filename="package://drchubo/meshes/convhull_NKY_merged.stl" />
|
|
528
|
+
</geometry>
|
|
529
|
+
<material name="">
|
|
530
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
531
|
+
</material>
|
|
532
|
+
</visual>
|
|
533
|
+
<collision>
|
|
534
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
535
|
+
<geometry>
|
|
536
|
+
<mesh filename="package://drchubo/meshes/convhull_NKY_merged.stl" />
|
|
537
|
+
</geometry>
|
|
538
|
+
</collision>
|
|
539
|
+
</link>
|
|
540
|
+
<joint name="NKY" type="revolute">
|
|
541
|
+
<origin rpy="0 0 0" xyz="0.0010 0 0.2598" />
|
|
542
|
+
<parent link="Body_Torso" />
|
|
543
|
+
<child link="Body_NKY" />
|
|
544
|
+
<axis xyz="0 0 1" />
|
|
545
|
+
<limit effort="10.0" lower="-2" upper="2" velocity="10.0" />
|
|
546
|
+
</joint>
|
|
547
|
+
<link name="Body_NK1">
|
|
548
|
+
<inertial>
|
|
549
|
+
<origin rpy="0 0 0" xyz="-0.000519835312274866 -0.112505098178575 -9.33147645172232E-05" />
|
|
550
|
+
<mass value="0.657803087875364" />
|
|
551
|
+
<inertia ixx="0.00461193404989021" ixy="2.06037288507875E-05" ixz="-3.18942823947151E-08" iyy="0.00189695830911958" iyz="8.9775768045783E-05" izz="0.00293465680409193" />
|
|
552
|
+
</inertial>
|
|
553
|
+
<visual>
|
|
554
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
555
|
+
<geometry>
|
|
556
|
+
<mesh filename="package://drchubo/meshes/convhull_NK1_merged.stl" />
|
|
557
|
+
</geometry>
|
|
558
|
+
<material name="">
|
|
559
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
560
|
+
</material>
|
|
561
|
+
</visual>
|
|
562
|
+
<collision>
|
|
563
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
564
|
+
<geometry>
|
|
565
|
+
<mesh filename="package://drchubo/meshes/convhull_NK1_merged.stl" />
|
|
566
|
+
</geometry>
|
|
567
|
+
</collision>
|
|
568
|
+
</link>
|
|
569
|
+
<joint name="NK1" type="revolute">
|
|
570
|
+
<origin rpy="-1.5707963267949 0 0" xyz="0 0 0.0298" />
|
|
571
|
+
<parent link="Body_NKY" />
|
|
572
|
+
<child link="Body_NK1" />
|
|
573
|
+
<axis xyz="0 0 1" />
|
|
574
|
+
<limit effort="10.0" lower="-2" upper="2" velocity="10.0" />
|
|
575
|
+
</joint>
|
|
576
|
+
<link name="Body_NK2">
|
|
577
|
+
<inertial>
|
|
578
|
+
<origin rpy="0 0 0" xyz="0.00619110883708962 0.000180362999792852 -0.00925441765145953" />
|
|
579
|
+
<mass value="0.250303289297233" />
|
|
580
|
+
<inertia ixx="0.000202848165255698" ixy="-2.85613884397634E-07" ixz="4.4023872954844E-06" iyy="0.000189595993252901" iyz="4.2100514679016E-07" izz="0.000145991865917545" />
|
|
581
|
+
</inertial>
|
|
582
|
+
<visual>
|
|
583
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
584
|
+
<geometry>
|
|
585
|
+
<mesh filename="package://drchubo/meshes/convhull_NK2.stl" />
|
|
586
|
+
</geometry>
|
|
587
|
+
<material name="">
|
|
588
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
589
|
+
</material>
|
|
590
|
+
</visual>
|
|
591
|
+
<collision>
|
|
592
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
593
|
+
<geometry>
|
|
594
|
+
<mesh filename="package://drchubo/meshes/convhull_NK2.stl" />
|
|
595
|
+
</geometry>
|
|
596
|
+
</collision>
|
|
597
|
+
</link>
|
|
598
|
+
<joint name="NK2" type="revolute">
|
|
599
|
+
<origin rpy="1.5707963267949 0 -1.5707963267949" xyz="0 -0.0860 0" />
|
|
600
|
+
<parent link="Body_NK1" />
|
|
601
|
+
<child link="Body_NK2" />
|
|
602
|
+
<axis xyz="0 1 0" />
|
|
603
|
+
<limit effort="10.0" lower="-2" upper="2" velocity="10.0" />
|
|
604
|
+
</joint>
|
|
605
|
+
|
|
606
|
+
<link name="Body_LF21">
|
|
607
|
+
<inertial>
|
|
608
|
+
<origin rpy="0 0 0" xyz="4.08082421144568E-06 -0.0103654579068141 -0.0223572146583746" />
|
|
609
|
+
<mass value="0.0209635645691505" />
|
|
610
|
+
<inertia ixx="5.79877083007342E-06" ixy="-3.61896654972963E-09" ixz="2.45166522675331E-07" iyy="6.02432212425641E-06" iyz="1.21167394757334E-09" izz="1.78245355770108E-06" />
|
|
611
|
+
</inertial>
|
|
612
|
+
<visual>
|
|
613
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
614
|
+
<geometry>
|
|
615
|
+
<mesh filename="package://drchubo/meshes/convhull_LF1.stl" />
|
|
616
|
+
</geometry>
|
|
617
|
+
<material name="">
|
|
618
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
619
|
+
</material>
|
|
620
|
+
</visual>
|
|
621
|
+
<collision>
|
|
622
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
623
|
+
<geometry>
|
|
624
|
+
<mesh filename="package://drchubo/meshes/convhull_LF1.stl" />
|
|
625
|
+
</geometry>
|
|
626
|
+
</collision>
|
|
627
|
+
</link>
|
|
628
|
+
<joint name="LF21" type="revolute">
|
|
629
|
+
<origin rpy="0 0 0" xyz="0.0230 0.0330 -0.0755" />
|
|
630
|
+
<parent link="Body_LWR" />
|
|
631
|
+
<child link="Body_LF21" />
|
|
632
|
+
<axis xyz="0 1 0" />
|
|
633
|
+
<limit effort="10.0" lower="-1.5" upper=".1" velocity="2.0" />
|
|
634
|
+
</joint>
|
|
635
|
+
<link name="Body_LF22">
|
|
636
|
+
<inertial>
|
|
637
|
+
<origin rpy="0 0 0" xyz="0.000130946971760824 0.000226771833385403 -0.0135375370531412" />
|
|
638
|
+
<mass value="0.0121177256078384" />
|
|
639
|
+
<inertia ixx="2.50372945957958E-06" ixy="-2.32805891508231E-09" ixz="5.14105106916585E-08" iyy="2.26813369660349E-06" iyz="-4.92964124837522E-09" izz="1.22101156825522E-06" />
|
|
640
|
+
</inertial>
|
|
641
|
+
<visual>
|
|
642
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
643
|
+
<geometry>
|
|
644
|
+
<mesh filename="package://drchubo/meshes/convhull_LF2.stl" />
|
|
645
|
+
</geometry>
|
|
646
|
+
<material name="">
|
|
647
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
648
|
+
</material>
|
|
649
|
+
</visual>
|
|
650
|
+
<collision>
|
|
651
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
652
|
+
<geometry>
|
|
653
|
+
<mesh filename="package://drchubo/meshes/convhull_LF2.stl" />
|
|
654
|
+
</geometry>
|
|
655
|
+
</collision>
|
|
656
|
+
</link>
|
|
657
|
+
<joint name="LF22" type="revolute">
|
|
658
|
+
<origin rpy="0 0 0" xyz="-0.0020 -0.0105 -0.0420" />
|
|
659
|
+
<parent link="Body_LF21" />
|
|
660
|
+
<child link="Body_LF22" />
|
|
661
|
+
<axis xyz="0 1 0" />
|
|
662
|
+
<limit effort="10.0" lower="-1.5" upper=".1" velocity="2.0" />
|
|
663
|
+
</joint>
|
|
664
|
+
<link name="Body_LF23">
|
|
665
|
+
<inertial>
|
|
666
|
+
<origin rpy="0 0 0" xyz="0.000169386130301579 0.000356898419659246 -0.0163165219752076" />
|
|
667
|
+
<mass value="0.0163435127658012" />
|
|
668
|
+
<inertia ixx="2.35338373719888E-06" ixy="-4.4210418009567E-09" ixz="1.38024261681812E-07" iyy="2.40973096927305E-06" iyz="-2.82215020077362E-08" izz="9.69758896639509E-07" />
|
|
669
|
+
</inertial>
|
|
670
|
+
<visual>
|
|
671
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
672
|
+
<geometry>
|
|
673
|
+
<mesh filename="package://drchubo/meshes/convhull_LF3.stl" />
|
|
674
|
+
</geometry>
|
|
675
|
+
<material name="">
|
|
676
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
677
|
+
</material>
|
|
678
|
+
</visual>
|
|
679
|
+
<collision>
|
|
680
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
681
|
+
<geometry>
|
|
682
|
+
<mesh filename="package://drchubo/meshes/convhull_LF3.stl" />
|
|
683
|
+
</geometry>
|
|
684
|
+
</collision>
|
|
685
|
+
</link>
|
|
686
|
+
<joint name="LF23" type="revolute">
|
|
687
|
+
<origin rpy="0 0 0" xyz="-0.0014 0 -0.0300" />
|
|
688
|
+
<parent link="Body_LF22" />
|
|
689
|
+
<child link="Body_LF23" />
|
|
690
|
+
<axis xyz="0 1 0" />
|
|
691
|
+
<limit effort="10.0" lower="-1.5" upper=".1" velocity="2.0" />
|
|
692
|
+
</joint>
|
|
693
|
+
|
|
694
|
+
|
|
695
|
+
<link name="Body_LF31">
|
|
696
|
+
<inertial>
|
|
697
|
+
<origin rpy="0 0 0" xyz="4.08082421144568E-06 -0.0103654579068141 -0.0223572146583746" />
|
|
698
|
+
<mass value="0.0209635645691505" />
|
|
699
|
+
<inertia ixx="5.79877083007342E-06" ixy="-3.61896654972963E-09" ixz="2.45166522675331E-07" iyy="6.02432212425641E-06" iyz="1.21167394757334E-09" izz="1.78245355770108E-06" />
|
|
700
|
+
</inertial>
|
|
701
|
+
<visual>
|
|
702
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
703
|
+
<geometry>
|
|
704
|
+
<mesh filename="package://drchubo/meshes/convhull_LF1.stl" />
|
|
705
|
+
</geometry>
|
|
706
|
+
<material name="">
|
|
707
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
708
|
+
</material>
|
|
709
|
+
</visual>
|
|
710
|
+
<collision>
|
|
711
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
712
|
+
<geometry>
|
|
713
|
+
<mesh filename="package://drchubo/meshes/convhull_LF1.stl" />
|
|
714
|
+
</geometry>
|
|
715
|
+
</collision>
|
|
716
|
+
</link>
|
|
717
|
+
<joint name="LF31" type="revolute">
|
|
718
|
+
<origin rpy="0 0 3.141592653589" xyz="-0.0230 -0.0105 -0.0755" />
|
|
719
|
+
<parent link="Body_LWR" />
|
|
720
|
+
<child link="Body_LF31" />
|
|
721
|
+
<axis xyz="0 -1 0" />
|
|
722
|
+
<limit effort="10.0" lower="-1.5" upper=".1" velocity="2.0" />
|
|
723
|
+
</joint>
|
|
724
|
+
<link name="Body_LF32">
|
|
725
|
+
<inertial>
|
|
726
|
+
<origin rpy="0 0 0" xyz="0.000130946971760824 0.000226771833385403 -0.0135375370531412" />
|
|
727
|
+
<mass value="0.0121177256078384" />
|
|
728
|
+
<inertia ixx="2.50372945957958E-06" ixy="-2.32805891508231E-09" ixz="5.14105106916585E-08" iyy="2.26813369660349E-06" iyz="-4.92964124837522E-09" izz="1.22101156825522E-06" />
|
|
729
|
+
</inertial>
|
|
730
|
+
<visual>
|
|
731
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
732
|
+
<geometry>
|
|
733
|
+
<mesh filename="package://drchubo/meshes/convhull_LF2.stl" />
|
|
734
|
+
</geometry>
|
|
735
|
+
<material name="">
|
|
736
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
737
|
+
</material>
|
|
738
|
+
</visual>
|
|
739
|
+
<collision>
|
|
740
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
741
|
+
<geometry>
|
|
742
|
+
<mesh filename="package://drchubo/meshes/convhull_LF2.stl" />
|
|
743
|
+
</geometry>
|
|
744
|
+
</collision>
|
|
745
|
+
</link>
|
|
746
|
+
<joint name="LF32" type="revolute">
|
|
747
|
+
<origin rpy="0 0 0" xyz="-0.0020 -0.0105 -0.0420" />
|
|
748
|
+
<parent link="Body_LF31" />
|
|
749
|
+
<child link="Body_LF32" />
|
|
750
|
+
<limit effort="10.0" lower="-1.5" upper=".1" velocity="2.0" />
|
|
751
|
+
</joint>
|
|
752
|
+
<link name="Body_LF33">
|
|
753
|
+
<inertial>
|
|
754
|
+
<origin rpy="0 0 0" xyz="0.000169386130301579 0.000356898419659246 -0.0163165219752076" />
|
|
755
|
+
<mass value="0.0163435127658012" />
|
|
756
|
+
<inertia ixx="2.35338373719888E-06" ixy="-4.4210418009567E-09" ixz="1.38024261681812E-07" iyy="2.40973096927305E-06" iyz="-2.82215020077362E-08" izz="9.69758896639509E-07" />
|
|
757
|
+
</inertial>
|
|
758
|
+
<visual>
|
|
759
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
760
|
+
<geometry>
|
|
761
|
+
<mesh filename="package://drchubo/meshes/convhull_LF3.stl" />
|
|
762
|
+
</geometry>
|
|
763
|
+
<material name="">
|
|
764
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
765
|
+
</material>
|
|
766
|
+
</visual>
|
|
767
|
+
<collision>
|
|
768
|
+
<origin rpy="0 0 0" xyz="0 0 0" />
|
|
769
|
+
<geometry>
|
|
770
|
+
<mesh filename="package://drchubo/meshes/convhull_LF3.stl" />
|
|
771
|
+
</geometry>
|
|
772
|
+
</collision>
|
|
773
|
+
</link>
|
|
774
|
+
<joint name="LF33" type="revolute">
|
|
775
|
+
<origin rpy="0 0 0" xyz="-0.0014 0 -0.0300" />
|
|
776
|
+
<parent link="Body_LF32" />
|
|
777
|
+
<child link="Body_LF33" />
|
|
778
|
+
<axis xyz="0 -1 0" />
|
|
779
|
+
<limit effort="10.0" lower="-1.5" upper=".1" velocity="2.0" />
|
|
780
|
+
</joint>
|
|
781
|
+
<link name="Body_RSP">
|
|
782
|
+
<inertial>
|
|
783
|
+
<origin rpy="-0 0 -0" xyz="0.0125095477277756 -0.068256718764233101 -0.00010129669295980101" />
|
|
784
|
+
<mass value="0.512814669817052" />
|
|
785
|
+
<inertia ixx="0.00105971934903801" ixy="-1.5967462303431400e-04" ixz="-8.62192186714616E-07" iyy="0.00101602821932241" iyz="-6.2966884306784996e-06" izz="0.00161449029531154" />
|
|
786
|
+
</inertial>
|
|
787
|
+
<visual>
|
|
788
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
789
|
+
<geometry>
|
|
790
|
+
<mesh filename="package://drchubo/meshes/convhull_RSP_merged.stl" />
|
|
791
|
+
</geometry>
|
|
792
|
+
<material name="">
|
|
793
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
794
|
+
</material>
|
|
795
|
+
</visual>
|
|
796
|
+
<collision>
|
|
797
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
798
|
+
<geometry>
|
|
799
|
+
<mesh filename="package://drchubo/meshes/convhull_RSP_merged.stl" />
|
|
800
|
+
</geometry>
|
|
801
|
+
</collision>
|
|
802
|
+
</link>
|
|
803
|
+
<link name="Body_RSR">
|
|
804
|
+
<inertial>
|
|
805
|
+
<origin rpy="-0 0 -0" xyz="-0.035398962551355898 0.00044245995196773302 -0.017762633299856102" />
|
|
806
|
+
<mass value="0.478101234588499" />
|
|
807
|
+
<inertia ixx="0.000470991608414918" ixy="9.0901553039532995e-08" ixz="-1.21957572289795E-05" iyy="0.00056865982747998" iyz="-7.9419793532124904e-06" izz="0.000377112142444654" />
|
|
808
|
+
</inertial>
|
|
809
|
+
<visual>
|
|
810
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
811
|
+
<geometry>
|
|
812
|
+
<mesh filename="package://drchubo/meshes/convhull_RSR_merged.stl" />
|
|
813
|
+
</geometry>
|
|
814
|
+
<material name="">
|
|
815
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
816
|
+
</material>
|
|
817
|
+
</visual>
|
|
818
|
+
<collision>
|
|
819
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
820
|
+
<geometry>
|
|
821
|
+
<mesh filename="package://drchubo/meshes/convhull_RSR_merged.stl" />
|
|
822
|
+
</geometry>
|
|
823
|
+
</collision>
|
|
824
|
+
</link>
|
|
825
|
+
<link name="Body_RSY">
|
|
826
|
+
<inertial>
|
|
827
|
+
<origin rpy="-0 0 -0" xyz="0.0059630710867142498 0.0022316583599030801 -0.16200994741111999" />
|
|
828
|
+
<mass value="1.35206539449553" />
|
|
829
|
+
<inertia ixx="0.0134777313253687" ixy="2.5138451425789699e-05" ixz="-0.000850780329961022" iyy="0.0134238053664017" iyz="-2.7096457354038099e-04" izz="0.00109460289061941" />
|
|
830
|
+
</inertial>
|
|
831
|
+
<visual>
|
|
832
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
833
|
+
<geometry>
|
|
834
|
+
<mesh filename="package://drchubo/meshes/convhull_RSY_merged.stl" />
|
|
835
|
+
</geometry>
|
|
836
|
+
<material name="">
|
|
837
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
838
|
+
</material>
|
|
839
|
+
</visual>
|
|
840
|
+
<collision>
|
|
841
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
842
|
+
<geometry>
|
|
843
|
+
<mesh filename="package://drchubo/meshes/convhull_RSY_merged.stl" />
|
|
844
|
+
</geometry>
|
|
845
|
+
</collision>
|
|
846
|
+
</link>
|
|
847
|
+
<link name="Body_REP">
|
|
848
|
+
<inertial>
|
|
849
|
+
<origin rpy="-0 0 -0" xyz="-0.02571445335908 -0.00080617852028866399 -0.041785358716466603" />
|
|
850
|
+
<mass value="0.267758871202315" />
|
|
851
|
+
<inertia ixx="0.000341774590608957" ixy="8.9470476429373695e-07" ixz="5.48147249702E-05" iyy="0.000322402837807457" iyz="-2.9300672847597200e-06" izz="0.000239480055722266" />
|
|
852
|
+
</inertial>
|
|
853
|
+
<visual>
|
|
854
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
855
|
+
<geometry>
|
|
856
|
+
<mesh filename="package://drchubo/meshes/convhull_REP_merged.stl" />
|
|
857
|
+
</geometry>
|
|
858
|
+
<material name="">
|
|
859
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
860
|
+
</material>
|
|
861
|
+
</visual>
|
|
862
|
+
<collision>
|
|
863
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
864
|
+
<geometry>
|
|
865
|
+
<mesh filename="package://drchubo/meshes/convhull_REP_merged.stl" />
|
|
866
|
+
</geometry>
|
|
867
|
+
</collision>
|
|
868
|
+
</link>
|
|
869
|
+
<link name="Body_RWY">
|
|
870
|
+
<inertial>
|
|
871
|
+
<origin rpy="-0 0 -0" xyz="3.99379011692602E-05 -0.0577379856357585 -0.15171876502304399" />
|
|
872
|
+
<mass value="1.37072161761866" />
|
|
873
|
+
<inertia ixx="0.0138917492745533" ixy="3.5425177800418901e-06" ixz="7.9309444806889E-06" iyy="0.0118173705529259" iyz="3.9427324662846402e-03" izz="0.00267824831844074" />
|
|
874
|
+
</inertial>
|
|
875
|
+
<visual>
|
|
876
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
877
|
+
<geometry>
|
|
878
|
+
<mesh filename="package://drchubo/meshes/convhull_RWY_merged.stl" />
|
|
879
|
+
</geometry>
|
|
880
|
+
<material name="">
|
|
881
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
882
|
+
</material>
|
|
883
|
+
</visual>
|
|
884
|
+
<collision>
|
|
885
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
886
|
+
<geometry>
|
|
887
|
+
<mesh filename="package://drchubo/meshes/convhull_RWY_merged.stl" />
|
|
888
|
+
</geometry>
|
|
889
|
+
</collision>
|
|
890
|
+
</link>
|
|
891
|
+
<link name="Body_RWP">
|
|
892
|
+
<inertial>
|
|
893
|
+
<origin rpy="-0 0 -0" xyz="-0.00037873907121759699 -0.010888243491304499 0.017009370610731701" />
|
|
894
|
+
<mass value="0.294902574333316" />
|
|
895
|
+
<inertia ixx="0.000715165417977553" ixy="1.5154396924067100e-06" ixz="-4.37551165446012E-06" iyy="0.000574579884042658" iyz="5.5583549065965003e-05" izz="0.000301632100473859" />
|
|
896
|
+
</inertial>
|
|
897
|
+
<visual>
|
|
898
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
899
|
+
<geometry>
|
|
900
|
+
<mesh filename="package://drchubo/meshes/convhull_RWP_merged.stl" />
|
|
901
|
+
</geometry>
|
|
902
|
+
<material name="">
|
|
903
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
904
|
+
</material>
|
|
905
|
+
</visual>
|
|
906
|
+
<collision>
|
|
907
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
908
|
+
<geometry>
|
|
909
|
+
<mesh filename="package://drchubo/meshes/convhull_RWP_merged.stl" />
|
|
910
|
+
</geometry>
|
|
911
|
+
</collision>
|
|
912
|
+
</link>
|
|
913
|
+
<link name="Body_RWR">
|
|
914
|
+
<inertial>
|
|
915
|
+
<origin rpy="-0 0 -0" xyz="0.0052673447224298202 0.00165481505247564 -0.047696718384656701" />
|
|
916
|
+
<mass value="0.474006924726537" />
|
|
917
|
+
<inertia ixx="0.000397832341494148" ixy="-2.6284743947387800e-06" ixz="-1.84132721696329E-05" iyy="0.000310585574870465" iyz="5.7461134045111800e-06" izz="0.000251799615334244" />
|
|
918
|
+
</inertial>
|
|
919
|
+
<visual>
|
|
920
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
921
|
+
<geometry>
|
|
922
|
+
<mesh filename="package://drchubo/meshes/convhull_RWR_merged.stl" />
|
|
923
|
+
</geometry>
|
|
924
|
+
<material name="">
|
|
925
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
926
|
+
</material>
|
|
927
|
+
</visual>
|
|
928
|
+
<collision>
|
|
929
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
930
|
+
<geometry>
|
|
931
|
+
<mesh filename="package://drchubo/meshes/convhull_RWR_merged.stl" />
|
|
932
|
+
</geometry>
|
|
933
|
+
</collision>
|
|
934
|
+
</link>
|
|
935
|
+
<link name="Body_RF11">
|
|
936
|
+
<inertial>
|
|
937
|
+
<origin rpy="-0 0 -0" xyz="4.0808242114456797E-06 0.010365457906814099 -0.022357214658374602" />
|
|
938
|
+
<mass value="0.0209635645691505" />
|
|
939
|
+
<inertia ixx="5.79877083007342E-06" ixy="3.6189665497296299e-09" ixz="2.45166522675331E-07" iyy="6.02432212425641E-06" iyz="-1.2116739475733400e-09" izz="1.78245355770108E-06" />
|
|
940
|
+
</inertial>
|
|
941
|
+
<visual>
|
|
942
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
943
|
+
<geometry>
|
|
944
|
+
<mesh filename="package://drchubo/meshes/convhull_RF1.stl" />
|
|
945
|
+
</geometry>
|
|
946
|
+
<material name="">
|
|
947
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
948
|
+
</material>
|
|
949
|
+
</visual>
|
|
950
|
+
<collision>
|
|
951
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
952
|
+
<geometry>
|
|
953
|
+
<mesh filename="package://drchubo/meshes/convhull_RF1.stl" />
|
|
954
|
+
</geometry>
|
|
955
|
+
</collision>
|
|
956
|
+
</link>
|
|
957
|
+
<link name="Body_RF12">
|
|
958
|
+
<inertial>
|
|
959
|
+
<origin rpy="-0 0 -0" xyz="0.00013094697176082399 -0.00022677183338540299 -0.0135375370531412" />
|
|
960
|
+
<mass value="0.0121177256078384" />
|
|
961
|
+
<inertia ixx="2.50372945957958E-06" ixy="2.3280589150823100e-09" ixz="5.14105106916585E-08" iyy="2.26813369660349E-06" iyz="4.9296412483752203e-09" izz="1.22101156825522E-06" />
|
|
962
|
+
</inertial>
|
|
963
|
+
<visual>
|
|
964
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
965
|
+
<geometry>
|
|
966
|
+
<mesh filename="package://drchubo/meshes/convhull_RF2.stl" />
|
|
967
|
+
</geometry>
|
|
968
|
+
<material name="">
|
|
969
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
970
|
+
</material>
|
|
971
|
+
</visual>
|
|
972
|
+
<collision>
|
|
973
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
974
|
+
<geometry>
|
|
975
|
+
<mesh filename="package://drchubo/meshes/convhull_RF2.stl" />
|
|
976
|
+
</geometry>
|
|
977
|
+
</collision>
|
|
978
|
+
</link>
|
|
979
|
+
<link name="Body_RF13">
|
|
980
|
+
<inertial>
|
|
981
|
+
<origin rpy="-0 0 -0" xyz="0.00016938613030157901 -0.00035689841965924602 -0.016316521975207599" />
|
|
982
|
+
<mass value="0.0163435127658012" />
|
|
983
|
+
<inertia ixx="2.35338373719888E-06" ixy="4.4210418009567002e-09" ixz="1.38024261681812E-07" iyy="2.40973096927305E-06" iyz="2.8221502007736200e-08" izz="9.69758896639509E-07" />
|
|
984
|
+
</inertial>
|
|
985
|
+
<visual>
|
|
986
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
987
|
+
<geometry>
|
|
988
|
+
<mesh filename="package://drchubo/meshes/convhull_RF3.stl" />
|
|
989
|
+
</geometry>
|
|
990
|
+
<material name="">
|
|
991
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
992
|
+
</material>
|
|
993
|
+
</visual>
|
|
994
|
+
<collision>
|
|
995
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
996
|
+
<geometry>
|
|
997
|
+
<mesh filename="package://drchubo/meshes/convhull_RF3.stl" />
|
|
998
|
+
</geometry>
|
|
999
|
+
</collision>
|
|
1000
|
+
</link>
|
|
1001
|
+
<link name="Body_RHY">
|
|
1002
|
+
<inertial>
|
|
1003
|
+
<origin rpy="-0 0 -0" xyz="0.037812360071945397 -2.54097696217315E-08 -0.116128242308007" />
|
|
1004
|
+
<mass value="1.02665437743596" />
|
|
1005
|
+
<inertia ixx="0.00249606232939035" ixy="2.7627207566620200e-09" ixz="-0.000829704581049298" iyy="0.00377324783994803" iyz="-5.7913276862023304e-10" izz="0.0021281978106318" />
|
|
1006
|
+
</inertial>
|
|
1007
|
+
<visual>
|
|
1008
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
1009
|
+
<geometry>
|
|
1010
|
+
<mesh filename="package://drchubo/meshes/convhull_RHY_merged.stl" />
|
|
1011
|
+
</geometry>
|
|
1012
|
+
<material name="">
|
|
1013
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
1014
|
+
</material>
|
|
1015
|
+
</visual>
|
|
1016
|
+
<collision>
|
|
1017
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
1018
|
+
<geometry>
|
|
1019
|
+
<mesh filename="package://drchubo/meshes/convhull_RHY_merged.stl" />
|
|
1020
|
+
</geometry>
|
|
1021
|
+
</collision>
|
|
1022
|
+
</link>
|
|
1023
|
+
<link name="Body_RHR">
|
|
1024
|
+
<inertial>
|
|
1025
|
+
<origin rpy="-0 0 -0" xyz="0.0047372399648424497 0.0048293176030287897 -0.032556369283015897" />
|
|
1026
|
+
<mass value="1.37473370900606" />
|
|
1027
|
+
<inertia ixx="0.00222021321390697" ixy="-3.0134495931526598e-05" ixz="0.000214745489876361" iyy="0.00208177057868792" iyz="-6.9936326190367105e-05" izz="0.00174245289623185" />
|
|
1028
|
+
</inertial>
|
|
1029
|
+
<visual>
|
|
1030
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
1031
|
+
<geometry>
|
|
1032
|
+
<mesh filename="package://drchubo/meshes/convhull_RHR_merged.stl" />
|
|
1033
|
+
</geometry>
|
|
1034
|
+
<material name="">
|
|
1035
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
1036
|
+
</material>
|
|
1037
|
+
</visual>
|
|
1038
|
+
<collision>
|
|
1039
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
1040
|
+
<geometry>
|
|
1041
|
+
<mesh filename="package://drchubo/meshes/convhull_RHR_merged.stl" />
|
|
1042
|
+
</geometry>
|
|
1043
|
+
</collision>
|
|
1044
|
+
</link>
|
|
1045
|
+
<link name="Body_RHP">
|
|
1046
|
+
<inertial>
|
|
1047
|
+
<origin rpy="-0 0 -0" xyz="0.013982097375642899 -0.0119128547059099 -0.190050892707924" />
|
|
1048
|
+
<mass value="3.39708806380558" />
|
|
1049
|
+
<inertia ixx="0.0610144402594715" ixy="6.7918316326831898e-04" ixz="-0.00115726366946058" iyy="0.0588960128286437" iyz="-3.8119020042566699e-03" izz="0.00864106131257887" />
|
|
1050
|
+
</inertial>
|
|
1051
|
+
<visual>
|
|
1052
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
1053
|
+
<geometry>
|
|
1054
|
+
<mesh filename="package://drchubo/meshes/convhull_RHP_merged.stl" />
|
|
1055
|
+
</geometry>
|
|
1056
|
+
<material name="">
|
|
1057
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
1058
|
+
</material>
|
|
1059
|
+
</visual>
|
|
1060
|
+
<collision>
|
|
1061
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
1062
|
+
<geometry>
|
|
1063
|
+
<mesh filename="package://drchubo/meshes/convhull_RHP_merged.stl" />
|
|
1064
|
+
</geometry>
|
|
1065
|
+
</collision>
|
|
1066
|
+
</link>
|
|
1067
|
+
<link name="Body_RKP">
|
|
1068
|
+
<inertial>
|
|
1069
|
+
<origin rpy="-0 0 -0" xyz="0.016712842596824401 0.0042317406489818798 -0.16354798162054701" />
|
|
1070
|
+
<mass value="1.2513314922159" />
|
|
1071
|
+
<inertia ixx="0.0176853262863822" ixy="-5.9758804075860202e-05" ixz="0.000242087956452148" iyy="0.0161941871476601" iyz="-2.0595367105806700e-05" izz="0.00355046513294474" />
|
|
1072
|
+
</inertial>
|
|
1073
|
+
<visual>
|
|
1074
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
1075
|
+
<geometry>
|
|
1076
|
+
<mesh filename="package://drchubo/meshes/convhull_RKP_merged.stl" />
|
|
1077
|
+
</geometry>
|
|
1078
|
+
<material name="">
|
|
1079
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
1080
|
+
</material>
|
|
1081
|
+
</visual>
|
|
1082
|
+
<collision>
|
|
1083
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
1084
|
+
<geometry>
|
|
1085
|
+
<mesh filename="package://drchubo/meshes/convhull_RKP_merged.stl" />
|
|
1086
|
+
</geometry>
|
|
1087
|
+
</collision>
|
|
1088
|
+
</link>
|
|
1089
|
+
<link name="Body_RAP">
|
|
1090
|
+
<inertial>
|
|
1091
|
+
<origin rpy="-0 0 -0" xyz="0.0148223972690647 -0.010056273874808799 0.0099746777530536103" />
|
|
1092
|
+
<mass value="2.00597218062827" />
|
|
1093
|
+
<inertia ixx="0.00317573590934402" ixy="3.0397733226893999e-04" ixz="-0.000298327569678596" iyy="0.00347243568780368" iyz="3.2009363172895699e-04" izz="0.0036796574607068" />
|
|
1094
|
+
</inertial>
|
|
1095
|
+
<visual>
|
|
1096
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
1097
|
+
<geometry>
|
|
1098
|
+
<mesh filename="package://drchubo/meshes/convhull_RAP_merged.stl" />
|
|
1099
|
+
</geometry>
|
|
1100
|
+
<material name="">
|
|
1101
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
1102
|
+
</material>
|
|
1103
|
+
</visual>
|
|
1104
|
+
<collision>
|
|
1105
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
1106
|
+
<geometry>
|
|
1107
|
+
<mesh filename="package://drchubo/meshes/convhull_RAP_merged.stl" />
|
|
1108
|
+
</geometry>
|
|
1109
|
+
</collision>
|
|
1110
|
+
</link>
|
|
1111
|
+
<link name="Body_RAR">
|
|
1112
|
+
<inertial>
|
|
1113
|
+
<origin rpy="-0 0 -0" xyz="0.0165455008793805 -0.0021608598220959202 -0.095291506213009705" />
|
|
1114
|
+
<mass value="1.06815376654094" />
|
|
1115
|
+
<inertia ixx="0.00372790935829238" ixy="-3.1339146296803101e-05" ixz="-0.000480888102685697" iyy="0.00607005664613535" iyz="9.4251489786900507e-05" izz="0.00420512438203011" />
|
|
1116
|
+
</inertial>
|
|
1117
|
+
<visual>
|
|
1118
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
1119
|
+
<geometry>
|
|
1120
|
+
<mesh filename="package://drchubo/meshes/convhull_RAR_merged.stl" />
|
|
1121
|
+
</geometry>
|
|
1122
|
+
<material name="">
|
|
1123
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
1124
|
+
</material>
|
|
1125
|
+
</visual>
|
|
1126
|
+
<collision>
|
|
1127
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
1128
|
+
<geometry>
|
|
1129
|
+
<mesh filename="package://drchubo/meshes/convhull_RAR_merged.stl" />
|
|
1130
|
+
</geometry>
|
|
1131
|
+
</collision>
|
|
1132
|
+
</link>
|
|
1133
|
+
<link name="Body_RF21">
|
|
1134
|
+
<inertial>
|
|
1135
|
+
<origin rpy="-0 0 -0" xyz="4.0808242114456797E-06 0.010365457906814099 -0.022357214658374602" />
|
|
1136
|
+
<mass value="0.0209635645691505" />
|
|
1137
|
+
<inertia ixx="5.79877083007342E-06" ixy="3.6189665497296299e-09" ixz="2.45166522675331E-07" iyy="6.02432212425641E-06" iyz="-1.2116739475733400e-09" izz="1.78245355770108E-06" />
|
|
1138
|
+
</inertial>
|
|
1139
|
+
<visual>
|
|
1140
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
1141
|
+
<geometry>
|
|
1142
|
+
<mesh filename="package://drchubo/meshes/convhull_RF1.stl" />
|
|
1143
|
+
</geometry>
|
|
1144
|
+
<material name="">
|
|
1145
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
1146
|
+
</material>
|
|
1147
|
+
</visual>
|
|
1148
|
+
<collision>
|
|
1149
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
1150
|
+
<geometry>
|
|
1151
|
+
<mesh filename="package://drchubo/meshes/convhull_RF1.stl" />
|
|
1152
|
+
</geometry>
|
|
1153
|
+
</collision>
|
|
1154
|
+
</link>
|
|
1155
|
+
<link name="Body_RF22">
|
|
1156
|
+
<inertial>
|
|
1157
|
+
<origin rpy="-0 0 -0" xyz="0.00013094697176082399 -0.00022677183338540299 -0.0135375370531412" />
|
|
1158
|
+
<mass value="0.0121177256078384" />
|
|
1159
|
+
<inertia ixx="2.50372945957958E-06" ixy="2.3280589150823100e-09" ixz="5.14105106916585E-08" iyy="2.26813369660349E-06" iyz="4.9296412483752203e-09" izz="1.22101156825522E-06" />
|
|
1160
|
+
</inertial>
|
|
1161
|
+
<visual>
|
|
1162
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
1163
|
+
<geometry>
|
|
1164
|
+
<mesh filename="package://drchubo/meshes/convhull_RF2.stl" />
|
|
1165
|
+
</geometry>
|
|
1166
|
+
<material name="">
|
|
1167
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
1168
|
+
</material>
|
|
1169
|
+
</visual>
|
|
1170
|
+
<collision>
|
|
1171
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
1172
|
+
<geometry>
|
|
1173
|
+
<mesh filename="package://drchubo/meshes/convhull_RF2.stl" />
|
|
1174
|
+
</geometry>
|
|
1175
|
+
</collision>
|
|
1176
|
+
</link>
|
|
1177
|
+
<link name="Body_RF23">
|
|
1178
|
+
<inertial>
|
|
1179
|
+
<origin rpy="-0 0 -0" xyz="0.00016938613030157901 -0.00035689841965924602 -0.016316521975207599" />
|
|
1180
|
+
<mass value="0.0163435127658012" />
|
|
1181
|
+
<inertia ixx="2.35338373719888E-06" ixy="4.4210418009567002e-09" ixz="1.38024261681812E-07" iyy="2.40973096927305E-06" iyz="2.8221502007736200e-08" izz="9.69758896639509E-07" />
|
|
1182
|
+
</inertial>
|
|
1183
|
+
<visual>
|
|
1184
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
1185
|
+
<geometry>
|
|
1186
|
+
<mesh filename="package://drchubo/meshes/convhull_RF3.stl" />
|
|
1187
|
+
</geometry>
|
|
1188
|
+
<material name="">
|
|
1189
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
1190
|
+
</material>
|
|
1191
|
+
</visual>
|
|
1192
|
+
<collision>
|
|
1193
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
1194
|
+
<geometry>
|
|
1195
|
+
<mesh filename="package://drchubo/meshes/convhull_RF3.stl" />
|
|
1196
|
+
</geometry>
|
|
1197
|
+
</collision>
|
|
1198
|
+
</link>
|
|
1199
|
+
<link name="Body_RF31">
|
|
1200
|
+
<inertial>
|
|
1201
|
+
<origin rpy="-0 0 -0" xyz="4.0808242114456797E-06 0.010365457906814099 -0.022357214658374602" />
|
|
1202
|
+
<mass value="0.0209635645691505" />
|
|
1203
|
+
<inertia ixx="5.79877083007342E-06" ixy="3.6189665497296299e-09" ixz="2.45166522675331E-07" iyy="6.02432212425641E-06" iyz="-1.2116739475733400e-09" izz="1.78245355770108E-06" />
|
|
1204
|
+
</inertial>
|
|
1205
|
+
<visual>
|
|
1206
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
1207
|
+
<geometry>
|
|
1208
|
+
<mesh filename="package://drchubo/meshes/convhull_RF1.stl" />
|
|
1209
|
+
</geometry>
|
|
1210
|
+
<material name="">
|
|
1211
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
1212
|
+
</material>
|
|
1213
|
+
</visual>
|
|
1214
|
+
<collision>
|
|
1215
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
1216
|
+
<geometry>
|
|
1217
|
+
<mesh filename="package://drchubo/meshes/convhull_RF1.stl" />
|
|
1218
|
+
</geometry>
|
|
1219
|
+
</collision>
|
|
1220
|
+
</link>
|
|
1221
|
+
<link name="Body_RF32">
|
|
1222
|
+
<inertial>
|
|
1223
|
+
<origin rpy="-0 0 -0" xyz="0.00013094697176082399 -0.00022677183338540299 -0.0135375370531412" />
|
|
1224
|
+
<mass value="0.0121177256078384" />
|
|
1225
|
+
<inertia ixx="2.50372945957958E-06" ixy="2.3280589150823100e-09" ixz="5.14105106916585E-08" iyy="2.26813369660349E-06" iyz="4.9296412483752203e-09" izz="1.22101156825522E-06" />
|
|
1226
|
+
</inertial>
|
|
1227
|
+
<visual>
|
|
1228
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
1229
|
+
<geometry>
|
|
1230
|
+
<mesh filename="package://drchubo/meshes/convhull_RF2.stl" />
|
|
1231
|
+
</geometry>
|
|
1232
|
+
<material name="">
|
|
1233
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
1234
|
+
</material>
|
|
1235
|
+
</visual>
|
|
1236
|
+
<collision>
|
|
1237
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
1238
|
+
<geometry>
|
|
1239
|
+
<mesh filename="package://drchubo/meshes/convhull_RF2.stl" />
|
|
1240
|
+
</geometry>
|
|
1241
|
+
</collision>
|
|
1242
|
+
</link>
|
|
1243
|
+
<link name="Body_RF33">
|
|
1244
|
+
<inertial>
|
|
1245
|
+
<origin rpy="-0 0 -0" xyz="0.00016938613030157901 -0.00035689841965924602 -0.016316521975207599" />
|
|
1246
|
+
<mass value="0.0163435127658012" />
|
|
1247
|
+
<inertia ixx="2.35338373719888E-06" ixy="4.4210418009567002e-09" ixz="1.38024261681812E-07" iyy="2.40973096927305E-06" iyz="2.8221502007736200e-08" izz="9.69758896639509E-07" />
|
|
1248
|
+
</inertial>
|
|
1249
|
+
<visual>
|
|
1250
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
1251
|
+
<geometry>
|
|
1252
|
+
<mesh filename="package://drchubo/meshes/convhull_RF3.stl" />
|
|
1253
|
+
</geometry>
|
|
1254
|
+
<material name="">
|
|
1255
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
1256
|
+
</material>
|
|
1257
|
+
</visual>
|
|
1258
|
+
<collision>
|
|
1259
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
1260
|
+
<geometry>
|
|
1261
|
+
<mesh filename="package://drchubo/meshes/convhull_RF3.stl" />
|
|
1262
|
+
</geometry>
|
|
1263
|
+
</collision>
|
|
1264
|
+
</link>
|
|
1265
|
+
|
|
1266
|
+
<link name="Body_RF41">
|
|
1267
|
+
<inertial>
|
|
1268
|
+
<origin rpy="-0 0 -0" xyz="4.0808242114456797E-06 0.010365457906814099 -0.022357214658374602" />
|
|
1269
|
+
<mass value="0.0209635645691505" />
|
|
1270
|
+
<inertia ixx="5.79877083007342E-06" ixy="3.6189665497296299e-09" ixz="2.45166522675331E-07" iyy="6.02432212425641E-06" iyz="-1.2116739475733400e-09" izz="1.78245355770108E-06" />
|
|
1271
|
+
</inertial>
|
|
1272
|
+
<visual>
|
|
1273
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
1274
|
+
<geometry>
|
|
1275
|
+
<mesh filename="package://drchubo/meshes/convhull_RF1.stl" />
|
|
1276
|
+
</geometry>
|
|
1277
|
+
<material name="">
|
|
1278
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
1279
|
+
</material>
|
|
1280
|
+
</visual>
|
|
1281
|
+
<collision>
|
|
1282
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
1283
|
+
<geometry>
|
|
1284
|
+
<mesh filename="package://drchubo/meshes/convhull_RF1.stl" />
|
|
1285
|
+
</geometry>
|
|
1286
|
+
</collision>
|
|
1287
|
+
</link>
|
|
1288
|
+
<link name="Body_RF42">
|
|
1289
|
+
<inertial>
|
|
1290
|
+
<origin rpy="-0 0 -0" xyz="0.00013094697176082399 -0.00022677183338540299 -0.0135375370531412" />
|
|
1291
|
+
<mass value="0.0121177256078384" />
|
|
1292
|
+
<inertia ixx="2.50372945957958E-06" ixy="2.3280589150823100e-09" ixz="5.14105106916585E-08" iyy="2.26813369660349E-06" iyz="4.9296412483752203e-09" izz="1.22101156825522E-06" />
|
|
1293
|
+
</inertial>
|
|
1294
|
+
<visual>
|
|
1295
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
1296
|
+
<geometry>
|
|
1297
|
+
<mesh filename="package://drchubo/meshes/convhull_RF2.stl" />
|
|
1298
|
+
</geometry>
|
|
1299
|
+
<material name="">
|
|
1300
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
1301
|
+
</material>
|
|
1302
|
+
</visual>
|
|
1303
|
+
<collision>
|
|
1304
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
1305
|
+
<geometry>
|
|
1306
|
+
<mesh filename="package://drchubo/meshes/convhull_RF2.stl" />
|
|
1307
|
+
</geometry>
|
|
1308
|
+
</collision>
|
|
1309
|
+
</link>
|
|
1310
|
+
<link name="Body_RF43">
|
|
1311
|
+
<inertial>
|
|
1312
|
+
<origin rpy="-0 0 -0" xyz="0.00016938613030157901 -0.00035689841965924602 -0.016316521975207599" />
|
|
1313
|
+
<mass value="0.0163435127658012" />
|
|
1314
|
+
<inertia ixx="2.35338373719888E-06" ixy="4.4210418009567002e-09" ixz="1.38024261681812E-07" iyy="2.40973096927305E-06" iyz="2.8221502007736200e-08" izz="9.69758896639509E-07" />
|
|
1315
|
+
</inertial>
|
|
1316
|
+
<visual>
|
|
1317
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
1318
|
+
<geometry>
|
|
1319
|
+
<mesh filename="package://drchubo/meshes/convhull_RF3.stl" />
|
|
1320
|
+
</geometry>
|
|
1321
|
+
<material name="">
|
|
1322
|
+
<color rgba="0.752941176470588 0.752941176470588 0.752941176470588 1" />
|
|
1323
|
+
</material>
|
|
1324
|
+
</visual>
|
|
1325
|
+
<collision>
|
|
1326
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
1327
|
+
<geometry>
|
|
1328
|
+
<mesh filename="package://drchubo/meshes/convhull_RF3.stl" />
|
|
1329
|
+
</geometry>
|
|
1330
|
+
</collision>
|
|
1331
|
+
</link>
|
|
1332
|
+
<joint name="RSP" type="revolute">
|
|
1333
|
+
<origin rpy="-0 0 -0" xyz="0.0010 -0.1305 0.2061" />
|
|
1334
|
+
<parent link="Body_Torso" />
|
|
1335
|
+
<child link="Body_RSP" />
|
|
1336
|
+
<axis xyz="0 1 0" />
|
|
1337
|
+
<limit effort="100.0" lower="-3.14" upper="3.14" velocity="10.0" />
|
|
1338
|
+
</joint>
|
|
1339
|
+
<joint name="RSR" type="revolute">
|
|
1340
|
+
<origin rpy="-0 0 -0" xyz="0.0330 -0.0990 0" />
|
|
1341
|
+
<parent link="Body_RSP" />
|
|
1342
|
+
<child link="Body_RSR" />
|
|
1343
|
+
<axis xyz="1 0 0" />
|
|
1344
|
+
<limit effort="100.0" lower="-3.14" upper="0.262" velocity="10.0" />
|
|
1345
|
+
</joint>
|
|
1346
|
+
<joint name="RSY" type="revolute">
|
|
1347
|
+
<origin rpy="-0 0 -0" xyz="-0.0330 -0 -0.0270" />
|
|
1348
|
+
<parent link="Body_RSR" />
|
|
1349
|
+
<child link="Body_RSY" />
|
|
1350
|
+
<axis xyz="0 0 1" />
|
|
1351
|
+
<limit effort="100.0" lower="-3.14" upper="2.0" velocity="10.0" />
|
|
1352
|
+
</joint>
|
|
1353
|
+
<joint name="REP" type="revolute">
|
|
1354
|
+
<origin rpy="-0 0 -0" xyz="0.0300 0 -0.2730" />
|
|
1355
|
+
<parent link="Body_RSY" />
|
|
1356
|
+
<child link="Body_REP" />
|
|
1357
|
+
<axis xyz="0 1 0" />
|
|
1358
|
+
<limit effort="100.0" lower="-2.96" upper=".2" velocity="10.0" />
|
|
1359
|
+
</joint>
|
|
1360
|
+
<joint name="RWY" type="revolute">
|
|
1361
|
+
<origin rpy="-0 0 0" xyz="-0.0300 0 -0.0520" />
|
|
1362
|
+
<parent link="Body_REP" />
|
|
1363
|
+
<child link="Body_RWY" />
|
|
1364
|
+
<axis xyz="0 0 1" />
|
|
1365
|
+
<limit effort="100.0" lower="-3.14" upper="3.14" velocity="10.0" />
|
|
1366
|
+
</joint>
|
|
1367
|
+
<joint name="RWP" type="revolute">
|
|
1368
|
+
<origin rpy="-0 0 -0" xyz="0 -0 -0.2618" />
|
|
1369
|
+
<parent link="Body_RWY" />
|
|
1370
|
+
<child link="Body_RWP" />
|
|
1371
|
+
<axis xyz="0 1 0" />
|
|
1372
|
+
<limit effort="100.0" lower="-3.14" upper="3.14" velocity="10.0" />
|
|
1373
|
+
</joint>
|
|
1374
|
+
<joint name="RWR" type="revolute">
|
|
1375
|
+
<origin rpy="-0 0 -1.57079632679" xyz="0 -0 -0.0275" />
|
|
1376
|
+
<parent link="Body_RWP" />
|
|
1377
|
+
<child link="Body_RWR" />
|
|
1378
|
+
<axis xyz="0 0 1" />
|
|
1379
|
+
<limit effort="100.0" lower="-3.14" upper="3.14" velocity="10.0" />
|
|
1380
|
+
</joint>
|
|
1381
|
+
<joint name="RF11" type="revolute">
|
|
1382
|
+
<origin rpy="-0 0 -0" xyz="0.0230 0.0120 -0.0755" />
|
|
1383
|
+
<parent link="Body_RWR" />
|
|
1384
|
+
<child link="Body_RF11" />
|
|
1385
|
+
<axis xyz="0 1 0" />
|
|
1386
|
+
<limit effort="10.0" lower="-1.5" upper=".1" velocity="2.0" />
|
|
1387
|
+
</joint>
|
|
1388
|
+
<joint name="RF12" type="revolute">
|
|
1389
|
+
<origin rpy="-0 0 -0" xyz="-0.0020 0.0105 -0.0420" />
|
|
1390
|
+
<parent link="Body_RF11" />
|
|
1391
|
+
<child link="Body_RF12" />
|
|
1392
|
+
<axis xyz="0 1 0" />
|
|
1393
|
+
<limit effort="10.0" lower="-1.5" upper=".1" velocity="2.0" />
|
|
1394
|
+
</joint>
|
|
1395
|
+
<joint name="RF13" type="revolute">
|
|
1396
|
+
<origin rpy="-0 0 -0" xyz="-0.0014 -0 -0.0300" />
|
|
1397
|
+
<parent link="Body_RF12" />
|
|
1398
|
+
<child link="Body_RF13" />
|
|
1399
|
+
<axis xyz="0 1 0" />
|
|
1400
|
+
<limit effort="10.0" lower="-1.5" upper=".1" velocity="2.0" />
|
|
1401
|
+
</joint>
|
|
1402
|
+
<joint name="RHY" type="revolute">
|
|
1403
|
+
<origin rpy="-0 0 -0" xyz="0 -0.0885 -0.0230" />
|
|
1404
|
+
<parent link="Body_TSY" />
|
|
1405
|
+
<child link="Body_RHY" />
|
|
1406
|
+
<axis xyz="0 0 1" />
|
|
1407
|
+
<limit effort="100.0" lower="-1.92" upper="1.92" velocity="10.0" />
|
|
1408
|
+
</joint>
|
|
1409
|
+
<joint name="RHR" type="revolute">
|
|
1410
|
+
<origin rpy="-0 0 -0" xyz="0 -0 -0.1410" />
|
|
1411
|
+
<parent link="Body_RHY" />
|
|
1412
|
+
<child link="Body_RHR" />
|
|
1413
|
+
<axis xyz="1 0 0" />
|
|
1414
|
+
<limit effort="100.0" lower="-0.52" upper="0.52" velocity="10.0" />
|
|
1415
|
+
</joint>
|
|
1416
|
+
<joint name="RHP" type="revolute">
|
|
1417
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
1418
|
+
<parent link="Body_RHR" />
|
|
1419
|
+
<child link="Body_RHP" />
|
|
1420
|
+
<axis xyz="0 1 0" />
|
|
1421
|
+
<limit effort="100.0" lower="-1.87" upper="1.61" velocity="10.0" />
|
|
1422
|
+
</joint>
|
|
1423
|
+
<joint name="RKP" type="revolute">
|
|
1424
|
+
<origin rpy="-0 0 -0" xyz="0 -0 -0.3299" />
|
|
1425
|
+
<parent link="Body_RHP" />
|
|
1426
|
+
<child link="Body_RKP" />
|
|
1427
|
+
<axis xyz="0 1 0" />
|
|
1428
|
+
<limit effort="100.0" lower="-0.07" upper="2.61" velocity="10.0" />
|
|
1429
|
+
</joint>
|
|
1430
|
+
<joint name="RAP" type="revolute">
|
|
1431
|
+
<origin rpy="-0 0 -0" xyz="0 -0 -0.3300" />
|
|
1432
|
+
<parent link="Body_RKP" />
|
|
1433
|
+
<child link="Body_RAP" />
|
|
1434
|
+
<axis xyz="0 1 0" />
|
|
1435
|
+
<limit effort="100.0" lower="-1.7" upper="1.7" velocity="10.0" />
|
|
1436
|
+
</joint>
|
|
1437
|
+
<joint name="RAR" type="revolute">
|
|
1438
|
+
<origin rpy="-0 0 -0" xyz="0 -0 0" />
|
|
1439
|
+
<parent link="Body_RAP" />
|
|
1440
|
+
<child link="Body_RAR" />
|
|
1441
|
+
<axis xyz="1 0 0" />
|
|
1442
|
+
<limit effort="100.0" lower="-1.57" upper="1.57" velocity="10.0" />
|
|
1443
|
+
</joint>
|
|
1444
|
+
<joint name="RF21" type="revolute">
|
|
1445
|
+
<origin rpy="-0 0 -0" xyz="0.0230 -0.0330 -0.0755" />
|
|
1446
|
+
<parent link="Body_RWR" />
|
|
1447
|
+
<child link="Body_RF21" />
|
|
1448
|
+
<axis xyz="0 1 0" />
|
|
1449
|
+
<limit effort="10.0" lower="-1.5" upper=".1" velocity="2.0" />
|
|
1450
|
+
</joint>
|
|
1451
|
+
<joint name="RF22" type="revolute">
|
|
1452
|
+
<origin rpy="-0 0 -0" xyz="-0.0020 0.0105 -0.0420" />
|
|
1453
|
+
<parent link="Body_RF21" />
|
|
1454
|
+
<child link="Body_RF22" />
|
|
1455
|
+
<axis xyz="0 1 0" />
|
|
1456
|
+
<limit effort="10.0" lower="-1.5" upper=".1" velocity="2.0" />
|
|
1457
|
+
</joint>
|
|
1458
|
+
<joint name="RF23" type="revolute">
|
|
1459
|
+
<origin rpy="-0 0 -0" xyz="-0.0014 -0 -0.0300" />
|
|
1460
|
+
<parent link="Body_RF22" />
|
|
1461
|
+
<child link="Body_RF23" />
|
|
1462
|
+
<axis xyz="0 1 0" />
|
|
1463
|
+
<limit effort="10.0" lower="-1.5" upper=".1" velocity="2.0" />
|
|
1464
|
+
</joint>
|
|
1465
|
+
|
|
1466
|
+
<joint name="RF31" type="revolute">
|
|
1467
|
+
<origin rpy="-0 0 -3.141592653589" xyz="-0.023 0.0105 -0.0755" />
|
|
1468
|
+
<parent link="Body_RWR" />
|
|
1469
|
+
<child link="Body_RF31" />
|
|
1470
|
+
<axis xyz="0 -1 0" />
|
|
1471
|
+
<limit effort="10.0" lower="-1.5" upper=".1" velocity="2.0" />
|
|
1472
|
+
</joint>
|
|
1473
|
+
<joint name="RF32" type="revolute">
|
|
1474
|
+
<origin rpy="0 0 0" xyz="-0.0020 0.0105 -0.0420" />
|
|
1475
|
+
<parent link="Body_RF31" />
|
|
1476
|
+
<child link="Body_RF32" />
|
|
1477
|
+
<axis xyz="0 -1 0" />
|
|
1478
|
+
<limit effort="10.0" lower="-1.5" upper=".1" velocity="2.0" />
|
|
1479
|
+
</joint>
|
|
1480
|
+
<joint name="RF33" type="revolute">
|
|
1481
|
+
<origin rpy="-0 0 -0" xyz="-0.0014 -0 -0.0300" />
|
|
1482
|
+
<parent link="Body_RF32" />
|
|
1483
|
+
<child link="Body_RF33" />
|
|
1484
|
+
<axis xyz="0 -1 0" />
|
|
1485
|
+
<limit effort="10.0" lower="-1.5" upper=".1" velocity="2.0" />
|
|
1486
|
+
</joint>
|
|
1487
|
+
<joint name="RF41" type="revolute">
|
|
1488
|
+
<origin rpy="-0 0 -3.141592653589" xyz="-0.0230 0.0555 -0.0755" />
|
|
1489
|
+
<parent link="Body_RWR" />
|
|
1490
|
+
<child link="Body_RF41" />
|
|
1491
|
+
<axis xyz="0 -1 0" />
|
|
1492
|
+
<limit effort="10.0" lower="-1.5" upper=".1" velocity="2.0" />
|
|
1493
|
+
</joint>
|
|
1494
|
+
<joint name="RF42" type="revolute">
|
|
1495
|
+
<origin rpy="-0 0 -0" xyz="-0.002 0.0105 -0.0420" />
|
|
1496
|
+
<parent link="Body_RF41" />
|
|
1497
|
+
<child link="Body_RF42" />
|
|
1498
|
+
<axis xyz="0 -1 0" />
|
|
1499
|
+
<limit effort="10.0" lower="-1.5" upper=".1" velocity="2.0" />
|
|
1500
|
+
</joint>
|
|
1501
|
+
<joint name="RF43" type="revolute">
|
|
1502
|
+
<origin rpy="-0 0 -0" xyz="-0.0014 -0 -0.0300" />
|
|
1503
|
+
<parent link="Body_RF42" />
|
|
1504
|
+
<child link="Body_RF43" />
|
|
1505
|
+
<axis xyz="0 -1 0" />
|
|
1506
|
+
<limit effort="10.0" lower="-1.5" upper=".1" velocity="2.0" />
|
|
1507
|
+
</joint>
|
|
1508
|
+
</robot>
|