dartpy 7.0.0.dev0__cp312-cp312-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.

Files changed (994) hide show
  1. dartpy-7.0.0.dev0.dist-info/METADATA +86 -0
  2. dartpy-7.0.0.dev0.dist-info/RECORD +994 -0
  3. dartpy-7.0.0.dev0.dist-info/WHEEL +5 -0
  4. dartpy-7.0.0.dev0.dist-info/licenses/LICENSE +31 -0
  5. dartpy.cpython-312-x86_64-linux-gnu.so +0 -0
  6. dartpy.libs/libBulletCollision-f96eb02c.so.3.25 +0 -0
  7. dartpy.libs/libBulletDynamics-3cff1f18.so.3.25 +0 -0
  8. dartpy.libs/libBulletSoftBody-220f01bd.so.3.25 +0 -0
  9. dartpy.libs/libLinearMath-71568d02.so.3.25 +0 -0
  10. dartpy.libs/libOpenThreads-8bc434db.so.3.3.1 +0 -0
  11. dartpy.libs/libSDL2-2-3db87ac0.0.so.0.3200.56 +0 -0
  12. dartpy.libs/libassimp-44cf3e77.so.5.4.3 +0 -0
  13. dartpy.libs/libccd-4f119cf4.so.2.0 +0 -0
  14. dartpy.libs/libconsole_bridge-f26e11cc.so.1.0 +0 -0
  15. dartpy.libs/libfcl-2607815a.so.0.7.0 +0 -0
  16. dartpy.libs/libfmt-277170bf.so.11.2.0 +0 -0
  17. dartpy.libs/libfontconfig-559ff509.so.1.14.0 +0 -0
  18. dartpy.libs/libfreetype-64806fc6.so.6.20.4 +0 -0
  19. dartpy.libs/libglfw-6f066845.so.3.4 +0 -0
  20. dartpy.libs/libimgui-ab87b07d.so +0 -0
  21. dartpy.libs/libnlopt-78f9bc34.so.1.0.0 +0 -0
  22. dartpy.libs/liboctomap-38e56f99.so.1.10.0 +0 -0
  23. dartpy.libs/liboctomath-bff26442.so.1.10.0 +0 -0
  24. dartpy.libs/libode-caca20fc.so.8.2.0 +0 -0
  25. dartpy.libs/libosg-e67375e5.so.3.6.5 +0 -0
  26. dartpy.libs/libosgDB-22ae780f.so.3.6.5 +0 -0
  27. dartpy.libs/libosgGA-6af4078b.so.3.6.5 +0 -0
  28. dartpy.libs/libosgManipulator-3270f659.so.3.6.5 +0 -0
  29. dartpy.libs/libosgShadow-127a8d77.so.3.6.5 +0 -0
  30. dartpy.libs/libosgText-87d82d87.so.3.6.5 +0 -0
  31. dartpy.libs/libosgUtil-55896958.so.3.6.5 +0 -0
  32. dartpy.libs/libosgViewer-76d832e3.so.3.6.5 +0 -0
  33. dartpy.libs/libpng16-bd65464e.so.16.50.0 +0 -0
  34. dartpy.libs/libtinyxml2-8d10763c.so.11.0.0 +0 -0
  35. dartpy.libs/liburdfdom_model-7b26ae88.so.4.0 +0 -0
  36. dartpy.libs/liburdfdom_model_state-95a5ad6e.so.4.0 +0 -0
  37. dartpy.libs/liburdfdom_sensor-55a145ea.so.4.0 +0 -0
  38. dartpy.libs/liburdfdom_world-a32c7194.so.4.0 +0 -0
  39. dartpy.libs/libvulkan-8caf1954.so.1.4.328 +0 -0
  40. include/dart/collision/CollisionDetector.hpp +305 -0
  41. include/dart/collision/CollisionFilter.hpp +126 -0
  42. include/dart/collision/CollisionGroup.hpp +546 -0
  43. include/dart/collision/CollisionObject.hpp +90 -0
  44. include/dart/collision/CollisionOption.hpp +71 -0
  45. include/dart/collision/CollisionResult.hpp +109 -0
  46. include/dart/collision/Contact.hpp +103 -0
  47. include/dart/collision/DistanceFilter.hpp +66 -0
  48. include/dart/collision/DistanceOption.hpp +80 -0
  49. include/dart/collision/DistanceResult.hpp +123 -0
  50. include/dart/collision/Option.hpp +42 -0
  51. include/dart/collision/RaycastOption.hpp +58 -0
  52. include/dart/collision/RaycastResult.hpp +80 -0
  53. include/dart/collision/Result.hpp +42 -0
  54. include/dart/collision/SmartPointer.hpp +51 -0
  55. include/dart/collision/all.hpp +17 -0
  56. include/dart/collision/bullet/BulletCollisionDetector.hpp +168 -0
  57. include/dart/collision/bullet/BulletCollisionGroup.hpp +98 -0
  58. include/dart/collision/bullet/BulletCollisionObject.hpp +75 -0
  59. include/dart/collision/bullet/BulletCollisionShape.hpp +62 -0
  60. include/dart/collision/bullet/BulletInclude.hpp +47 -0
  61. include/dart/collision/bullet/BulletTypes.hpp +57 -0
  62. include/dart/collision/bullet/all.hpp +8 -0
  63. include/dart/collision/bullet/bullet.hpp +14 -0
  64. include/dart/collision/bullet/detail/BulletCollisionDispatcher.hpp +70 -0
  65. include/dart/collision/bullet/detail/BulletOverlapFilterCallback.hpp +72 -0
  66. include/dart/collision/collision.hpp +14 -0
  67. include/dart/collision/dart/DARTCollide.hpp +106 -0
  68. include/dart/collision/dart/DARTCollisionDetector.hpp +109 -0
  69. include/dart/collision/dart/DARTCollisionGroup.hpp +82 -0
  70. include/dart/collision/dart/DARTCollisionObject.hpp +63 -0
  71. include/dart/collision/dart/all.hpp +6 -0
  72. include/dart/collision/dart/dart.hpp +14 -0
  73. include/dart/collision/detail/CollisionDetector.hpp +66 -0
  74. include/dart/collision/detail/CollisionGroup.hpp +287 -0
  75. include/dart/collision/detail/Contact-impl.hpp +56 -0
  76. include/dart/collision/detail/UnorderedPairs.hpp +153 -0
  77. include/dart/collision/fcl/BackwardCompatibility.hpp +145 -0
  78. include/dart/collision/fcl/CollisionShapes.hpp +374 -0
  79. include/dart/collision/fcl/FCLCollisionDetector.hpp +204 -0
  80. include/dart/collision/fcl/FCLCollisionGroup.hpp +95 -0
  81. include/dart/collision/fcl/FCLCollisionObject.hpp +72 -0
  82. include/dart/collision/fcl/FCLTypes.hpp +62 -0
  83. include/dart/collision/fcl/TriTriIntersectionTest.hpp +17 -0
  84. include/dart/collision/fcl/all.hpp +9 -0
  85. include/dart/collision/fcl/fcl.hpp +14 -0
  86. include/dart/collision/fcl/tri_tri_intersection_test.hpp +332 -0
  87. include/dart/collision/ode/OdeCollisionDetector.hpp +131 -0
  88. include/dart/collision/ode/OdeCollisionGroup.hpp +87 -0
  89. include/dart/collision/ode/OdeCollisionObject.hpp +89 -0
  90. include/dart/collision/ode/OdeTypes.hpp +51 -0
  91. include/dart/collision/ode/all.hpp +6 -0
  92. include/dart/collision/ode/detail/OdeBox.hpp +58 -0
  93. include/dart/collision/ode/detail/OdeCapsule.hpp +58 -0
  94. include/dart/collision/ode/detail/OdeCylinder.hpp +58 -0
  95. include/dart/collision/ode/detail/OdeGeom.hpp +83 -0
  96. include/dart/collision/ode/detail/OdeHeightmap-impl.hpp +170 -0
  97. include/dart/collision/ode/detail/OdeHeightmap.hpp +70 -0
  98. include/dart/collision/ode/detail/OdeMesh.hpp +83 -0
  99. include/dart/collision/ode/detail/OdePlane.hpp +67 -0
  100. include/dart/collision/ode/detail/OdeSphere.hpp +58 -0
  101. include/dart/collision/ode/ode.hpp +14 -0
  102. include/dart/common/Aspect.hpp +215 -0
  103. include/dart/common/AspectWithVersion.hpp +180 -0
  104. include/dart/common/CAllocator.hpp +65 -0
  105. include/dart/common/Castable.hpp +102 -0
  106. include/dart/common/ClassWithVirtualBase.hpp +47 -0
  107. include/dart/common/Cloneable.hpp +327 -0
  108. include/dart/common/Composite.hpp +205 -0
  109. include/dart/common/CompositeJoiner.hpp +160 -0
  110. include/dart/common/Console.hpp +75 -0
  111. include/dart/common/Deprecated.hpp +126 -0
  112. include/dart/common/EmbeddedAspect.hpp +466 -0
  113. include/dart/common/Empty.hpp +55 -0
  114. include/dart/common/Factory.hpp +146 -0
  115. include/dart/common/Filesystem.hpp +112 -0
  116. include/dart/common/FreeListAllocator.hpp +162 -0
  117. include/dart/common/IncludeWindows.hpp +50 -0
  118. include/dart/common/LocalResource.hpp +76 -0
  119. include/dart/common/LocalResourceRetriever.hpp +63 -0
  120. include/dart/common/LockableReference.hpp +166 -0
  121. include/dart/common/Logging.hpp +146 -0
  122. include/dart/common/Macros.hpp +78 -0
  123. include/dart/common/Memory.hpp +215 -0
  124. include/dart/common/MemoryAllocator.hpp +120 -0
  125. include/dart/common/MemoryAllocatorDebugger.hpp +98 -0
  126. include/dart/common/MemoryManager.hpp +189 -0
  127. include/dart/common/Metaprogramming.hpp +68 -0
  128. include/dart/common/NameManager.hpp +184 -0
  129. include/dart/common/Observer.hpp +85 -0
  130. include/dart/common/Optional.hpp +48 -0
  131. include/dart/common/Platform.hpp +92 -0
  132. include/dart/common/PoolAllocator.hpp +141 -0
  133. include/dart/common/Profile.hpp +56 -0
  134. include/dart/common/ProxyAspect.hpp +93 -0
  135. include/dart/common/RequiresAspect.hpp +79 -0
  136. include/dart/common/Resource.hpp +96 -0
  137. include/dart/common/ResourceRetriever.hpp +82 -0
  138. include/dart/common/SharedLibrary.hpp +201 -0
  139. include/dart/common/Signal.hpp +250 -0
  140. include/dart/common/Singleton.hpp +85 -0
  141. include/dart/common/SmartPointer.hpp +63 -0
  142. include/dart/common/SpecializedForAspect.hpp +207 -0
  143. include/dart/common/StlAllocator.hpp +111 -0
  144. include/dart/common/StlHelpers.hpp +61 -0
  145. include/dart/common/Stopwatch.hpp +143 -0
  146. include/dart/common/String.hpp +71 -0
  147. include/dart/common/SubPtr.hpp +17 -0
  148. include/dart/common/Subject.hpp +84 -0
  149. include/dart/common/Timer.hpp +119 -0
  150. include/dart/common/Uri.hpp +229 -0
  151. include/dart/common/VersionCounter.hpp +68 -0
  152. include/dart/common/Virtual.hpp +51 -0
  153. include/dart/common/all.hpp +53 -0
  154. include/dart/common/common.hpp +14 -0
  155. include/dart/common/detail/Aspect.hpp +102 -0
  156. include/dart/common/detail/AspectWithVersion.hpp +455 -0
  157. include/dart/common/detail/Castable-impl.hpp +109 -0
  158. include/dart/common/detail/Cloneable.hpp +638 -0
  159. include/dart/common/detail/Composite.hpp +241 -0
  160. include/dart/common/detail/CompositeData.hpp +393 -0
  161. include/dart/common/detail/CompositeJoiner.hpp +128 -0
  162. include/dart/common/detail/ConnectionBody.hpp +157 -0
  163. include/dart/common/detail/EmbeddedAspect.hpp +487 -0
  164. include/dart/common/detail/Factory-impl.hpp +200 -0
  165. include/dart/common/detail/LockableReference-impl.hpp +156 -0
  166. include/dart/common/detail/Logging-impl.hpp +162 -0
  167. include/dart/common/detail/Memory-impl.hpp +66 -0
  168. include/dart/common/detail/MemoryAllocator-impl.hpp +97 -0
  169. include/dart/common/detail/MemoryAllocatorDebugger-impl.hpp +201 -0
  170. include/dart/common/detail/MemoryManager-impl.hpp +102 -0
  171. include/dart/common/detail/Metaprogramming-impl.hpp +89 -0
  172. include/dart/common/detail/NameManager.hpp +301 -0
  173. include/dart/common/detail/NoOp.hpp +57 -0
  174. include/dart/common/detail/ProxyAspect.hpp +172 -0
  175. include/dart/common/detail/RequiresAspect.hpp +51 -0
  176. include/dart/common/detail/SharedLibraryManager.hpp +106 -0
  177. include/dart/common/detail/Signal.hpp +242 -0
  178. include/dart/common/detail/Singleton-impl.hpp +74 -0
  179. include/dart/common/detail/SpecializedForAspect.hpp +331 -0
  180. include/dart/common/detail/StlAllocator-impl.hpp +108 -0
  181. include/dart/common/detail/Stopwatch-impl.hpp +242 -0
  182. include/dart/common/detail/SubPtr.hpp +17 -0
  183. include/dart/common/detail/TemplateJoinerDispatchMacro.hpp +59 -0
  184. include/dart/common/detail/sub_ptr.hpp +139 -0
  185. include/dart/common/sub_ptr.hpp +103 -0
  186. include/dart/config.hpp +100 -0
  187. include/dart/constraint/BalanceConstraint.hpp +202 -0
  188. include/dart/constraint/BallJointConstraint.hpp +142 -0
  189. include/dart/constraint/BoxedLcpConstraintSolver.hpp +182 -0
  190. include/dart/constraint/BoxedLcpSolver.hpp +101 -0
  191. include/dart/constraint/ConstrainedGroup.hpp +120 -0
  192. include/dart/constraint/ConstraintBase.hpp +141 -0
  193. include/dart/constraint/ConstraintSolver.hpp +325 -0
  194. include/dart/constraint/ContactConstraint.hpp +286 -0
  195. include/dart/constraint/ContactSurface.hpp +191 -0
  196. include/dart/constraint/DantzigBoxedLcpSolver.hpp +71 -0
  197. include/dart/constraint/DantzigLCPSolver.hpp +87 -0
  198. include/dart/constraint/DynamicJointConstraint.hpp +120 -0
  199. include/dart/constraint/JointConstraint.hpp +182 -0
  200. include/dart/constraint/JointCoulombFrictionConstraint.hpp +149 -0
  201. include/dart/constraint/JointLimitConstraint.hpp +185 -0
  202. include/dart/constraint/LCPSolver.hpp +71 -0
  203. include/dart/constraint/MimicMotorConstraint.hpp +164 -0
  204. include/dart/constraint/PGSLCPSolver.hpp +109 -0
  205. include/dart/constraint/PgsBoxedLcpSolver.hpp +106 -0
  206. include/dart/constraint/ServoMotorConstraint.hpp +151 -0
  207. include/dart/constraint/SmartPointer.hpp +69 -0
  208. include/dart/constraint/SoftContactConstraint.hpp +262 -0
  209. include/dart/constraint/WeldJointConstraint.hpp +133 -0
  210. include/dart/constraint/all.hpp +25 -0
  211. include/dart/constraint/constraint.hpp +14 -0
  212. include/dart/constraint/detail/ConstraintSolver-impl.hpp +78 -0
  213. include/dart/dart.hpp +44 -0
  214. include/dart/dynamics/ArrowShape.hpp +121 -0
  215. include/dart/dynamics/AssimpInputResourceAdaptor.hpp +129 -0
  216. include/dart/dynamics/BallJoint.hpp +143 -0
  217. include/dart/dynamics/BodyNode.hpp +1279 -0
  218. include/dart/dynamics/BoxShape.hpp +90 -0
  219. include/dart/dynamics/Branch.hpp +107 -0
  220. include/dart/dynamics/CapsuleShape.hpp +105 -0
  221. include/dart/dynamics/Chain.hpp +142 -0
  222. include/dart/dynamics/CompositeNode.hpp +114 -0
  223. include/dart/dynamics/ConeShape.hpp +107 -0
  224. include/dart/dynamics/CylinderShape.hpp +96 -0
  225. include/dart/dynamics/DegreeOfFreedom.hpp +415 -0
  226. include/dart/dynamics/EllipsoidShape.hpp +115 -0
  227. include/dart/dynamics/EndEffector.hpp +158 -0
  228. include/dart/dynamics/Entity.hpp +258 -0
  229. include/dart/dynamics/EntityNode.hpp +77 -0
  230. include/dart/dynamics/EulerJoint.hpp +174 -0
  231. include/dart/dynamics/FixedFrame.hpp +105 -0
  232. include/dart/dynamics/FixedJacobianNode.hpp +168 -0
  233. include/dart/dynamics/Frame.hpp +388 -0
  234. include/dart/dynamics/FreeJoint.hpp +369 -0
  235. include/dart/dynamics/GenericJoint.hpp +825 -0
  236. include/dart/dynamics/Group.hpp +270 -0
  237. include/dart/dynamics/HeightmapShape.hpp +195 -0
  238. include/dart/dynamics/HierarchicalIK.hpp +419 -0
  239. include/dart/dynamics/IkFast.hpp +277 -0
  240. include/dart/dynamics/Inertia.hpp +176 -0
  241. include/dart/dynamics/InvalidIndex.hpp +46 -0
  242. include/dart/dynamics/InverseKinematics.hpp +1401 -0
  243. include/dart/dynamics/JacobianNode.hpp +312 -0
  244. include/dart/dynamics/Joint.hpp +1128 -0
  245. include/dart/dynamics/LineSegmentShape.hpp +140 -0
  246. include/dart/dynamics/Linkage.hpp +246 -0
  247. include/dart/dynamics/Marker.hpp +126 -0
  248. include/dart/dynamics/MeshShape.hpp +225 -0
  249. include/dart/dynamics/MetaSkeleton.hpp +1034 -0
  250. include/dart/dynamics/MimicDofProperties.hpp +62 -0
  251. include/dart/dynamics/MultiSphereConvexHullShape.hpp +111 -0
  252. include/dart/dynamics/MultiSphereShape.hpp +42 -0
  253. include/dart/dynamics/Node.hpp +273 -0
  254. include/dart/dynamics/NodeManagerJoiner.hpp +190 -0
  255. include/dart/dynamics/PlanarJoint.hpp +161 -0
  256. include/dart/dynamics/PlaneShape.hpp +105 -0
  257. include/dart/dynamics/PointCloudShape.hpp +186 -0
  258. include/dart/dynamics/PointMass.hpp +709 -0
  259. include/dart/dynamics/PrismaticJoint.hpp +120 -0
  260. include/dart/dynamics/PyramidShape.hpp +122 -0
  261. include/dart/dynamics/ReferentialSkeleton.hpp +550 -0
  262. include/dart/dynamics/RevoluteJoint.hpp +120 -0
  263. include/dart/dynamics/ScrewJoint.hpp +126 -0
  264. include/dart/dynamics/Shape.hpp +231 -0
  265. include/dart/dynamics/ShapeFrame.hpp +291 -0
  266. include/dart/dynamics/ShapeNode.hpp +134 -0
  267. include/dart/dynamics/SharedLibraryIkFast.hpp +147 -0
  268. include/dart/dynamics/SimpleFrame.hpp +247 -0
  269. include/dart/dynamics/Skeleton.hpp +1350 -0
  270. include/dart/dynamics/SmartPointer.hpp +185 -0
  271. include/dart/dynamics/SoftBodyNode.hpp +472 -0
  272. include/dart/dynamics/SoftMeshShape.hpp +100 -0
  273. include/dart/dynamics/SpecializedNodeManager.hpp +230 -0
  274. include/dart/dynamics/SphereShape.hpp +89 -0
  275. include/dart/dynamics/TemplatedJacobianNode.hpp +128 -0
  276. include/dart/dynamics/TranslationalJoint.hpp +105 -0
  277. include/dart/dynamics/TranslationalJoint2D.hpp +156 -0
  278. include/dart/dynamics/UniversalJoint.hpp +128 -0
  279. include/dart/dynamics/VoxelGridShape.hpp +171 -0
  280. include/dart/dynamics/WeldJoint.hpp +116 -0
  281. include/dart/dynamics/ZeroDofJoint.hpp +562 -0
  282. include/dart/dynamics/all.hpp +69 -0
  283. include/dart/dynamics/detail/BasicNodeManager.hpp +539 -0
  284. include/dart/dynamics/detail/BodyNode.hpp +344 -0
  285. include/dart/dynamics/detail/BodyNodeAspect.hpp +177 -0
  286. include/dart/dynamics/detail/BodyNodePtr.hpp +351 -0
  287. include/dart/dynamics/detail/CompositeNode.hpp +93 -0
  288. include/dart/dynamics/detail/DegreeOfFreedomPtr.hpp +338 -0
  289. include/dart/dynamics/detail/EndEffectorAspect.hpp +106 -0
  290. include/dart/dynamics/detail/EntityNode.hpp +81 -0
  291. include/dart/dynamics/detail/EntityNodeAspect.hpp +101 -0
  292. include/dart/dynamics/detail/EulerJointAspect.hpp +93 -0
  293. include/dart/dynamics/detail/FixedFrameAspect.hpp +58 -0
  294. include/dart/dynamics/detail/FixedJacobianNode.hpp +55 -0
  295. include/dart/dynamics/detail/GenericJoint.hpp +2471 -0
  296. include/dart/dynamics/detail/GenericJointAspect.hpp +353 -0
  297. include/dart/dynamics/detail/HeightmapShape-impl.hpp +243 -0
  298. include/dart/dynamics/detail/InverseKinematics.hpp +83 -0
  299. include/dart/dynamics/detail/InverseKinematicsPtr.hpp +341 -0
  300. include/dart/dynamics/detail/JointAspect.hpp +161 -0
  301. include/dart/dynamics/detail/JointPtr.hpp +293 -0
  302. include/dart/dynamics/detail/MarkerAspect.hpp +68 -0
  303. include/dart/dynamics/detail/MetaSkeleton-impl.hpp +151 -0
  304. include/dart/dynamics/detail/Node.hpp +532 -0
  305. include/dart/dynamics/detail/NodeManagerJoiner.hpp +184 -0
  306. include/dart/dynamics/detail/NodePtr.hpp +259 -0
  307. include/dart/dynamics/detail/PlanarJointAspect.hpp +136 -0
  308. include/dart/dynamics/detail/PrismaticJointAspect.hpp +85 -0
  309. include/dart/dynamics/detail/RevoluteJointAspect.hpp +86 -0
  310. include/dart/dynamics/detail/ScrewJointAspect.hpp +90 -0
  311. include/dart/dynamics/detail/ShapeFrameAspect.hpp +169 -0
  312. include/dart/dynamics/detail/ShapeNode.hpp +51 -0
  313. include/dart/dynamics/detail/Skeleton.hpp +92 -0
  314. include/dart/dynamics/detail/SkeletonAspect.hpp +181 -0
  315. include/dart/dynamics/detail/SoftBodyNodeAspect.hpp +132 -0
  316. include/dart/dynamics/detail/SpecializedNodeManager.hpp +324 -0
  317. include/dart/dynamics/detail/TemplatedJacobianNode.hpp +294 -0
  318. include/dart/dynamics/detail/TranslationalJoint2DAspect.hpp +140 -0
  319. include/dart/dynamics/detail/UniversalJointAspect.hpp +86 -0
  320. include/dart/dynamics/dynamics.hpp +14 -0
  321. include/dart/dynamics/ikfast.h +345 -0
  322. include/dart/external/convhull_3d/convhull_3d.h +1878 -0
  323. include/dart/external/convhull_3d/safe_convhull_3d.h +53 -0
  324. include/dart/external/odelcpsolver/common.h +418 -0
  325. include/dart/external/odelcpsolver/error.h +62 -0
  326. include/dart/external/odelcpsolver/lcp.h +75 -0
  327. include/dart/external/odelcpsolver/matrix.h +277 -0
  328. include/dart/external/odelcpsolver/misc.h +82 -0
  329. include/dart/external/odelcpsolver/odeconfig.h +110 -0
  330. include/dart/gui/osg/DefaultEventHandler.hpp +237 -0
  331. include/dart/gui/osg/DragAndDrop.hpp +360 -0
  332. include/dart/gui/osg/GridVisual.hpp +218 -0
  333. include/dart/gui/osg/ImGuiHandler.hpp +113 -0
  334. include/dart/gui/osg/ImGuiViewer.hpp +83 -0
  335. include/dart/gui/osg/ImGuiWidget.hpp +91 -0
  336. include/dart/gui/osg/IncludeImGui.hpp +75 -0
  337. include/dart/gui/osg/InteractiveFrame.hpp +170 -0
  338. include/dart/gui/osg/MouseEventHandler.hpp +76 -0
  339. include/dart/gui/osg/RealTimeWorldNode.hpp +126 -0
  340. include/dart/gui/osg/ShapeFrameNode.hpp +117 -0
  341. include/dart/gui/osg/SupportPolygonVisual.hpp +202 -0
  342. include/dart/gui/osg/TrackballManipulator.hpp +97 -0
  343. include/dart/gui/osg/Utils.hpp +120 -0
  344. include/dart/gui/osg/Viewer.hpp +427 -0
  345. include/dart/gui/osg/WorldNode.hpp +211 -0
  346. include/dart/gui/osg/all.hpp +19 -0
  347. include/dart/gui/osg/detail/CameraModeCallback.hpp +82 -0
  348. include/dart/gui/osg/detail/Utils-impl.hpp +160 -0
  349. include/dart/gui/osg/osg.hpp +14 -0
  350. include/dart/gui/osg/render/BoxShapeNode.hpp +74 -0
  351. include/dart/gui/osg/render/CapsuleShapeNode.hpp +75 -0
  352. include/dart/gui/osg/render/ConeShapeNode.hpp +74 -0
  353. include/dart/gui/osg/render/CylinderShapeNode.hpp +75 -0
  354. include/dart/gui/osg/render/EllipsoidShapeNode.hpp +76 -0
  355. include/dart/gui/osg/render/HeightmapShapeNode.hpp +485 -0
  356. include/dart/gui/osg/render/LineSegmentShapeNode.hpp +75 -0
  357. include/dart/gui/osg/render/MeshShapeNode.hpp +86 -0
  358. include/dart/gui/osg/render/MultiSphereShapeNode.hpp +76 -0
  359. include/dart/gui/osg/render/PlaneShapeNode.hpp +75 -0
  360. include/dart/gui/osg/render/PointCloudShapeNode.hpp +85 -0
  361. include/dart/gui/osg/render/PyramidShapeNode.hpp +75 -0
  362. include/dart/gui/osg/render/ShapeNode.hpp +126 -0
  363. include/dart/gui/osg/render/SoftMeshShapeNode.hpp +75 -0
  364. include/dart/gui/osg/render/SphereShapeNode.hpp +76 -0
  365. include/dart/gui/osg/render/VoxelGridShapeNode.hpp +83 -0
  366. include/dart/gui/osg/render/WarningShapeNode.hpp +64 -0
  367. include/dart/gui/osg/render/all.hpp +19 -0
  368. include/dart/gui/osg/render/render.hpp +14 -0
  369. include/dart/integration/EulerIntegrator.hpp +64 -0
  370. include/dart/integration/Integrator.hpp +104 -0
  371. include/dart/integration/RK4Integrator.hpp +68 -0
  372. include/dart/integration/SemiImplicitEulerIntegrator.hpp +64 -0
  373. include/dart/integration/all.hpp +6 -0
  374. include/dart/integration/integration.hpp +14 -0
  375. include/dart/lcpsolver/Lemke.hpp +54 -0
  376. include/dart/lcpsolver/ODELCPSolver.hpp +88 -0
  377. include/dart/lcpsolver/all.hpp +4 -0
  378. include/dart/lcpsolver/lcpsolver.hpp +14 -0
  379. include/dart/math/ConfigurationSpace.hpp +144 -0
  380. include/dart/math/Constants.hpp +79 -0
  381. include/dart/math/Geometry.hpp +659 -0
  382. include/dart/math/Helpers.hpp +481 -0
  383. include/dart/math/Icosphere.hpp +106 -0
  384. include/dart/math/MathTypes.hpp +100 -0
  385. include/dart/math/Mesh.hpp +108 -0
  386. include/dart/math/Random.hpp +225 -0
  387. include/dart/math/TriMesh.hpp +121 -0
  388. include/dart/math/all.hpp +11 -0
  389. include/dart/math/detail/ConfigurationSpace.hpp +235 -0
  390. include/dart/math/detail/Geometry-impl.hpp +126 -0
  391. include/dart/math/detail/Icosphere-impl.hpp +214 -0
  392. include/dart/math/detail/Mesh-impl.hpp +151 -0
  393. include/dart/math/detail/Random-impl.hpp +353 -0
  394. include/dart/math/detail/TriMesh-impl.hpp +202 -0
  395. include/dart/math/math.hpp +14 -0
  396. include/dart/optimizer/Function.hpp +203 -0
  397. include/dart/optimizer/GenericMultiObjectiveProblem.hpp +174 -0
  398. include/dart/optimizer/GradientDescentSolver.hpp +240 -0
  399. include/dart/optimizer/MultiObjectiveProblem.hpp +168 -0
  400. include/dart/optimizer/MultiObjectiveSolver.hpp +168 -0
  401. include/dart/optimizer/Population.hpp +108 -0
  402. include/dart/optimizer/Problem.hpp +191 -0
  403. include/dart/optimizer/Solver.hpp +182 -0
  404. include/dart/optimizer/all.hpp +10 -0
  405. include/dart/optimizer/ipopt/BackwardCompatibility.hpp +43 -0
  406. include/dart/optimizer/ipopt/IpoptSolver.hpp +223 -0
  407. include/dart/optimizer/ipopt/all.hpp +4 -0
  408. include/dart/optimizer/ipopt/ipopt.hpp +14 -0
  409. include/dart/optimizer/nlopt/NloptSolver.hpp +212 -0
  410. include/dart/optimizer/nlopt/all.hpp +3 -0
  411. include/dart/optimizer/nlopt/nlopt.hpp +14 -0
  412. include/dart/optimizer/optimizer.hpp +14 -0
  413. include/dart/simulation/Recording.hpp +118 -0
  414. include/dart/simulation/SmartPointer.hpp +46 -0
  415. include/dart/simulation/World.hpp +405 -0
  416. include/dart/simulation/all.hpp +5 -0
  417. include/dart/simulation/detail/World-impl.hpp +129 -0
  418. include/dart/simulation/simulation.hpp +14 -0
  419. include/dart/utils/C3D.hpp +107 -0
  420. include/dart/utils/CompositeResourceRetriever.hpp +97 -0
  421. include/dart/utils/DartResourceRetriever.hpp +104 -0
  422. include/dart/utils/FileInfoC3D.hpp +91 -0
  423. include/dart/utils/FileInfoDof.hpp +109 -0
  424. include/dart/utils/FileInfoWorld.hpp +75 -0
  425. include/dart/utils/PackageResourceRetriever.hpp +118 -0
  426. include/dart/utils/SkelParser.hpp +70 -0
  427. include/dart/utils/VskParser.hpp +108 -0
  428. include/dart/utils/XmlHelpers.hpp +243 -0
  429. include/dart/utils/all.hpp +14 -0
  430. include/dart/utils/detail/XmlHelpers-impl.hpp +213 -0
  431. include/dart/utils/mjcf/MjcfParser.hpp +80 -0
  432. include/dart/utils/mjcf/all.hpp +3 -0
  433. include/dart/utils/mjcf/mjcf.hpp +14 -0
  434. include/dart/utils/sdf/SdfParser.hpp +98 -0
  435. include/dart/utils/sdf/all.hpp +3 -0
  436. include/dart/utils/sdf/sdf.hpp +14 -0
  437. include/dart/utils/urdf/BackwardCompatibility.hpp +52 -0
  438. include/dart/utils/urdf/DartLoader.hpp +277 -0
  439. include/dart/utils/urdf/IncludeUrdf.hpp +47 -0
  440. include/dart/utils/urdf/URDFTypes.hpp +42 -0
  441. include/dart/utils/urdf/all.hpp +5 -0
  442. include/dart/utils/urdf/urdf.hpp +14 -0
  443. include/dart/utils/urdf/urdf_world_parser.hpp +83 -0
  444. include/dart/utils/utils.hpp +14 -0
  445. lib64/libdart-collision-bullet.a +0 -0
  446. lib64/libdart-collision-ode.a +0 -0
  447. lib64/libdart-external-odelcpsolver.a +0 -0
  448. lib64/libdart-gui-osg.a +0 -0
  449. lib64/libdart-optimizer-ipopt.a +0 -0
  450. lib64/libdart-optimizer-nlopt.a +0 -0
  451. lib64/libdart-utils-urdf.a +0 -0
  452. lib64/libdart-utils.a +0 -0
  453. lib64/libdart.a +0 -0
  454. lib64/pkgconfig/dart.pc +12 -0
  455. share/dart/cmake/DARTConfig.cmake +194 -0
  456. share/dart/cmake/DARTConfigVersion.cmake +65 -0
  457. share/dart/cmake/DARTFindBullet.cmake +96 -0
  458. share/dart/cmake/DARTFindEigen3.cmake +9 -0
  459. share/dart/cmake/DARTFindIPOPT.cmake +20 -0
  460. share/dart/cmake/DARTFindNLOPT.cmake +17 -0
  461. share/dart/cmake/DARTFindODE.cmake +23 -0
  462. share/dart/cmake/DARTFindOpenSceneGraph.cmake +69 -0
  463. share/dart/cmake/DARTFindassimp.cmake +18 -0
  464. share/dart/cmake/DARTFindfcl.cmake +23 -0
  465. share/dart/cmake/DARTFindfmt.cmake +9 -0
  466. share/dart/cmake/DARTFindimgui.cmake +21 -0
  467. share/dart/cmake/DARTFindoctomap.cmake +17 -0
  468. share/dart/cmake/DARTFindspdlog.cmake +9 -0
  469. share/dart/cmake/DARTFindtinyxml2.cmake +27 -0
  470. share/dart/cmake/DARTFindurdfdom.cmake +29 -0
  471. share/dart/cmake/FindIPOPT.cmake +54 -0
  472. share/dart/cmake/FindNLOPT.cmake +54 -0
  473. share/dart/cmake/FindODE.cmake +54 -0
  474. share/dart/cmake/Findassimp.cmake +56 -0
  475. share/dart/cmake/Findfcl.cmake +67 -0
  476. share/dart/cmake/Findimgui.cmake +70 -0
  477. share/dart/cmake/Findtinyxml2.cmake +54 -0
  478. share/dart/cmake/dart_collision-bulletComponent.cmake +19 -0
  479. share/dart/cmake/dart_collision-bulletTargets-release.cmake +19 -0
  480. share/dart/cmake/dart_collision-bulletTargets.cmake +122 -0
  481. share/dart/cmake/dart_collision-odeComponent.cmake +19 -0
  482. share/dart/cmake/dart_collision-odeTargets-release.cmake +19 -0
  483. share/dart/cmake/dart_collision-odeTargets.cmake +122 -0
  484. share/dart/cmake/dart_dartComponent.cmake +19 -0
  485. share/dart/cmake/dart_dartTargets-release.cmake +19 -0
  486. share/dart/cmake/dart_dartTargets.cmake +125 -0
  487. share/dart/cmake/dart_external-odelcpsolverComponent.cmake +19 -0
  488. share/dart/cmake/dart_external-odelcpsolverTargets-release.cmake +19 -0
  489. share/dart/cmake/dart_external-odelcpsolverTargets.cmake +106 -0
  490. share/dart/cmake/dart_gui-osgComponent.cmake +19 -0
  491. share/dart/cmake/dart_gui-osgTargets-release.cmake +19 -0
  492. share/dart/cmake/dart_gui-osgTargets.cmake +122 -0
  493. share/dart/cmake/dart_optimizer-ipoptComponent.cmake +19 -0
  494. share/dart/cmake/dart_optimizer-ipoptTargets-release.cmake +19 -0
  495. share/dart/cmake/dart_optimizer-ipoptTargets.cmake +123 -0
  496. share/dart/cmake/dart_optimizer-nloptComponent.cmake +19 -0
  497. share/dart/cmake/dart_optimizer-nloptTargets-release.cmake +19 -0
  498. share/dart/cmake/dart_optimizer-nloptTargets.cmake +123 -0
  499. share/dart/cmake/dart_utils-urdfComponent.cmake +19 -0
  500. share/dart/cmake/dart_utils-urdfTargets-release.cmake +19 -0
  501. share/dart/cmake/dart_utils-urdfTargets.cmake +122 -0
  502. share/dart/cmake/dart_utilsComponent.cmake +19 -0
  503. share/dart/cmake/dart_utilsTargets-release.cmake +19 -0
  504. share/dart/cmake/dart_utilsTargets.cmake +122 -0
  505. share/dart/package.xml +42 -0
  506. share/doc/dart/data/c3d/nick_freeform_001.c3d +0 -0
  507. share/doc/dart/data/c3d/squat.c3d +0 -0
  508. share/doc/dart/data/dof/RHand.dof +205 -0
  509. share/doc/dart/data/dof/fixedHand.dof +205 -0
  510. share/doc/dart/data/dof/init_Tpose.dof +240 -0
  511. share/doc/dart/data/dof/same.dof +1003 -0
  512. share/doc/dart/data/dof/simMotion.dof +1817 -0
  513. share/doc/dart/data/dof/simMotion1.dof +1355 -0
  514. share/doc/dart/data/etc/fort.4 +43 -0
  515. share/doc/dart/data/humanJointLimits/neuralnets/net-larm +0 -0
  516. share/doc/dart/data/humanJointLimits/neuralnets/net-lleg +0 -0
  517. share/doc/dart/data/mjcf/openai/LICENSE.md +36 -0
  518. share/doc/dart/data/mjcf/openai/ant.xml +81 -0
  519. share/doc/dart/data/mjcf/openai/half_cheetah.xml +96 -0
  520. share/doc/dart/data/mjcf/openai/hopper.xml +50 -0
  521. share/doc/dart/data/mjcf/openai/humanoid.xml +121 -0
  522. share/doc/dart/data/mjcf/openai/humanoidstandup.xml +121 -0
  523. share/doc/dart/data/mjcf/openai/inverted_double_pendulum.xml +47 -0
  524. share/doc/dart/data/mjcf/openai/inverted_pendulum.xml +27 -0
  525. share/doc/dart/data/mjcf/openai/point.xml +31 -0
  526. share/doc/dart/data/mjcf/openai/pusher.xml +91 -0
  527. share/doc/dart/data/mjcf/openai/reacher.xml +39 -0
  528. share/doc/dart/data/mjcf/openai/robotics/fetch/pick_and_place.xml +35 -0
  529. share/doc/dart/data/mjcf/openai/robotics/fetch/push.xml +32 -0
  530. share/doc/dart/data/mjcf/openai/robotics/fetch/reach.xml +26 -0
  531. share/doc/dart/data/mjcf/openai/robotics/fetch/robot.xml +123 -0
  532. share/doc/dart/data/mjcf/openai/robotics/fetch/shared.xml +66 -0
  533. share/doc/dart/data/mjcf/openai/robotics/fetch/slide.xml +32 -0
  534. share/doc/dart/data/mjcf/openai/robotics/stls/.get +0 -0
  535. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/base_link_collision.stl +0 -0
  536. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/bellows_link_collision.stl +0 -0
  537. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/elbow_flex_link_collision.stl +0 -0
  538. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/estop_link.stl +0 -0
  539. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/forearm_roll_link_collision.stl +0 -0
  540. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/gripper_link.stl +0 -0
  541. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/head_pan_link_collision.stl +0 -0
  542. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/head_tilt_link_collision.stl +0 -0
  543. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/l_wheel_link_collision.stl +0 -0
  544. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/laser_link.stl +0 -0
  545. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/r_wheel_link_collision.stl +0 -0
  546. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/shoulder_lift_link_collision.stl +0 -0
  547. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/shoulder_pan_link_collision.stl +0 -0
  548. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/torso_fixed_link.stl +0 -0
  549. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/torso_lift_link_collision.stl +0 -0
  550. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/upperarm_roll_link_collision.stl +0 -0
  551. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/wrist_flex_link_collision.stl +0 -0
  552. share/doc/dart/data/mjcf/openai/robotics/stls/fetch/wrist_roll_link_collision.stl +0 -0
  553. share/doc/dart/data/mjcf/openai/robotics/textures/block.png +0 -0
  554. share/doc/dart/data/mjcf/openai/robotics/textures/block_hidden.png +0 -0
  555. share/doc/dart/data/mjcf/openai/striker.xml +101 -0
  556. share/doc/dart/data/mjcf/openai/swimmer.xml +39 -0
  557. share/doc/dart/data/mjcf/openai/thrower.xml +127 -0
  558. share/doc/dart/data/mjcf/openai/walker2d.xml +62 -0
  559. share/doc/dart/data/mjcf/test/default.xml +17 -0
  560. share/doc/dart/data/mjcf/test/include_default.xml +8 -0
  561. share/doc/dart/data/mjcf/test/include_main.xml +12 -0
  562. share/doc/dart/data/obj/Body_Hip.obj +22830 -0
  563. share/doc/dart/data/obj/BoxSmall.obj +23 -0
  564. share/doc/dart/data/obj/foot.obj +10970 -0
  565. share/doc/dart/data/other/torus1.path +11991 -0
  566. share/doc/dart/data/other/torus1.tris +5329 -0
  567. share/doc/dart/data/other/torus2.path +11991 -0
  568. share/doc/dart/data/other/torus2.tris +12961 -0
  569. share/doc/dart/data/screencap/.KEEP +0 -0
  570. share/doc/dart/data/sdf/atlas/atlas_v3.urdf +914 -0
  571. share/doc/dart/data/sdf/atlas/atlas_v3_no_head.sdf +1541 -0
  572. share/doc/dart/data/sdf/atlas/atlas_v3_no_head.urdf +914 -0
  573. share/doc/dart/data/sdf/atlas/atlas_v3_no_head_soft_feet.sdf +1567 -0
  574. share/doc/dart/data/sdf/atlas/ground.urdf +28 -0
  575. share/doc/dart/data/sdf/atlas/head.dae +8607 -0
  576. share/doc/dart/data/sdf/atlas/head.stl +0 -0
  577. share/doc/dart/data/sdf/atlas/head_camera.dae +2326 -0
  578. share/doc/dart/data/sdf/atlas/head_camera.stl +0 -0
  579. share/doc/dart/data/sdf/atlas/l_clav.dae +1278 -0
  580. share/doc/dart/data/sdf/atlas/l_clav.stl +0 -0
  581. share/doc/dart/data/sdf/atlas/l_farm.dae +1204 -0
  582. share/doc/dart/data/sdf/atlas/l_farm.stl +0 -0
  583. share/doc/dart/data/sdf/atlas/l_foot.dae +1330 -0
  584. share/doc/dart/data/sdf/atlas/l_foot.stl +0 -0
  585. share/doc/dart/data/sdf/atlas/l_hand.dae +964 -0
  586. share/doc/dart/data/sdf/atlas/l_hand.stl +0 -0
  587. share/doc/dart/data/sdf/atlas/l_larm.dae +1378 -0
  588. share/doc/dart/data/sdf/atlas/l_larm.stl +0 -0
  589. share/doc/dart/data/sdf/atlas/l_lglut.dae +897 -0
  590. share/doc/dart/data/sdf/atlas/l_lglut.stl +0 -0
  591. share/doc/dart/data/sdf/atlas/l_lleg.dae +6660 -0
  592. share/doc/dart/data/sdf/atlas/l_lleg.stl +0 -0
  593. share/doc/dart/data/sdf/atlas/l_scap.dae +1531 -0
  594. share/doc/dart/data/sdf/atlas/l_scap.stl +0 -0
  595. share/doc/dart/data/sdf/atlas/l_talus.dae +374 -0
  596. share/doc/dart/data/sdf/atlas/l_talus.stl +0 -0
  597. share/doc/dart/data/sdf/atlas/l_uarm.dae +1204 -0
  598. share/doc/dart/data/sdf/atlas/l_uarm.stl +0 -0
  599. share/doc/dart/data/sdf/atlas/l_uglut.dae +398 -0
  600. share/doc/dart/data/sdf/atlas/l_uglut.stl +0 -0
  601. share/doc/dart/data/sdf/atlas/l_uleg.dae +9087 -0
  602. share/doc/dart/data/sdf/atlas/l_uleg.stl +0 -0
  603. share/doc/dart/data/sdf/atlas/ltorso.dae +614 -0
  604. share/doc/dart/data/sdf/atlas/ltorso.stl +0 -0
  605. share/doc/dart/data/sdf/atlas/mtorso.dae +266 -0
  606. share/doc/dart/data/sdf/atlas/mtorso.stl +0 -0
  607. share/doc/dart/data/sdf/atlas/pelvis.dae +8727 -0
  608. share/doc/dart/data/sdf/atlas/pelvis.stl +0 -0
  609. share/doc/dart/data/sdf/atlas/r_clav.dae +1278 -0
  610. share/doc/dart/data/sdf/atlas/r_clav.stl +0 -0
  611. share/doc/dart/data/sdf/atlas/r_farm.dae +1204 -0
  612. share/doc/dart/data/sdf/atlas/r_farm.stl +0 -0
  613. share/doc/dart/data/sdf/atlas/r_foot.dae +1330 -0
  614. share/doc/dart/data/sdf/atlas/r_foot.stl +0 -0
  615. share/doc/dart/data/sdf/atlas/r_hand.dae +904 -0
  616. share/doc/dart/data/sdf/atlas/r_hand.stl +0 -0
  617. share/doc/dart/data/sdf/atlas/r_larm.dae +1378 -0
  618. share/doc/dart/data/sdf/atlas/r_larm.stl +0 -0
  619. share/doc/dart/data/sdf/atlas/r_lglut.dae +897 -0
  620. share/doc/dart/data/sdf/atlas/r_lglut.stl +0 -0
  621. share/doc/dart/data/sdf/atlas/r_lleg.dae +6661 -0
  622. share/doc/dart/data/sdf/atlas/r_lleg.stl +0 -0
  623. share/doc/dart/data/sdf/atlas/r_scap.dae +1531 -0
  624. share/doc/dart/data/sdf/atlas/r_scap.stl +0 -0
  625. share/doc/dart/data/sdf/atlas/r_talus.dae +374 -0
  626. share/doc/dart/data/sdf/atlas/r_talus.stl +0 -0
  627. share/doc/dart/data/sdf/atlas/r_uarm.dae +1144 -0
  628. share/doc/dart/data/sdf/atlas/r_uarm.stl +0 -0
  629. share/doc/dart/data/sdf/atlas/r_uglut.dae +398 -0
  630. share/doc/dart/data/sdf/atlas/r_uglut.stl +0 -0
  631. share/doc/dart/data/sdf/atlas/r_uleg.dae +9087 -0
  632. share/doc/dart/data/sdf/atlas/r_uleg.stl +0 -0
  633. share/doc/dart/data/sdf/atlas/utorso.dae +28342 -0
  634. share/doc/dart/data/sdf/atlas/utorso.stl +0 -0
  635. share/doc/dart/data/sdf/atlas/utorso_mod.dae +16508 -0
  636. share/doc/dart/data/sdf/atlas/utorso_mod.stl +0 -0
  637. share/doc/dart/data/sdf/atlas/utorso_pack.dae +8521 -0
  638. share/doc/dart/data/sdf/atlas/utorso_pack.stl +0 -0
  639. share/doc/dart/data/sdf/benchmark.world +2510 -0
  640. share/doc/dart/data/sdf/double_pendulum.world +168 -0
  641. share/doc/dart/data/sdf/double_pendulum_with_base.world +263 -0
  642. share/doc/dart/data/sdf/empty.world +13 -0
  643. share/doc/dart/data/sdf/ground.world +48 -0
  644. share/doc/dart/data/sdf/materials/textures/atlas_cage_and_camera_diffuse_flat.jpg +0 -0
  645. share/doc/dart/data/sdf/materials/textures/drc_extremities_diffuse.jpg +0 -0
  646. share/doc/dart/data/sdf/materials/textures/drc_labels_1.jpg +0 -0
  647. share/doc/dart/data/sdf/materials/textures/drc_torso_head_diffuse.jpg +0 -0
  648. share/doc/dart/data/sdf/materials/textures/extremities_diffuse_unplugged.jpg +0 -0
  649. share/doc/dart/data/sdf/materials/textures/right_leg_diffuse_unplugged.jpg +0 -0
  650. share/doc/dart/data/sdf/materials/textures/torso_diffuse_unplugged.jpg +0 -0
  651. share/doc/dart/data/sdf/quad.sdf +867 -0
  652. share/doc/dart/data/sdf/test/force_torque_test.world +173 -0
  653. share/doc/dart/data/sdf/test/force_torque_test2.world +214 -0
  654. share/doc/dart/data/sdf/test/issue1193_revolute_test.sdf +70 -0
  655. share/doc/dart/data/sdf/test/issue1193_revolute_with_offset_test.sdf +70 -0
  656. share/doc/dart/data/sdf/test/issue1624_cubes.sdf +5037 -0
  657. share/doc/dart/data/sdf/test/single_bodynode_skeleton.world +55 -0
  658. share/doc/dart/data/sdf/test/test_issue1583.model +45 -0
  659. share/doc/dart/data/sdf/test/test_issue1596.model +182 -0
  660. share/doc/dart/data/sdf/test/test_skeleton_joint.world +278 -0
  661. share/doc/dart/data/skel/biped.skel +850 -0
  662. share/doc/dart/data/skel/bullet_collision.skel +174 -0
  663. share/doc/dart/data/skel/chain.skel +212 -0
  664. share/doc/dart/data/skel/cube.skel +71 -0
  665. share/doc/dart/data/skel/cubes.skel +137 -0
  666. share/doc/dart/data/skel/empty.skel +10 -0
  667. share/doc/dart/data/skel/freeChain.skel +212 -0
  668. share/doc/dart/data/skel/fullbody1.skel +1177 -0
  669. share/doc/dart/data/skel/ground.skel +31 -0
  670. share/doc/dart/data/skel/joint_limit.skel +123 -0
  671. share/doc/dart/data/skel/kima/abdomen.dae +18933 -0
  672. share/doc/dart/data/skel/kima/head.dae +34634 -0
  673. share/doc/dart/data/skel/kima/kima_human_edited.skel +933 -0
  674. share/doc/dart/data/skel/kima/kima_human_left_arm.skel +323 -0
  675. share/doc/dart/data/skel/kima/kima_human_left_leg.skel +327 -0
  676. share/doc/dart/data/skel/kima/l-clavicle.dae +20111 -0
  677. share/doc/dart/data/skel/kima/l-foot.dae +28208 -0
  678. share/doc/dart/data/skel/kima/pelvis.dae +35919 -0
  679. share/doc/dart/data/skel/kima/r-clavicle.dae +20090 -0
  680. share/doc/dart/data/skel/kima/thorax.dae +47337 -0
  681. share/doc/dart/data/skel/mesh_collision.skel +137 -0
  682. share/doc/dart/data/skel/shapes.skel +378 -0
  683. share/doc/dart/data/skel/skateboard.skel +222 -0
  684. share/doc/dart/data/skel/softBodies.skel +284 -0
  685. share/doc/dart/data/skel/soft_cubes.skel +134 -0
  686. share/doc/dart/data/skel/soft_open_chain.skel +241 -0
  687. share/doc/dart/data/skel/sphere.skel +74 -0
  688. share/doc/dart/data/skel/spheres.skel +118 -0
  689. share/doc/dart/data/skel/test/SimplePendulum.skel +141 -0
  690. share/doc/dart/data/skel/test/ball_joints.skel +49 -0
  691. share/doc/dart/data/skel/test/box_stacking.skel +346 -0
  692. share/doc/dart/data/skel/test/boxes.skel +52 -0
  693. share/doc/dart/data/skel/test/chainwhipa.skel +193 -0
  694. share/doc/dart/data/skel/test/collision_of_prescribed_joints_test.skel +249 -0
  695. share/doc/dart/data/skel/test/dof_attribute_test.skel +206 -0
  696. share/doc/dart/data/skel/test/double_pendulum.skel +76 -0
  697. share/doc/dart/data/skel/test/double_pendulum_ball_joint.skel +76 -0
  698. share/doc/dart/data/skel/test/double_pendulum_euler_joint.skel +78 -0
  699. share/doc/dart/data/skel/test/double_pendulum_with_base.skel +1390 -0
  700. share/doc/dart/data/skel/test/drop.skel +116 -0
  701. share/doc/dart/data/skel/test/drop_BENCHMARK.skel +10 -0
  702. share/doc/dart/data/skel/test/drop_unrotated_box.skel +156 -0
  703. share/doc/dart/data/skel/test/empty.skel +10 -0
  704. share/doc/dart/data/skel/test/file_info_world_test.skel +1177 -0
  705. share/doc/dart/data/skel/test/free_joints.skel +49 -0
  706. share/doc/dart/data/skel/test/gazebo/drop_test.skel +161 -0
  707. share/doc/dart/data/skel/test/gazebo/force_torque_test.skel +138 -0
  708. share/doc/dart/data/skel/test/gazebo/force_torque_test2.skel +171 -0
  709. share/doc/dart/data/skel/test/hybrid_dynamics_test.skel +172 -0
  710. share/doc/dart/data/skel/test/joint_actuator_type_test.skel +185 -0
  711. share/doc/dart/data/skel/test/joint_dynamics_elements_test.skel +103 -0
  712. share/doc/dart/data/skel/test/joint_friction_test.skel +80 -0
  713. share/doc/dart/data/skel/test/joint_limit_test.skel +80 -0
  714. share/doc/dart/data/skel/test/planar_joint.skel +167 -0
  715. share/doc/dart/data/skel/test/serial_chain_BENCHMARK.skel +10 -0
  716. share/doc/dart/data/skel/test/serial_chain_ball_joint.skel +212 -0
  717. share/doc/dart/data/skel/test/serial_chain_ball_joint_20.skel +412 -0
  718. share/doc/dart/data/skel/test/serial_chain_ball_joint_40.skel +812 -0
  719. share/doc/dart/data/skel/test/serial_chain_eulerxyz_joint.skel +224 -0
  720. share/doc/dart/data/skel/test/serial_chain_revolute_joint.skel +244 -0
  721. share/doc/dart/data/skel/test/simple_tree_structure.skel +108 -0
  722. share/doc/dart/data/skel/test/simple_tree_structure_ball_joint.skel +108 -0
  723. share/doc/dart/data/skel/test/simple_tree_structure_euler_joint.skel +111 -0
  724. share/doc/dart/data/skel/test/single_pendulum.skel +55 -0
  725. share/doc/dart/data/skel/test/single_pendulum_ball_joint.skel +55 -0
  726. share/doc/dart/data/skel/test/single_pendulum_euler_joint.skel +56 -0
  727. share/doc/dart/data/skel/test/spheres.skel +118 -0
  728. share/doc/dart/data/skel/test/test_adaptive_deformable.skel +88 -0
  729. share/doc/dart/data/skel/test/test_articulated_bodies.skel +112 -0
  730. share/doc/dart/data/skel/test/test_articulated_bodies_10bodies.skel +401 -0
  731. share/doc/dart/data/skel/test/test_double_pendulum.skel +105 -0
  732. share/doc/dart/data/skel/test/test_drop_box.skel +87 -0
  733. share/doc/dart/data/skel/test/test_drop_box_offset.skel +87 -0
  734. share/doc/dart/data/skel/test/test_drop_low_stiffness.skel +86 -0
  735. share/doc/dart/data/skel/test/test_drop_sphere.skel +86 -0
  736. share/doc/dart/data/skel/test/test_shapes.skel +324 -0
  737. share/doc/dart/data/skel/test/test_single_body.skel +55 -0
  738. share/doc/dart/data/skel/test/test_single_pendulum.skel +55 -0
  739. share/doc/dart/data/skel/test/translational_joints.skel +49 -0
  740. share/doc/dart/data/skel/test/tree_structure.skel +428 -0
  741. share/doc/dart/data/skel/test/tree_structure_ball_joint.skel +441 -0
  742. share/doc/dart/data/skel/test/tree_structure_euler_joint.skel +441 -0
  743. share/doc/dart/data/skel/two_cubes.skel +118 -0
  744. share/doc/dart/data/skel/vehicle.skel +322 -0
  745. share/doc/dart/data/test/hello_world.txt +1 -0
  746. share/doc/dart/data/urdf/KR5/KR5 sixx R650.urdf +397 -0
  747. share/doc/dart/data/urdf/KR5/ground.urdf +28 -0
  748. share/doc/dart/data/urdf/KR5/meshes/base_link.STL +0 -0
  749. share/doc/dart/data/urdf/KR5/meshes/bicep.STL +0 -0
  750. share/doc/dart/data/urdf/KR5/meshes/elbow.STL +0 -0
  751. share/doc/dart/data/urdf/KR5/meshes/forearm.STL +0 -0
  752. share/doc/dart/data/urdf/KR5/meshes/palm.STL +0 -0
  753. share/doc/dart/data/urdf/KR5/meshes/shoulder.STL +0 -0
  754. share/doc/dart/data/urdf/KR5/meshes/wrist.STL +0 -0
  755. share/doc/dart/data/urdf/drchubo/CMakeLists.txt +5 -0
  756. share/doc/dart/data/urdf/drchubo/drchubo.urdf +1508 -0
  757. share/doc/dart/data/urdf/drchubo/meshes/convhull_LAP_merged.stl +0 -0
  758. share/doc/dart/data/urdf/drchubo/meshes/convhull_LAR_merged.stl +0 -0
  759. share/doc/dart/data/urdf/drchubo/meshes/convhull_LEP_merged.stl +0 -0
  760. share/doc/dart/data/urdf/drchubo/meshes/convhull_LF1.stl +0 -0
  761. share/doc/dart/data/urdf/drchubo/meshes/convhull_LF2.stl +0 -0
  762. share/doc/dart/data/urdf/drchubo/meshes/convhull_LF3.stl +0 -0
  763. share/doc/dart/data/urdf/drchubo/meshes/convhull_LHP_merged.stl +0 -0
  764. share/doc/dart/data/urdf/drchubo/meshes/convhull_LHR_merged.stl +0 -0
  765. share/doc/dart/data/urdf/drchubo/meshes/convhull_LHY_merged.stl +0 -0
  766. share/doc/dart/data/urdf/drchubo/meshes/convhull_LKP_merged.stl +0 -0
  767. share/doc/dart/data/urdf/drchubo/meshes/convhull_LSP_merged.stl +0 -0
  768. share/doc/dart/data/urdf/drchubo/meshes/convhull_LSR_merged.stl +0 -0
  769. share/doc/dart/data/urdf/drchubo/meshes/convhull_LSY_merged.stl +0 -0
  770. share/doc/dart/data/urdf/drchubo/meshes/convhull_LWP_merged.stl +0 -0
  771. share/doc/dart/data/urdf/drchubo/meshes/convhull_LWR_merged.stl +0 -0
  772. share/doc/dart/data/urdf/drchubo/meshes/convhull_LWY_merged.stl +0 -0
  773. share/doc/dart/data/urdf/drchubo/meshes/convhull_NK1_merged.stl +0 -0
  774. share/doc/dart/data/urdf/drchubo/meshes/convhull_NK2.stl +0 -0
  775. share/doc/dart/data/urdf/drchubo/meshes/convhull_NKY_merged.stl +0 -0
  776. share/doc/dart/data/urdf/drchubo/meshes/convhull_RAP_merged.stl +0 -0
  777. share/doc/dart/data/urdf/drchubo/meshes/convhull_RAR_merged.stl +0 -0
  778. share/doc/dart/data/urdf/drchubo/meshes/convhull_REP_merged.stl +0 -0
  779. share/doc/dart/data/urdf/drchubo/meshes/convhull_RF1.stl +0 -0
  780. share/doc/dart/data/urdf/drchubo/meshes/convhull_RF2.stl +0 -0
  781. share/doc/dart/data/urdf/drchubo/meshes/convhull_RF3.stl +0 -0
  782. share/doc/dart/data/urdf/drchubo/meshes/convhull_RHP_merged.stl +0 -0
  783. share/doc/dart/data/urdf/drchubo/meshes/convhull_RHR_merged.stl +0 -0
  784. share/doc/dart/data/urdf/drchubo/meshes/convhull_RHY_merged.stl +0 -0
  785. share/doc/dart/data/urdf/drchubo/meshes/convhull_RKP_merged.stl +0 -0
  786. share/doc/dart/data/urdf/drchubo/meshes/convhull_RSP_merged.stl +0 -0
  787. share/doc/dart/data/urdf/drchubo/meshes/convhull_RSR_merged.stl +0 -0
  788. share/doc/dart/data/urdf/drchubo/meshes/convhull_RSY_merged.stl +0 -0
  789. share/doc/dart/data/urdf/drchubo/meshes/convhull_RWP_merged.stl +0 -0
  790. share/doc/dart/data/urdf/drchubo/meshes/convhull_RWR_merged.stl +0 -0
  791. share/doc/dart/data/urdf/drchubo/meshes/convhull_RWY_merged.stl +0 -0
  792. share/doc/dart/data/urdf/drchubo/meshes/convhull_TSY_merged.stl +0 -0
  793. share/doc/dart/data/urdf/drchubo/meshes/convhull_Torso_merged.stl +0 -0
  794. share/doc/dart/data/urdf/drchubo/package.xml +11 -0
  795. share/doc/dart/data/urdf/test/invalid.urdf +1 -0
  796. share/doc/dart/data/urdf/test/invalid_mesh.stl +1 -0
  797. share/doc/dart/data/urdf/test/invalid_mesh.urdf +10 -0
  798. share/doc/dart/data/urdf/test/issue838.urdf +86 -0
  799. share/doc/dart/data/urdf/test/joint_properties.urdf +60 -0
  800. share/doc/dart/data/urdf/test/missing_mesh.urdf +10 -0
  801. share/doc/dart/data/urdf/test/missing_package.urdf +10 -0
  802. share/doc/dart/data/urdf/test/primitive_geometry.urdf +12 -0
  803. share/doc/dart/data/urdf/test/testWorld.urdf +9 -0
  804. share/doc/dart/data/urdf/wam/meshes/images/base_gray_128x.jpg +0 -0
  805. share/doc/dart/data/urdf/wam/meshes/images/forearm_256x.jpg +0 -0
  806. share/doc/dart/data/urdf/wam/meshes/images/lpu_128x.jpg +0 -0
  807. share/doc/dart/data/urdf/wam/meshes/images/shoulder_256x.jpg +0 -0
  808. share/doc/dart/data/urdf/wam/meshes/images/upperarm_128x.jpg +0 -0
  809. share/doc/dart/data/urdf/wam/meshes/images/wrist_yaw_128x.jpg +0 -0
  810. share/doc/dart/data/urdf/wam/meshes/wam/wam1.STL +0 -0
  811. share/doc/dart/data/urdf/wam/meshes/wam/wam1.dae +187 -0
  812. share/doc/dart/data/urdf/wam/meshes/wam/wam1_collision.STL +0 -0
  813. share/doc/dart/data/urdf/wam/meshes/wam/wam2.STL +0 -0
  814. share/doc/dart/data/urdf/wam/meshes/wam/wam2.dae +187 -0
  815. share/doc/dart/data/urdf/wam/meshes/wam/wam2_collision.STL +0 -0
  816. share/doc/dart/data/urdf/wam/meshes/wam/wam3.STL +0 -0
  817. share/doc/dart/data/urdf/wam/meshes/wam/wam3.dae +187 -0
  818. share/doc/dart/data/urdf/wam/meshes/wam/wam3_collision.STL +0 -0
  819. share/doc/dart/data/urdf/wam/meshes/wam/wam4.STL +0 -0
  820. share/doc/dart/data/urdf/wam/meshes/wam/wam4.dae +187 -0
  821. share/doc/dart/data/urdf/wam/meshes/wam/wam4_collision.STL +0 -0
  822. share/doc/dart/data/urdf/wam/meshes/wam/wam5.STL +0 -0
  823. share/doc/dart/data/urdf/wam/meshes/wam/wam5.dae +187 -0
  824. share/doc/dart/data/urdf/wam/meshes/wam/wam5_collision.STL +0 -0
  825. share/doc/dart/data/urdf/wam/meshes/wam/wam6.STL +0 -0
  826. share/doc/dart/data/urdf/wam/meshes/wam/wam6.dae +187 -0
  827. share/doc/dart/data/urdf/wam/meshes/wam/wam6_collision.STL +0 -0
  828. share/doc/dart/data/urdf/wam/meshes/wam/wam7.STL +0 -0
  829. share/doc/dart/data/urdf/wam/meshes/wam/wam7.dae +137 -0
  830. share/doc/dart/data/urdf/wam/meshes/wam/wam7_collision.STL +0 -0
  831. share/doc/dart/data/urdf/wam/meshes/wam/wam_base.STL +0 -0
  832. share/doc/dart/data/urdf/wam/meshes/wam/wam_base.dae +103 -0
  833. share/doc/dart/data/urdf/wam/meshes/wam/wam_base_collision.STL +0 -0
  834. share/doc/dart/data/urdf/wam/wam.urdf +230 -0
  835. share/doc/dart/data/vsk/Nick01.vsk +398 -0
  836. share/doc/dart/data/vsk/SehoonVSK3.vsk +398 -0
  837. share/doc/dart/data/vsk/Yuting.vsk +398 -0
  838. share/doc/dart/data/vsk/test/empty.vsk +3 -0
  839. share/doc/dart/examples/CMakeLists.txt +44 -0
  840. share/doc/dart/examples/README.md +33 -0
  841. share/doc/dart/examples/add_delete_skels/CMakeLists.txt +19 -0
  842. share/doc/dart/examples/add_delete_skels/main.cpp +165 -0
  843. share/doc/dart/examples/atlas_puppet/CMakeLists.txt +19 -0
  844. share/doc/dart/examples/atlas_puppet/README.md +20 -0
  845. share/doc/dart/examples/atlas_puppet/main.cpp +930 -0
  846. share/doc/dart/examples/atlas_simbicon/AtlasSimbiconEventHandler.cpp +71 -0
  847. share/doc/dart/examples/atlas_simbicon/AtlasSimbiconEventHandler.hpp +56 -0
  848. share/doc/dart/examples/atlas_simbicon/AtlasSimbiconWidget.cpp +187 -0
  849. share/doc/dart/examples/atlas_simbicon/AtlasSimbiconWidget.hpp +85 -0
  850. share/doc/dart/examples/atlas_simbicon/AtlasSimbiconWorldNode.cpp +134 -0
  851. share/doc/dart/examples/atlas_simbicon/AtlasSimbiconWorldNode.hpp +75 -0
  852. share/doc/dart/examples/atlas_simbicon/CMakeLists.txt +19 -0
  853. share/doc/dart/examples/atlas_simbicon/Controller.cpp +996 -0
  854. share/doc/dart/examples/atlas_simbicon/Controller.hpp +203 -0
  855. share/doc/dart/examples/atlas_simbicon/README.md +20 -0
  856. share/doc/dart/examples/atlas_simbicon/State.cpp +674 -0
  857. share/doc/dart/examples/atlas_simbicon/State.hpp +336 -0
  858. share/doc/dart/examples/atlas_simbicon/StateMachine.cpp +222 -0
  859. share/doc/dart/examples/atlas_simbicon/StateMachine.hpp +134 -0
  860. share/doc/dart/examples/atlas_simbicon/TerminalCondition.cpp +111 -0
  861. share/doc/dart/examples/atlas_simbicon/TerminalCondition.hpp +102 -0
  862. share/doc/dart/examples/atlas_simbicon/main.cpp +102 -0
  863. share/doc/dart/examples/biped_stand/CMakeLists.txt +19 -0
  864. share/doc/dart/examples/biped_stand/README.md +20 -0
  865. share/doc/dart/examples/biped_stand/main.cpp +287 -0
  866. share/doc/dart/examples/box_stacking/CMakeLists.txt +19 -0
  867. share/doc/dart/examples/box_stacking/README.md +20 -0
  868. share/doc/dart/examples/box_stacking/main.cpp +417 -0
  869. share/doc/dart/examples/boxes/CMakeLists.txt +19 -0
  870. share/doc/dart/examples/boxes/README.md +20 -0
  871. share/doc/dart/examples/boxes/main.cpp +157 -0
  872. share/doc/dart/examples/drag_and_drop/CMakeLists.txt +19 -0
  873. share/doc/dart/examples/drag_and_drop/README.md +20 -0
  874. share/doc/dart/examples/drag_and_drop/main.cpp +101 -0
  875. share/doc/dart/examples/empty/CMakeLists.txt +19 -0
  876. share/doc/dart/examples/empty/README.md +20 -0
  877. share/doc/dart/examples/empty/main.cpp +164 -0
  878. share/doc/dart/examples/fetch/CMakeLists.txt +19 -0
  879. share/doc/dart/examples/fetch/README.md +20 -0
  880. share/doc/dart/examples/fetch/main.cpp +246 -0
  881. share/doc/dart/examples/hardcoded_design/CMakeLists.txt +19 -0
  882. share/doc/dart/examples/hardcoded_design/HardcodedEventHandler.cpp +71 -0
  883. share/doc/dart/examples/hardcoded_design/HardcodedEventHandler.hpp +56 -0
  884. share/doc/dart/examples/hardcoded_design/README.md +27 -0
  885. share/doc/dart/examples/hardcoded_design/main.cpp +186 -0
  886. share/doc/dart/examples/heightmap/CMakeLists.txt +19 -0
  887. share/doc/dart/examples/heightmap/README.md +20 -0
  888. share/doc/dart/examples/heightmap/main.cpp +460 -0
  889. share/doc/dart/examples/hello_world/CMakeLists.txt +19 -0
  890. share/doc/dart/examples/hello_world/README.md +20 -0
  891. share/doc/dart/examples/hello_world/main.cpp +114 -0
  892. share/doc/dart/examples/hubo_puppet/CMakeLists.txt +19 -0
  893. share/doc/dart/examples/hubo_puppet/README.md +20 -0
  894. share/doc/dart/examples/hubo_puppet/main.cpp +1464 -0
  895. share/doc/dart/examples/human_joint_limits/CMakeLists.txt +49 -0
  896. share/doc/dart/examples/human_joint_limits/HumanArmJointLimitConstraint.cpp +411 -0
  897. share/doc/dart/examples/human_joint_limits/HumanArmJointLimitConstraint.hpp +182 -0
  898. share/doc/dart/examples/human_joint_limits/HumanLegJointLimitConstraint.cpp +432 -0
  899. share/doc/dart/examples/human_joint_limits/HumanLegJointLimitConstraint.hpp +179 -0
  900. share/doc/dart/examples/human_joint_limits/main.cpp +157 -0
  901. share/doc/dart/examples/hybrid_dynamics/CMakeLists.txt +19 -0
  902. share/doc/dart/examples/hybrid_dynamics/README.md +17 -0
  903. share/doc/dart/examples/hybrid_dynamics/main.cpp +187 -0
  904. share/doc/dart/examples/imgui/CMakeLists.txt +19 -0
  905. share/doc/dart/examples/imgui/README.md +20 -0
  906. share/doc/dart/examples/imgui/main.cpp +289 -0
  907. share/doc/dart/examples/joint_constraints/CMakeLists.txt +19 -0
  908. share/doc/dart/examples/joint_constraints/Controller.cpp +110 -0
  909. share/doc/dart/examples/joint_constraints/Controller.hpp +105 -0
  910. share/doc/dart/examples/joint_constraints/README.md +22 -0
  911. share/doc/dart/examples/joint_constraints/main.cpp +242 -0
  912. share/doc/dart/examples/mixed_chain/CMakeLists.txt +19 -0
  913. share/doc/dart/examples/mixed_chain/README.md +35 -0
  914. share/doc/dart/examples/mixed_chain/main.cpp +188 -0
  915. share/doc/dart/examples/operational_space_control/CMakeLists.txt +19 -0
  916. share/doc/dart/examples/operational_space_control/README.md +20 -0
  917. share/doc/dart/examples/operational_space_control/main.cpp +338 -0
  918. share/doc/dart/examples/point_cloud/CMakeLists.txt +19 -0
  919. share/doc/dart/examples/point_cloud/README.md +20 -0
  920. share/doc/dart/examples/point_cloud/main.cpp +740 -0
  921. share/doc/dart/examples/rerun/CMakeLists.txt +19 -0
  922. share/doc/dart/examples/rigid_chain/CMakeLists.txt +19 -0
  923. share/doc/dart/examples/rigid_chain/README.md +19 -0
  924. share/doc/dart/examples/rigid_chain/main.cpp +110 -0
  925. share/doc/dart/examples/rigid_cubes/CMakeLists.txt +19 -0
  926. share/doc/dart/examples/rigid_cubes/README.md +91 -0
  927. share/doc/dart/examples/rigid_cubes/main.cpp +201 -0
  928. share/doc/dart/examples/rigid_loop/CMakeLists.txt +19 -0
  929. share/doc/dart/examples/rigid_loop/README.md +34 -0
  930. share/doc/dart/examples/rigid_loop/main.cpp +127 -0
  931. share/doc/dart/examples/rigid_shapes/CMakeLists.txt +19 -0
  932. share/doc/dart/examples/rigid_shapes/README.md +19 -0
  933. share/doc/dart/examples/rigid_shapes/main.cpp +250 -0
  934. share/doc/dart/examples/simple_frames/CMakeLists.txt +19 -0
  935. share/doc/dart/examples/simple_frames/README.md +27 -0
  936. share/doc/dart/examples/simple_frames/main.cpp +124 -0
  937. share/doc/dart/examples/simulation_event_handler/CMakeLists.txt +19 -0
  938. share/doc/dart/examples/simulation_event_handler/README.md +189 -0
  939. share/doc/dart/examples/simulation_event_handler/SimulationEventHandler.cpp +572 -0
  940. share/doc/dart/examples/simulation_event_handler/SimulationEventHandler.hpp +211 -0
  941. share/doc/dart/examples/simulation_event_handler/main.cpp +277 -0
  942. share/doc/dart/examples/soft_bodies/CMakeLists.txt +19 -0
  943. share/doc/dart/examples/soft_bodies/README.md +20 -0
  944. share/doc/dart/examples/soft_bodies/main.cpp +219 -0
  945. share/doc/dart/examples/speed_test/CMakeLists.txt +19 -0
  946. share/doc/dart/examples/speed_test/README.md +20 -0
  947. share/doc/dart/examples/speed_test/main.cpp +250 -0
  948. share/doc/dart/examples/tinkertoy/CMakeLists.txt +19 -0
  949. share/doc/dart/examples/tinkertoy/README.md +20 -0
  950. share/doc/dart/examples/tinkertoy/TinkertoyWidget.cpp +208 -0
  951. share/doc/dart/examples/tinkertoy/TinkertoyWidget.hpp +70 -0
  952. share/doc/dart/examples/tinkertoy/TinkertoyWorldNode.cpp +35 -0
  953. share/doc/dart/examples/tinkertoy/TinkertoyWorldNode.hpp +470 -0
  954. share/doc/dart/examples/tinkertoy/main.cpp +186 -0
  955. share/doc/dart/examples/vehicle/CMakeLists.txt +19 -0
  956. share/doc/dart/examples/vehicle/README.md +22 -0
  957. share/doc/dart/examples/vehicle/main.cpp +195 -0
  958. share/doc/dart/examples/wam_ikfast/CMakeLists.txt +22 -0
  959. share/doc/dart/examples/wam_ikfast/Helpers.cpp +148 -0
  960. share/doc/dart/examples/wam_ikfast/Helpers.hpp +46 -0
  961. share/doc/dart/examples/wam_ikfast/InputHandler.cpp +110 -0
  962. share/doc/dart/examples/wam_ikfast/InputHandler.hpp +73 -0
  963. share/doc/dart/examples/wam_ikfast/README.md +20 -0
  964. share/doc/dart/examples/wam_ikfast/WamWorld.cpp +46 -0
  965. share/doc/dart/examples/wam_ikfast/WamWorld.hpp +53 -0
  966. share/doc/dart/examples/wam_ikfast/ikfast/CMakeLists.txt +11 -0
  967. share/doc/dart/examples/wam_ikfast/ikfast/ikfast71.Transform6D.4_6_9_10_11_12_f8.cpp +14930 -0
  968. share/doc/dart/examples/wam_ikfast/osgWamIkFast.cpp +96 -0
  969. share/doc/dart/tutorials/CMakeLists.txt +12 -0
  970. share/doc/dart/tutorials/README.md +45 -0
  971. share/doc/dart/tutorials/tutorial_biped/CMakeLists.txt +19 -0
  972. share/doc/dart/tutorials/tutorial_biped/README +18 -0
  973. share/doc/dart/tutorials/tutorial_biped/main.cpp +374 -0
  974. share/doc/dart/tutorials/tutorial_biped_finished/CMakeLists.txt +19 -0
  975. share/doc/dart/tutorials/tutorial_biped_finished/README +18 -0
  976. share/doc/dart/tutorials/tutorial_biped_finished/main.cpp +532 -0
  977. share/doc/dart/tutorials/tutorial_collisions/CMakeLists.txt +19 -0
  978. share/doc/dart/tutorials/tutorial_collisions/README +18 -0
  979. share/doc/dart/tutorials/tutorial_collisions/main.cpp +506 -0
  980. share/doc/dart/tutorials/tutorial_collisions_finished/CMakeLists.txt +19 -0
  981. share/doc/dart/tutorials/tutorial_collisions_finished/README +18 -0
  982. share/doc/dart/tutorials/tutorial_collisions_finished/main.cpp +679 -0
  983. share/doc/dart/tutorials/tutorial_dominoes/CMakeLists.txt +19 -0
  984. share/doc/dart/tutorials/tutorial_dominoes/README +18 -0
  985. share/doc/dart/tutorials/tutorial_dominoes/main.cpp +394 -0
  986. share/doc/dart/tutorials/tutorial_dominoes_finished/CMakeLists.txt +19 -0
  987. share/doc/dart/tutorials/tutorial_dominoes_finished/README +18 -0
  988. share/doc/dart/tutorials/tutorial_dominoes_finished/main.cpp +559 -0
  989. share/doc/dart/tutorials/tutorial_multi_pendulum/CMakeLists.txt +19 -0
  990. share/doc/dart/tutorials/tutorial_multi_pendulum/README +18 -0
  991. share/doc/dart/tutorials/tutorial_multi_pendulum/main.cpp +443 -0
  992. share/doc/dart/tutorials/tutorial_multi_pendulum_finished/CMakeLists.txt +19 -0
  993. share/doc/dart/tutorials/tutorial_multi_pendulum_finished/README +18 -0
  994. share/doc/dart/tutorials/tutorial_multi_pendulum_finished/main.cpp +512 -0
@@ -0,0 +1,1567 @@
1
+ <sdf version='1.4'>
2
+ <model name='drc_skeleton'>
3
+ <link name='pelvis'>
4
+ <pose>0 0 0 0 -0 0</pose>
5
+ <inertial>
6
+ <pose>0.0111 0 0.0271 0 -0 0</pose>
7
+ <mass>17.882</mass>
8
+ <inertia>
9
+ <ixx>0.1244</ixx>
10
+ <ixy>0.0008</ixy>
11
+ <ixz>-0.0007</ixz>
12
+ <iyy>0.0958</iyy>
13
+ <iyz>-0.0005</iyz>
14
+ <izz>0.1167</izz>
15
+ </inertia>
16
+ </inertial>
17
+ <collision name='pelvis_collision'>
18
+ <pose>0 0 0 0 -0 0</pose>
19
+ <geometry>
20
+ <mesh>
21
+ <scale>1 1 1</scale>
22
+ <uri>pelvis.stl</uri>
23
+ </mesh>
24
+ </geometry>
25
+ </collision>
26
+ <visual name='pelvis_visual'>
27
+ <pose>0 0 0 0 -0 0</pose>
28
+ <geometry>
29
+ <mesh>
30
+ <scale>1 1 1</scale>
31
+ <uri>pelvis.dae</uri>
32
+ </mesh>
33
+ </geometry>
34
+ </visual>
35
+ <velocity_decay>
36
+ <linear>0</linear>
37
+ <angular>0</angular>
38
+ </velocity_decay>
39
+ </link>
40
+ <link name='ltorso'>
41
+ <pose>-0.0125 0 0 0 -0 0</pose>
42
+ <inertial>
43
+ <pose>-0.0112984 -3.15366e-06 0.0746835 0 -0 0</pose>
44
+ <mass>2.409</mass>
45
+ <inertia>
46
+ <ixx>0.0039092</ixx>
47
+ <ixy>-5.04491e-08</ixy>
48
+ <ixz>-0.000342157</ixz>
49
+ <iyy>0.00341694</iyy>
50
+ <iyz>4.87119e-07</iyz>
51
+ <izz>0.00174492</izz>
52
+ </inertia>
53
+ </inertial>
54
+ <collision name='ltorso_collision'>
55
+ <pose>0 0 0 0 -0 0</pose>
56
+ <geometry>
57
+ <mesh>
58
+ <scale>1 1 1</scale>
59
+ <uri>ltorso.stl</uri>
60
+ </mesh>
61
+ </geometry>
62
+ </collision>
63
+ <visual name='ltorso_visual'>
64
+ <pose>0 0 0 0 -0 0</pose>
65
+ <geometry>
66
+ <mesh>
67
+ <scale>1 1 1</scale>
68
+ <uri>ltorso.dae</uri>
69
+ </mesh>
70
+ </geometry>
71
+ </visual>
72
+ <velocity_decay>
73
+ <linear>0</linear>
74
+ <angular>0</angular>
75
+ </velocity_decay>
76
+ </link>
77
+ <joint name='back_bkz' type='revolute'>
78
+ <child>ltorso</child>
79
+ <parent>pelvis</parent>
80
+ <axis>
81
+ <xyz>0 0 1</xyz>
82
+ <limit>
83
+ <lower>-0.663225</lower>
84
+ <upper>0.663225</upper>
85
+ <effort>124.016</effort>
86
+ <velocity>12</velocity>
87
+ </limit>
88
+ <dynamics>
89
+ <damping>0.1</damping>
90
+ </dynamics>
91
+ <use_parent_model_frame>0</use_parent_model_frame>
92
+ </axis>
93
+ </joint>
94
+ <link name='mtorso'>
95
+ <pose>-0.0125 0 0.16197 0 -0 0</pose>
96
+ <inertial>
97
+ <pose>-0.00816266 -0.0131245 0.0305974 0 -0 0</pose>
98
+ <mass>0.69</mass>
99
+ <inertia>
100
+ <ixx>0.000454181</ixx>
101
+ <ixy>-6.10764e-05</ixy>
102
+ <ixz>3.94009e-05</ixz>
103
+ <iyy>0.000483282</iyy>
104
+ <iyz>5.27463e-05</iyz>
105
+ <izz>0.000444215</izz>
106
+ </inertia>
107
+ </inertial>
108
+ <collision name='mtorso_collision'>
109
+ <pose>0 0 0 0 -0 0</pose>
110
+ <geometry>
111
+ <mesh>
112
+ <scale>1 1 1</scale>
113
+ <uri>mtorso.stl</uri>
114
+ </mesh>
115
+ </geometry>
116
+ </collision>
117
+ <visual name='mtorso_visual'>
118
+ <pose>0 0 0 0 -0 0</pose>
119
+ <geometry>
120
+ <mesh>
121
+ <scale>1 1 1</scale>
122
+ <uri>mtorso.dae</uri>
123
+ </mesh>
124
+ </geometry>
125
+ </visual>
126
+ <velocity_decay>
127
+ <linear>0</linear>
128
+ <angular>0</angular>
129
+ </velocity_decay>
130
+ </link>
131
+ <joint name='back_bky' type='revolute'>
132
+ <child>mtorso</child>
133
+ <parent>ltorso</parent>
134
+ <axis>
135
+ <xyz>0 1 0</xyz>
136
+ <limit>
137
+ <lower>-0.610691</lower>
138
+ <upper>0.438427</upper>
139
+ <effort>206.843</effort>
140
+ <velocity>12</velocity>
141
+ </limit>
142
+ <dynamics>
143
+ <damping>0.1</damping>
144
+ </dynamics>
145
+ <use_parent_model_frame>0</use_parent_model_frame>
146
+ </axis>
147
+ </joint>
148
+ <link name='utorso'>
149
+ <pose>-0.0125 0 0.21197 0 -0 0</pose>
150
+ <inertial>
151
+ <pose>-0.0909481 5.04713e-05 0.301106 0 -0 0</pose>
152
+ <mass>52.307</mass>
153
+ <inertia>
154
+ <ixx>1.4846</ixx>
155
+ <ixy>0.00338676</ixy>
156
+ <ixz>0.326214</ixz>
157
+ <iyy>1.54533</iyy>
158
+ <iyz>3.95833e-05</iyz>
159
+ <izz>1.32284</izz>
160
+ </inertia>
161
+ </inertial>
162
+ <collision name='utorso_collision'>
163
+ <pose>0 0 0 0 -0 0</pose>
164
+ <geometry>
165
+ <mesh>
166
+ <scale>1 1 1</scale>
167
+ <uri>utorso.stl</uri>
168
+ </mesh>
169
+ </geometry>
170
+ </collision>
171
+ <collision name='utorso_collision_utorso_1'>
172
+ <pose>0 0 0 0 -0 0</pose>
173
+ <geometry>
174
+ <mesh>
175
+ <scale>1 1 1</scale>
176
+ <uri>utorso_pack.stl</uri>
177
+ </mesh>
178
+ </geometry>
179
+ </collision>
180
+ <visual name='utorso_visual'>
181
+ <pose>0 0 0 0 -0 0</pose>
182
+ <geometry>
183
+ <mesh>
184
+ <scale>1 1 1</scale>
185
+ <uri>utorso.dae</uri>
186
+ </mesh>
187
+ </geometry>
188
+ </visual>
189
+ <visual name='utorso_visual_utorso_1'>
190
+ <pose>0 0 0 0 -0 0</pose>
191
+ <geometry>
192
+ <mesh>
193
+ <scale>1 1 1</scale>
194
+ <uri>utorso_pack.dae</uri>
195
+ </mesh>
196
+ </geometry>
197
+ </visual>
198
+ <visual name='utorso_visual_l_situational_awareness_camera_link'>
199
+ <pose>0.216409 0.121799 0.406759 -1.5708 5.55112e-17 1.309</pose>
200
+ <geometry>
201
+ <box>
202
+ <size>0.01 0.01 0.01</size>
203
+ </box>
204
+ </geometry>
205
+ </visual>
206
+ <visual name='utorso_visual_r_situational_awareness_camera_link'>
207
+ <pose>0.216409 -0.121799 0.406759 1.5708 5.55112e-17 -1.309</pose>
208
+ <geometry>
209
+ <box>
210
+ <size>0.01 0.01 0.01</size>
211
+ </box>
212
+ </geometry>
213
+ </visual>
214
+ <visual name='utorso_visual_rear_situational_awareness_camera_link'>
215
+ <pose>-0.0026 0.0264 0.6649 0 -0 3.14159</pose>
216
+ <geometry>
217
+ <box>
218
+ <size>0.01 0.01 0.01</size>
219
+ </box>
220
+ </geometry>
221
+ </visual>
222
+ <velocity_decay>
223
+ <linear>0</linear>
224
+ <angular>0</angular>
225
+ </velocity_decay>
226
+ </link>
227
+ <joint name='back_bkx' type='revolute'>
228
+ <child>utorso</child>
229
+ <parent>mtorso</parent>
230
+ <axis>
231
+ <xyz>1 0 0</xyz>
232
+ <limit>
233
+ <lower>-0.698132</lower>
234
+ <upper>0.698132</upper>
235
+ <effort>200</effort>
236
+ <velocity>12</velocity>
237
+ </limit>
238
+ <dynamics>
239
+ <damping>0.1</damping>
240
+ </dynamics>
241
+ <use_parent_model_frame>0</use_parent_model_frame>
242
+ </axis>
243
+ </joint>
244
+ <link name='l_clav'>
245
+ <pose>0.05191 0.13866 0.31915 0 -0 0</pose>
246
+ <inertial>
247
+ <pose>0 0.048 0.084 0 -0 0</pose>
248
+ <mass>3.45</mass>
249
+ <inertia>
250
+ <ixx>0.011</ixx>
251
+ <ixy>0</ixy>
252
+ <ixz>0</ixz>
253
+ <iyy>0.009</iyy>
254
+ <iyz>-0.004</iyz>
255
+ <izz>0.004</izz>
256
+ </inertia>
257
+ </inertial>
258
+ <collision name='l_clav_collision'>
259
+ <pose>0 0 0 0 -0 0</pose>
260
+ <geometry>
261
+ <mesh>
262
+ <scale>1 1 1</scale>
263
+ <uri>l_clav.stl</uri>
264
+ </mesh>
265
+ </geometry>
266
+ </collision>
267
+ <visual name='l_clav_visual'>
268
+ <pose>0 0 0 0 -0 0</pose>
269
+ <geometry>
270
+ <mesh>
271
+ <scale>1 1 1</scale>
272
+ <uri>l_clav.dae</uri>
273
+ </mesh>
274
+ </geometry>
275
+ </visual>
276
+ <velocity_decay>
277
+ <linear>0</linear>
278
+ <angular>0</angular>
279
+ </velocity_decay>
280
+ </link>
281
+ <joint name='l_arm_shy' type='revolute'>
282
+ <child>l_clav</child>
283
+ <parent>utorso</parent>
284
+ <axis>
285
+ <xyz>0 0.5 0.866025</xyz>
286
+ <limit>
287
+ <lower>-1.5708</lower>
288
+ <upper>0.785398</upper>
289
+ <effort>212</effort>
290
+ <velocity>12</velocity>
291
+ </limit>
292
+ <dynamics>
293
+ <damping>0.1</damping>
294
+ </dynamics>
295
+ <use_parent_model_frame>0</use_parent_model_frame>
296
+ </axis>
297
+ </joint>
298
+ <link name='l_scap'>
299
+ <pose>0.05191 0.27901 0.51524 0 -0 0</pose>
300
+ <inertial>
301
+ <pose>0 0 0 0 -0 0</pose>
302
+ <mass>3.012</mass>
303
+ <inertia>
304
+ <ixx>0.00319</ixx>
305
+ <ixy>0</ixy>
306
+ <ixz>0</ixz>
307
+ <iyy>0.00583</iyy>
308
+ <iyz>0</iyz>
309
+ <izz>0.00583</izz>
310
+ </inertia>
311
+ </inertial>
312
+ <collision name='l_scap_collision'>
313
+ <pose>0 0 0 0 -0 0</pose>
314
+ <geometry>
315
+ <mesh>
316
+ <scale>1 1 1</scale>
317
+ <uri>l_scap.stl</uri>
318
+ </mesh>
319
+ </geometry>
320
+ </collision>
321
+ <visual name='l_scap_visual'>
322
+ <pose>0 0 0 0 -0 0</pose>
323
+ <geometry>
324
+ <mesh>
325
+ <scale>1 1 1</scale>
326
+ <uri>l_scap.dae</uri>
327
+ </mesh>
328
+ </geometry>
329
+ </visual>
330
+ <velocity_decay>
331
+ <linear>0</linear>
332
+ <angular>0</angular>
333
+ </velocity_decay>
334
+ </link>
335
+ <joint name='l_arm_shx' type='revolute'>
336
+ <child>l_scap</child>
337
+ <parent>l_clav</parent>
338
+ <axis>
339
+ <xyz>1 0 0</xyz>
340
+ <limit>
341
+ <lower>-1.5708</lower>
342
+ <upper>1.5708</upper>
343
+ <effort>170</effort>
344
+ <velocity>12</velocity>
345
+ </limit>
346
+ <dynamics>
347
+ <damping>0.1</damping>
348
+ </dynamics>
349
+ <use_parent_model_frame>0</use_parent_model_frame>
350
+ </axis>
351
+ </joint>
352
+ <link name='l_uarm'>
353
+ <pose>0.05191 0.46601 0.53124 0 -0 0</pose>
354
+ <inertial>
355
+ <pose>0 -0.065 0 0 -0 0</pose>
356
+ <mass>3.388</mass>
357
+ <inertia>
358
+ <ixx>0.00656</ixx>
359
+ <ixy>0</ixy>
360
+ <ixz>0</ixz>
361
+ <iyy>0.00358</iyy>
362
+ <iyz>0</iyz>
363
+ <izz>0.00656</izz>
364
+ </inertia>
365
+ </inertial>
366
+ <collision name='l_uarm_collision'>
367
+ <pose>0 0 0 0 -0 0</pose>
368
+ <geometry>
369
+ <mesh>
370
+ <scale>1 1 1</scale>
371
+ <uri>l_uarm.stl</uri>
372
+ </mesh>
373
+ </geometry>
374
+ </collision>
375
+ <visual name='l_uarm_visual'>
376
+ <pose>0 0 0 0 -0 0</pose>
377
+ <geometry>
378
+ <mesh>
379
+ <scale>1 1 1</scale>
380
+ <uri>l_uarm.dae</uri>
381
+ </mesh>
382
+ </geometry>
383
+ </visual>
384
+ <velocity_decay>
385
+ <linear>0</linear>
386
+ <angular>0</angular>
387
+ </velocity_decay>
388
+ </link>
389
+ <joint name='l_arm_ely' type='revolute'>
390
+ <child>l_uarm</child>
391
+ <parent>l_scap</parent>
392
+ <axis>
393
+ <xyz>0 1 0</xyz>
394
+ <limit>
395
+ <lower>0</lower>
396
+ <upper>3.14159</upper>
397
+ <effort>114</effort>
398
+ <velocity>12</velocity>
399
+ </limit>
400
+ <dynamics>
401
+ <damping>0.1</damping>
402
+ </dynamics>
403
+ <use_parent_model_frame>0</use_parent_model_frame>
404
+ </axis>
405
+ </joint>
406
+ <link name='l_larm'>
407
+ <pose>0.05191 0.58501 0.54045 0 -0 0</pose>
408
+ <inertial>
409
+ <pose>0 0 0 0 -0 0</pose>
410
+ <mass>2.509</mass>
411
+ <inertia>
412
+ <ixx>0.00265</ixx>
413
+ <ixy>0</ixy>
414
+ <ixz>0</ixz>
415
+ <iyy>0.00446</iyy>
416
+ <iyz>0</iyz>
417
+ <izz>0.00446</izz>
418
+ </inertia>
419
+ </inertial>
420
+ <collision name='l_larm_collision'>
421
+ <pose>0 0 0 0 -0 0</pose>
422
+ <geometry>
423
+ <mesh>
424
+ <scale>1 1 1</scale>
425
+ <uri>l_larm.stl</uri>
426
+ </mesh>
427
+ </geometry>
428
+ </collision>
429
+ <visual name='l_larm_visual'>
430
+ <pose>0 0 0 0 -0 0</pose>
431
+ <geometry>
432
+ <mesh>
433
+ <scale>1 1 1</scale>
434
+ <uri>l_larm.dae</uri>
435
+ </mesh>
436
+ </geometry>
437
+ </visual>
438
+ <velocity_decay>
439
+ <linear>0</linear>
440
+ <angular>0</angular>
441
+ </velocity_decay>
442
+ </link>
443
+ <joint name='l_arm_elx' type='revolute'>
444
+ <child>l_larm</child>
445
+ <parent>l_uarm</parent>
446
+ <axis>
447
+ <xyz>1 0 0</xyz>
448
+ <limit>
449
+ <lower>0</lower>
450
+ <upper>2.35619</upper>
451
+ <effort>114</effort>
452
+ <velocity>12</velocity>
453
+ </limit>
454
+ <dynamics>
455
+ <damping>0.1</damping>
456
+ </dynamics>
457
+ <use_parent_model_frame>0</use_parent_model_frame>
458
+ </axis>
459
+ </joint>
460
+ <link name='l_farm'>
461
+ <pose>0.05191 0.77201 0.53124 0 -0 0</pose>
462
+ <inertial>
463
+ <pose>0 -0.065 0 0 -0 0</pose>
464
+ <mass>3.388</mass>
465
+ <inertia>
466
+ <ixx>0.00656</ixx>
467
+ <ixy>0</ixy>
468
+ <ixz>0</ixz>
469
+ <iyy>0.00358</iyy>
470
+ <iyz>0</iyz>
471
+ <izz>0.00656</izz>
472
+ </inertia>
473
+ </inertial>
474
+ <collision name='l_farm_collision'>
475
+ <pose>0 0 0 0 -0 0</pose>
476
+ <geometry>
477
+ <mesh>
478
+ <scale>1 1 1</scale>
479
+ <uri>l_farm.stl</uri>
480
+ </mesh>
481
+ </geometry>
482
+ </collision>
483
+ <visual name='l_farm_visual'>
484
+ <pose>0 0 0 0 -0 0</pose>
485
+ <geometry>
486
+ <mesh>
487
+ <scale>1 1 1</scale>
488
+ <uri>l_farm.dae</uri>
489
+ </mesh>
490
+ </geometry>
491
+ </visual>
492
+ <velocity_decay>
493
+ <linear>0</linear>
494
+ <angular>0</angular>
495
+ </velocity_decay>
496
+ </link>
497
+ <joint name='l_arm_wry' type='revolute'>
498
+ <child>l_farm</child>
499
+ <parent>l_larm</parent>
500
+ <axis>
501
+ <xyz>0 1 0</xyz>
502
+ <limit>
503
+ <lower>0</lower>
504
+ <upper>3.14159</upper>
505
+ <effort>114</effort>
506
+ <velocity>12</velocity>
507
+ </limit>
508
+ <dynamics>
509
+ <damping>0.1</damping>
510
+ </dynamics>
511
+ <use_parent_model_frame>0</use_parent_model_frame>
512
+ </axis>
513
+ </joint>
514
+ <link name='l_hand'>
515
+ <pose>0.05191 0.89101 0.54045 0 -0 0</pose>
516
+ <inertial>
517
+ <pose>0 0 0 0 -0 0</pose>
518
+ <mass>2.509</mass>
519
+ <inertia>
520
+ <ixx>0.00265</ixx>
521
+ <ixy>0</ixy>
522
+ <ixz>0</ixz>
523
+ <iyy>0.00446</iyy>
524
+ <iyz>0</iyz>
525
+ <izz>0.00446</izz>
526
+ </inertia>
527
+ </inertial>
528
+ <collision name='l_hand_collision'>
529
+ <pose>0 0 0 0 -0 0</pose>
530
+ <geometry>
531
+ <mesh>
532
+ <scale>1 1 1</scale>
533
+ <uri>l_hand.stl</uri>
534
+ </mesh>
535
+ </geometry>
536
+ </collision>
537
+ <visual name='l_hand_visual'>
538
+ <pose>0 0 0 0 -0 0</pose>
539
+ <geometry>
540
+ <mesh>
541
+ <scale>1 1 1</scale>
542
+ <uri>l_hand.dae</uri>
543
+ </mesh>
544
+ </geometry>
545
+ </visual>
546
+ <velocity_decay>
547
+ <linear>0</linear>
548
+ <angular>0</angular>
549
+ </velocity_decay>
550
+ </link>
551
+ <joint name='l_arm_wrx' type='revolute'>
552
+ <child>l_hand</child>
553
+ <parent>l_farm</parent>
554
+ <axis>
555
+ <xyz>1 0 0</xyz>
556
+ <limit>
557
+ <lower>-1.1781</lower>
558
+ <upper>1.1781</upper>
559
+ <effort>60</effort>
560
+ <velocity>12</velocity>
561
+ </limit>
562
+ <dynamics>
563
+ <damping>0.1</damping>
564
+ </dynamics>
565
+ <use_parent_model_frame>0</use_parent_model_frame>
566
+ </axis>
567
+ </joint>
568
+ <link name='r_clav'>
569
+ <pose>0.05191 -0.13866 0.31915 0 -0 0</pose>
570
+ <inertial>
571
+ <pose>0 -0.048 0.084 0 -0 0</pose>
572
+ <mass>3.45</mass>
573
+ <inertia>
574
+ <ixx>0.011</ixx>
575
+ <ixy>0</ixy>
576
+ <ixz>0</ixz>
577
+ <iyy>0.009</iyy>
578
+ <iyz>0.004</iyz>
579
+ <izz>0.004</izz>
580
+ </inertia>
581
+ </inertial>
582
+ <collision name='r_clav_collision'>
583
+ <pose>0 0 0 0 -0 0</pose>
584
+ <geometry>
585
+ <mesh>
586
+ <scale>1 1 1</scale>
587
+ <uri>r_clav.stl</uri>
588
+ </mesh>
589
+ </geometry>
590
+ </collision>
591
+ <visual name='r_clav_visual'>
592
+ <pose>0 0 0 0 -0 0</pose>
593
+ <geometry>
594
+ <mesh>
595
+ <scale>1 1 1</scale>
596
+ <uri>r_clav.dae</uri>
597
+ </mesh>
598
+ </geometry>
599
+ </visual>
600
+ <velocity_decay>
601
+ <linear>0</linear>
602
+ <angular>0</angular>
603
+ </velocity_decay>
604
+ </link>
605
+ <joint name='r_arm_shy' type='revolute'>
606
+ <child>r_clav</child>
607
+ <parent>utorso</parent>
608
+ <axis>
609
+ <xyz>0 0.5 -0.866025</xyz>
610
+ <limit>
611
+ <lower>-1.5708</lower>
612
+ <upper>0.785398</upper>
613
+ <effort>212</effort>
614
+ <velocity>12</velocity>
615
+ </limit>
616
+ <dynamics>
617
+ <damping>0.1</damping>
618
+ </dynamics>
619
+ <use_parent_model_frame>0</use_parent_model_frame>
620
+ </axis>
621
+ </joint>
622
+ <link name='r_scap'>
623
+ <pose>0.05191 -0.27901 0.51524 0 -0 0</pose>
624
+ <inertial>
625
+ <pose>0 0 0 0 -0 0</pose>
626
+ <mass>3.012</mass>
627
+ <inertia>
628
+ <ixx>0.00319</ixx>
629
+ <ixy>0</ixy>
630
+ <ixz>0</ixz>
631
+ <iyy>0.00583</iyy>
632
+ <iyz>0</iyz>
633
+ <izz>0.00583</izz>
634
+ </inertia>
635
+ </inertial>
636
+ <collision name='r_scap_collision'>
637
+ <pose>0 0 0 0 -0 0</pose>
638
+ <geometry>
639
+ <mesh>
640
+ <scale>1 1 1</scale>
641
+ <uri>r_scap.stl</uri>
642
+ </mesh>
643
+ </geometry>
644
+ </collision>
645
+ <visual name='r_scap_visual'>
646
+ <pose>0 0 0 0 -0 0</pose>
647
+ <geometry>
648
+ <mesh>
649
+ <scale>1 1 1</scale>
650
+ <uri>r_scap.dae</uri>
651
+ </mesh>
652
+ </geometry>
653
+ </visual>
654
+ <velocity_decay>
655
+ <linear>0</linear>
656
+ <angular>0</angular>
657
+ </velocity_decay>
658
+ </link>
659
+ <joint name='r_arm_shx' type='revolute'>
660
+ <child>r_scap</child>
661
+ <parent>r_clav</parent>
662
+ <axis>
663
+ <xyz>1 0 0</xyz>
664
+ <limit>
665
+ <lower>-1.5708</lower>
666
+ <upper>1.5708</upper>
667
+ <effort>170</effort>
668
+ <velocity>12</velocity>
669
+ </limit>
670
+ <dynamics>
671
+ <damping>0.1</damping>
672
+ </dynamics>
673
+ <use_parent_model_frame>0</use_parent_model_frame>
674
+ </axis>
675
+ </joint>
676
+ <link name='r_uarm'>
677
+ <pose>0.05191 -0.46601 0.53124 0 -0 0</pose>
678
+ <inertial>
679
+ <pose>0 0.065 0 0 -0 0</pose>
680
+ <mass>3.388</mass>
681
+ <inertia>
682
+ <ixx>0.00656</ixx>
683
+ <ixy>0</ixy>
684
+ <ixz>0</ixz>
685
+ <iyy>0.00358</iyy>
686
+ <iyz>0</iyz>
687
+ <izz>0.00656</izz>
688
+ </inertia>
689
+ </inertial>
690
+ <collision name='r_uarm_collision'>
691
+ <pose>0 0 0 0 -0 0</pose>
692
+ <geometry>
693
+ <mesh>
694
+ <scale>1 1 1</scale>
695
+ <uri>r_uarm.stl</uri>
696
+ </mesh>
697
+ </geometry>
698
+ </collision>
699
+ <visual name='r_uarm_visual'>
700
+ <pose>0 0 0 0 -0 0</pose>
701
+ <geometry>
702
+ <mesh>
703
+ <scale>1 1 1</scale>
704
+ <uri>r_uarm.dae</uri>
705
+ </mesh>
706
+ </geometry>
707
+ </visual>
708
+ <velocity_decay>
709
+ <linear>0</linear>
710
+ <angular>0</angular>
711
+ </velocity_decay>
712
+ </link>
713
+ <joint name='r_arm_ely' type='revolute'>
714
+ <child>r_uarm</child>
715
+ <parent>r_scap</parent>
716
+ <axis>
717
+ <xyz>0 1 0</xyz>
718
+ <limit>
719
+ <lower>0</lower>
720
+ <upper>3.14159</upper>
721
+ <effort>114</effort>
722
+ <velocity>12</velocity>
723
+ </limit>
724
+ <dynamics>
725
+ <damping>0.1</damping>
726
+ </dynamics>
727
+ <use_parent_model_frame>0</use_parent_model_frame>
728
+ </axis>
729
+ </joint>
730
+ <link name='r_larm'>
731
+ <pose>0.05191 -0.58501 0.54045 0 -0 0</pose>
732
+ <inertial>
733
+ <pose>0 0 0 0 -0 0</pose>
734
+ <mass>2.509</mass>
735
+ <inertia>
736
+ <ixx>0.00265</ixx>
737
+ <ixy>0</ixy>
738
+ <ixz>0</ixz>
739
+ <iyy>0.00446</iyy>
740
+ <iyz>0</iyz>
741
+ <izz>0.00446</izz>
742
+ </inertia>
743
+ </inertial>
744
+ <collision name='r_larm_collision'>
745
+ <pose>0 0 0 0 -0 0</pose>
746
+ <geometry>
747
+ <mesh>
748
+ <scale>1 1 1</scale>
749
+ <uri>r_larm.stl</uri>
750
+ </mesh>
751
+ </geometry>
752
+ </collision>
753
+ <visual name='r_larm_visual'>
754
+ <pose>0 0 0 0 -0 0</pose>
755
+ <geometry>
756
+ <mesh>
757
+ <scale>1 1 1</scale>
758
+ <uri>r_larm.dae</uri>
759
+ </mesh>
760
+ </geometry>
761
+ </visual>
762
+ <velocity_decay>
763
+ <linear>0</linear>
764
+ <angular>0</angular>
765
+ </velocity_decay>
766
+ </link>
767
+ <joint name='r_arm_elx' type='revolute'>
768
+ <child>r_larm</child>
769
+ <parent>r_uarm</parent>
770
+ <axis>
771
+ <xyz>1 0 0</xyz>
772
+ <limit>
773
+ <lower>-2.35619</lower>
774
+ <upper>0</upper>
775
+ <effort>114</effort>
776
+ <velocity>12</velocity>
777
+ </limit>
778
+ <dynamics>
779
+ <damping>0.1</damping>
780
+ </dynamics>
781
+ <use_parent_model_frame>0</use_parent_model_frame>
782
+ </axis>
783
+ </joint>
784
+ <link name='r_farm'>
785
+ <pose>0.05191 -0.77201 0.53124 0 -0 0</pose>
786
+ <inertial>
787
+ <pose>0 0.065 0 0 -0 0</pose>
788
+ <mass>3.388</mass>
789
+ <inertia>
790
+ <ixx>0.00656</ixx>
791
+ <ixy>0</ixy>
792
+ <ixz>0</ixz>
793
+ <iyy>0.00358</iyy>
794
+ <iyz>0</iyz>
795
+ <izz>0.00656</izz>
796
+ </inertia>
797
+ </inertial>
798
+ <collision name='r_farm_collision'>
799
+ <pose>0 0 0 0 -0 0</pose>
800
+ <geometry>
801
+ <mesh>
802
+ <scale>1 1 1</scale>
803
+ <uri>r_farm.stl</uri>
804
+ </mesh>
805
+ </geometry>
806
+ </collision>
807
+ <visual name='r_farm_visual'>
808
+ <pose>0 0 0 0 -0 0</pose>
809
+ <geometry>
810
+ <mesh>
811
+ <scale>1 1 1</scale>
812
+ <uri>r_farm.dae</uri>
813
+ </mesh>
814
+ </geometry>
815
+ </visual>
816
+ <velocity_decay>
817
+ <linear>0</linear>
818
+ <angular>0</angular>
819
+ </velocity_decay>
820
+ </link>
821
+ <joint name='r_arm_wry' type='revolute'>
822
+ <child>r_farm</child>
823
+ <parent>r_larm</parent>
824
+ <axis>
825
+ <xyz>0 1 0</xyz>
826
+ <limit>
827
+ <lower>0</lower>
828
+ <upper>3.14159</upper>
829
+ <effort>114</effort>
830
+ <velocity>12</velocity>
831
+ </limit>
832
+ <dynamics>
833
+ <damping>0.1</damping>
834
+ </dynamics>
835
+ <use_parent_model_frame>0</use_parent_model_frame>
836
+ </axis>
837
+ </joint>
838
+ <link name='r_hand'>
839
+ <pose>0.05191 -0.89101 0.54045 0 -0 0</pose>
840
+ <inertial>
841
+ <pose>0 0 0 0 -0 0</pose>
842
+ <mass>2.509</mass>
843
+ <inertia>
844
+ <ixx>0.00265</ixx>
845
+ <ixy>0</ixy>
846
+ <ixz>0</ixz>
847
+ <iyy>0.00446</iyy>
848
+ <iyz>0</iyz>
849
+ <izz>0.00446</izz>
850
+ </inertia>
851
+ </inertial>
852
+ <collision name='r_hand_collision'>
853
+ <pose>0 0 0 0 -0 0</pose>
854
+ <geometry>
855
+ <mesh>
856
+ <scale>1 1 1</scale>
857
+ <uri>r_hand.stl</uri>
858
+ </mesh>
859
+ </geometry>
860
+ </collision>
861
+ <visual name='r_hand_visual'>
862
+ <pose>0 0 0 0 -0 0</pose>
863
+ <geometry>
864
+ <mesh>
865
+ <scale>1 1 1</scale>
866
+ <uri>r_hand.dae</uri>
867
+ </mesh>
868
+ </geometry>
869
+ </visual>
870
+ <velocity_decay>
871
+ <linear>0</linear>
872
+ <angular>0</angular>
873
+ </velocity_decay>
874
+ </link>
875
+ <joint name='r_arm_wrx' type='revolute'>
876
+ <child>r_hand</child>
877
+ <parent>r_farm</parent>
878
+ <axis>
879
+ <xyz>1 0 0</xyz>
880
+ <limit>
881
+ <lower>-1.1781</lower>
882
+ <upper>1.1781</upper>
883
+ <effort>60</effort>
884
+ <velocity>12</velocity>
885
+ </limit>
886
+ <dynamics>
887
+ <damping>0.1</damping>
888
+ </dynamics>
889
+ <use_parent_model_frame>0</use_parent_model_frame>
890
+ </axis>
891
+ </joint>
892
+ <link name='l_uglut'>
893
+ <pose>0 0.089 0 0 -0 0</pose>
894
+ <inertial>
895
+ <pose>0.00529262 -0.00344732 0.00313046 0 -0 0</pose>
896
+ <mass>0.648</mass>
897
+ <inertia>
898
+ <ixx>0.00074276</ixx>
899
+ <ixy>-3.79607e-08</ixy>
900
+ <ixz>-2.79549e-05</ixz>
901
+ <iyy>0.000688179</iyy>
902
+ <iyz>-3.2735e-08</iyz>
903
+ <izz>0.00041242</izz>
904
+ </inertia>
905
+ </inertial>
906
+ <collision name='l_uglut_collision'>
907
+ <pose>0 0 0 0 -0 0</pose>
908
+ <geometry>
909
+ <mesh>
910
+ <scale>1 1 1</scale>
911
+ <uri>l_uglut.stl</uri>
912
+ </mesh>
913
+ </geometry>
914
+ </collision>
915
+ <visual name='l_uglut_visual'>
916
+ <pose>0 0 0 0 -0 0</pose>
917
+ <geometry>
918
+ <mesh>
919
+ <scale>1 1 1</scale>
920
+ <uri>l_uglut.dae</uri>
921
+ </mesh>
922
+ </geometry>
923
+ </visual>
924
+ <velocity_decay>
925
+ <linear>0</linear>
926
+ <angular>0</angular>
927
+ </velocity_decay>
928
+ </link>
929
+ <joint name='l_leg_hpz' type='revolute'>
930
+ <child>l_uglut</child>
931
+ <parent>pelvis</parent>
932
+ <axis>
933
+ <xyz>0 0 1</xyz>
934
+ <limit>
935
+ <lower>-0.174533</lower>
936
+ <upper>1.22173</upper>
937
+ <effort>110</effort>
938
+ <velocity>12</velocity>
939
+ </limit>
940
+ <dynamics>
941
+ <damping>0.1</damping>
942
+ </dynamics>
943
+ <use_parent_model_frame>0</use_parent_model_frame>
944
+ </axis>
945
+ </joint>
946
+ <link name='l_lglut'>
947
+ <pose>0 0.089 0 0 -0 0</pose>
948
+ <inertial>
949
+ <pose>0.0133341 0.0170484 -0.0312052 0 -0 0</pose>
950
+ <mass>0.866</mass>
951
+ <inertia>
952
+ <ixx>0.000691326</ixx>
953
+ <ixy>-2.24344e-05</ixy>
954
+ <ixz>2.50508e-06</ixz>
955
+ <iyy>0.00126856</iyy>
956
+ <iyz>0.000137862</iyz>
957
+ <izz>0.00106487</izz>
958
+ </inertia>
959
+ </inertial>
960
+ <collision name='l_lglut_collision'>
961
+ <pose>0 0 0 0 -0 0</pose>
962
+ <geometry>
963
+ <mesh>
964
+ <scale>1 1 1</scale>
965
+ <uri>l_lglut.stl</uri>
966
+ </mesh>
967
+ </geometry>
968
+ </collision>
969
+ <visual name='l_lglut_visual'>
970
+ <pose>0 0 0 0 -0 0</pose>
971
+ <geometry>
972
+ <mesh>
973
+ <scale>1 1 1</scale>
974
+ <uri>l_lglut.dae</uri>
975
+ </mesh>
976
+ </geometry>
977
+ </visual>
978
+ <velocity_decay>
979
+ <linear>0</linear>
980
+ <angular>0</angular>
981
+ </velocity_decay>
982
+ </link>
983
+ <joint name='l_leg_hpx' type='revolute'>
984
+ <child>l_lglut</child>
985
+ <parent>l_uglut</parent>
986
+ <axis>
987
+ <xyz>1 0 0</xyz>
988
+ <limit>
989
+ <lower>-0.523599</lower>
990
+ <upper>0.523599</upper>
991
+ <effort>180</effort>
992
+ <velocity>12</velocity>
993
+ </limit>
994
+ <dynamics>
995
+ <damping>0.1</damping>
996
+ </dynamics>
997
+ <use_parent_model_frame>0</use_parent_model_frame>
998
+ </axis>
999
+ </joint>
1000
+ <link name='l_uleg'>
1001
+ <pose>0.05 0.089 -0.05 0 -0 0</pose>
1002
+ <inertial>
1003
+ <pose>0 0 -0.21 0 -0 0</pose>
1004
+ <mass>9.209</mass>
1005
+ <inertia>
1006
+ <ixx>0.09</ixx>
1007
+ <ixy>0</ixy>
1008
+ <ixz>0</ixz>
1009
+ <iyy>0.09</iyy>
1010
+ <iyz>0</iyz>
1011
+ <izz>0.02</izz>
1012
+ </inertia>
1013
+ </inertial>
1014
+ <collision name='l_uleg_collision'>
1015
+ <pose>0 0 0 0 -0 0</pose>
1016
+ <geometry>
1017
+ <mesh>
1018
+ <scale>1 1 1</scale>
1019
+ <uri>l_uleg.stl</uri>
1020
+ </mesh>
1021
+ </geometry>
1022
+ </collision>
1023
+ <visual name='l_uleg_visual'>
1024
+ <pose>0 0 0 0 -0 0</pose>
1025
+ <geometry>
1026
+ <mesh>
1027
+ <scale>1 1 1</scale>
1028
+ <uri>l_uleg.dae</uri>
1029
+ </mesh>
1030
+ </geometry>
1031
+ </visual>
1032
+ <velocity_decay>
1033
+ <linear>0</linear>
1034
+ <angular>0</angular>
1035
+ </velocity_decay>
1036
+ </link>
1037
+ <joint name='l_leg_hpy' type='revolute'>
1038
+ <child>l_uleg</child>
1039
+ <parent>l_lglut</parent>
1040
+ <axis>
1041
+ <xyz>0 1 0</xyz>
1042
+ <limit>
1043
+ <lower>-1.72072</lower>
1044
+ <upper>0.524821</upper>
1045
+ <effort>260</effort>
1046
+ <velocity>12</velocity>
1047
+ </limit>
1048
+ <dynamics>
1049
+ <damping>0.1</damping>
1050
+ </dynamics>
1051
+ <use_parent_model_frame>0</use_parent_model_frame>
1052
+ </axis>
1053
+ </joint>
1054
+ <link name='l_lleg'>
1055
+ <pose>0 0.089 -0.424 0 -0 0</pose>
1056
+ <inertial>
1057
+ <pose>0.001 0 -0.187 0 -0 0</pose>
1058
+ <mass>5.479</mass>
1059
+ <inertia>
1060
+ <ixx>0.077</ixx>
1061
+ <ixy>0</ixy>
1062
+ <ixz>-0.003</ixz>
1063
+ <iyy>0.076</iyy>
1064
+ <iyz>0</iyz>
1065
+ <izz>0.01</izz>
1066
+ </inertia>
1067
+ </inertial>
1068
+ <collision name='l_lleg_collision'>
1069
+ <pose>0 0 0 0 -0 0</pose>
1070
+ <geometry>
1071
+ <mesh>
1072
+ <scale>1 1 1</scale>
1073
+ <uri>l_lleg.stl</uri>
1074
+ </mesh>
1075
+ </geometry>
1076
+ </collision>
1077
+ <visual name='l_lleg_visual'>
1078
+ <pose>0 0 0 0 -0 0</pose>
1079
+ <geometry>
1080
+ <mesh>
1081
+ <scale>1 1 1</scale>
1082
+ <uri>l_lleg.dae</uri>
1083
+ </mesh>
1084
+ </geometry>
1085
+ </visual>
1086
+ <velocity_decay>
1087
+ <linear>0</linear>
1088
+ <angular>0</angular>
1089
+ </velocity_decay>
1090
+ </link>
1091
+ <joint name='l_leg_kny' type='revolute'>
1092
+ <child>l_lleg</child>
1093
+ <parent>l_uleg</parent>
1094
+ <axis>
1095
+ <xyz>0 1 0</xyz>
1096
+ <limit>
1097
+ <lower>0</lower>
1098
+ <upper>2.38569</upper>
1099
+ <effort>220</effort>
1100
+ <velocity>12</velocity>
1101
+ </limit>
1102
+ <dynamics>
1103
+ <damping>0.1</damping>
1104
+ </dynamics>
1105
+ <use_parent_model_frame>0</use_parent_model_frame>
1106
+ </axis>
1107
+ </joint>
1108
+ <link name='l_talus'>
1109
+ <pose>0 0.089 -0.846 0 -0 0</pose>
1110
+ <inertial>
1111
+ <pose>0 0 0 0 -0 0</pose>
1112
+ <mass>0.125</mass>
1113
+ <inertia>
1114
+ <ixx>1.01674e-05</ixx>
1115
+ <ixy>0</ixy>
1116
+ <ixz>0</ixz>
1117
+ <iyy>8.42775e-06</iyy>
1118
+ <iyz>0</iyz>
1119
+ <izz>1.30101e-05</izz>
1120
+ </inertia>
1121
+ </inertial>
1122
+ <collision name='l_talus_collision'>
1123
+ <pose>0 0 0 0 -0 0</pose>
1124
+ <geometry>
1125
+ <mesh>
1126
+ <scale>1 1 1</scale>
1127
+ <uri>l_talus.stl</uri>
1128
+ </mesh>
1129
+ </geometry>
1130
+ </collision>
1131
+ <visual name='l_talus_visual'>
1132
+ <pose>0 0 0 0 -0 0</pose>
1133
+ <geometry>
1134
+ <mesh>
1135
+ <scale>1 1 1</scale>
1136
+ <uri>l_talus.dae</uri>
1137
+ </mesh>
1138
+ </geometry>
1139
+ </visual>
1140
+ <velocity_decay>
1141
+ <linear>0</linear>
1142
+ <angular>0</angular>
1143
+ </velocity_decay>
1144
+ </link>
1145
+ <joint name='l_leg_aky' type='revolute'>
1146
+ <child>l_talus</child>
1147
+ <parent>l_lleg</parent>
1148
+ <axis>
1149
+ <xyz>0 1 0</xyz>
1150
+ <limit>
1151
+ <lower>-1</lower>
1152
+ <upper>0.7</upper>
1153
+ <effort>700</effort>
1154
+ <velocity>12</velocity>
1155
+ </limit>
1156
+ <dynamics>
1157
+ <damping>0.1</damping>
1158
+ </dynamics>
1159
+ <use_parent_model_frame>0</use_parent_model_frame>
1160
+ </axis>
1161
+ </joint>
1162
+ <link name='l_foot'>
1163
+ <pose>0 0.089 -0.846 0 -0 0</pose>
1164
+ <inertial>
1165
+ <pose>0.027 0 -0.067 0 -0 0</pose>
1166
+ <mass>2.05</mass>
1167
+ <inertia>
1168
+ <ixx>0.002</ixx>
1169
+ <ixy>0</ixy>
1170
+ <ixz>0</ixz>
1171
+ <iyy>0.007</iyy>
1172
+ <iyz>0</iyz>
1173
+ <izz>0.008</izz>
1174
+ </inertia>
1175
+ </inertial>
1176
+ <soft_shape>
1177
+ <total_mass>0.5</total_mass>
1178
+ <pose>0.05 0 -0.06 0 0 0</pose>
1179
+ <geometry>
1180
+ <box>
1181
+ <size>0.275 0.15 0.075</size>
1182
+ <frags>2 2 2</frags>
1183
+ </box>
1184
+ </geometry>
1185
+ <kv>50000.0</kv>
1186
+ <ke>100.0</ke>
1187
+ <damp>1000.0</damp>
1188
+ </soft_shape>
1189
+ <collision name='l_foot_collision'>
1190
+ <pose>0 0 0 0 -0 0</pose>
1191
+ <geometry>
1192
+ <mesh>
1193
+ <scale>1 1 1</scale>
1194
+ <uri>l_foot.stl</uri>
1195
+ </mesh>
1196
+ </geometry>
1197
+ </collision>
1198
+ <visual name='l_foot_visual'>
1199
+ <pose>0 0 0 0 -0 0</pose>
1200
+ <geometry>
1201
+ <mesh>
1202
+ <scale>1 1 1</scale>
1203
+ <uri>l_foot.dae</uri>
1204
+ </mesh>
1205
+ </geometry>
1206
+ </visual>
1207
+ <velocity_decay>
1208
+ <linear>0</linear>
1209
+ <angular>0</angular>
1210
+ </velocity_decay>
1211
+ </link>
1212
+ <joint name='l_leg_akx' type='revolute'>
1213
+ <child>l_foot</child>
1214
+ <parent>l_talus</parent>
1215
+ <axis>
1216
+ <xyz>1 0 0</xyz>
1217
+ <limit>
1218
+ <lower>-0.8</lower>
1219
+ <upper>0.8</upper>
1220
+ <effort>90</effort>
1221
+ <velocity>12</velocity>
1222
+ </limit>
1223
+ <dynamics>
1224
+ <damping>0.1</damping>
1225
+ </dynamics>
1226
+ <use_parent_model_frame>0</use_parent_model_frame>
1227
+ </axis>
1228
+ </joint>
1229
+ <link name='r_uglut'>
1230
+ <pose>0 -0.089 0 0 -0 0</pose>
1231
+ <inertial>
1232
+ <pose>0.00529262 0.00344732 0.00313046 0 -0 0</pose>
1233
+ <mass>0.648</mass>
1234
+ <inertia>
1235
+ <ixx>0.00074276</ixx>
1236
+ <ixy>3.79607e-08</ixy>
1237
+ <ixz>-2.79549e-05</ixz>
1238
+ <iyy>0.000688179</iyy>
1239
+ <iyz>3.2735e-08</iyz>
1240
+ <izz>0.00041242</izz>
1241
+ </inertia>
1242
+ </inertial>
1243
+ <collision name='r_uglut_collision'>
1244
+ <pose>0 0 0 0 -0 0</pose>
1245
+ <geometry>
1246
+ <mesh>
1247
+ <scale>1 1 1</scale>
1248
+ <uri>r_uglut.stl</uri>
1249
+ </mesh>
1250
+ </geometry>
1251
+ </collision>
1252
+ <visual name='r_uglut_visual'>
1253
+ <pose>0 0 0 0 -0 0</pose>
1254
+ <geometry>
1255
+ <mesh>
1256
+ <scale>1 1 1</scale>
1257
+ <uri>r_uglut.dae</uri>
1258
+ </mesh>
1259
+ </geometry>
1260
+ </visual>
1261
+ <velocity_decay>
1262
+ <linear>0</linear>
1263
+ <angular>0</angular>
1264
+ </velocity_decay>
1265
+ </link>
1266
+ <joint name='r_leg_hpz' type='revolute'>
1267
+ <child>r_uglut</child>
1268
+ <parent>pelvis</parent>
1269
+ <axis>
1270
+ <xyz>0 0 1</xyz>
1271
+ <limit>
1272
+ <lower>-1.22173</lower>
1273
+ <upper>0.174533</upper>
1274
+ <effort>110</effort>
1275
+ <velocity>12</velocity>
1276
+ </limit>
1277
+ <dynamics>
1278
+ <damping>0.1</damping>
1279
+ </dynamics>
1280
+ <use_parent_model_frame>0</use_parent_model_frame>
1281
+ </axis>
1282
+ </joint>
1283
+ <link name='r_lglut'>
1284
+ <pose>0 -0.089 0 0 -0 0</pose>
1285
+ <inertial>
1286
+ <pose>0.0133341 -0.0170484 -0.0312052 0 -0 0</pose>
1287
+ <mass>0.866</mass>
1288
+ <inertia>
1289
+ <ixx>0.000691326</ixx>
1290
+ <ixy>2.24344e-05</ixy>
1291
+ <ixz>2.50508e-06</ixz>
1292
+ <iyy>0.00126856</iyy>
1293
+ <iyz>-0.000137862</iyz>
1294
+ <izz>0.00106487</izz>
1295
+ </inertia>
1296
+ </inertial>
1297
+ <collision name='r_lglut_collision'>
1298
+ <pose>0 0 0 0 -0 0</pose>
1299
+ <geometry>
1300
+ <mesh>
1301
+ <scale>1 1 1</scale>
1302
+ <uri>r_lglut.stl</uri>
1303
+ </mesh>
1304
+ </geometry>
1305
+ </collision>
1306
+ <visual name='r_lglut_visual'>
1307
+ <pose>0 0 0 0 -0 0</pose>
1308
+ <geometry>
1309
+ <mesh>
1310
+ <scale>1 1 1</scale>
1311
+ <uri>r_lglut.dae</uri>
1312
+ </mesh>
1313
+ </geometry>
1314
+ </visual>
1315
+ <velocity_decay>
1316
+ <linear>0</linear>
1317
+ <angular>0</angular>
1318
+ </velocity_decay>
1319
+ </link>
1320
+ <joint name='r_leg_hpx' type='revolute'>
1321
+ <child>r_lglut</child>
1322
+ <parent>r_uglut</parent>
1323
+ <axis>
1324
+ <xyz>1 0 0</xyz>
1325
+ <limit>
1326
+ <lower>-0.523599</lower>
1327
+ <upper>0.523599</upper>
1328
+ <effort>180</effort>
1329
+ <velocity>12</velocity>
1330
+ </limit>
1331
+ <dynamics>
1332
+ <damping>0.1</damping>
1333
+ </dynamics>
1334
+ <use_parent_model_frame>0</use_parent_model_frame>
1335
+ </axis>
1336
+ </joint>
1337
+ <link name='r_uleg'>
1338
+ <pose>0.05 -0.089 -0.05 0 -0 0</pose>
1339
+ <inertial>
1340
+ <pose>0 0 -0.21 0 -0 0</pose>
1341
+ <mass>9.209</mass>
1342
+ <inertia>
1343
+ <ixx>0.09</ixx>
1344
+ <ixy>0</ixy>
1345
+ <ixz>0</ixz>
1346
+ <iyy>0.09</iyy>
1347
+ <iyz>0</iyz>
1348
+ <izz>0.02</izz>
1349
+ </inertia>
1350
+ </inertial>
1351
+ <collision name='r_uleg_collision'>
1352
+ <pose>0 0 0 0 -0 0</pose>
1353
+ <geometry>
1354
+ <mesh>
1355
+ <scale>1 1 1</scale>
1356
+ <uri>r_uleg.stl</uri>
1357
+ </mesh>
1358
+ </geometry>
1359
+ </collision>
1360
+ <visual name='r_uleg_visual'>
1361
+ <pose>0 0 0 0 -0 0</pose>
1362
+ <geometry>
1363
+ <mesh>
1364
+ <scale>1 1 1</scale>
1365
+ <uri>r_uleg.dae</uri>
1366
+ </mesh>
1367
+ </geometry>
1368
+ </visual>
1369
+ <velocity_decay>
1370
+ <linear>0</linear>
1371
+ <angular>0</angular>
1372
+ </velocity_decay>
1373
+ </link>
1374
+ <joint name='r_leg_hpy' type='revolute'>
1375
+ <child>r_uleg</child>
1376
+ <parent>r_lglut</parent>
1377
+ <axis>
1378
+ <xyz>0 1 0</xyz>
1379
+ <limit>
1380
+ <lower>-1.72072</lower>
1381
+ <upper>0.524821</upper>
1382
+ <effort>260</effort>
1383
+ <velocity>12</velocity>
1384
+ </limit>
1385
+ <dynamics>
1386
+ <damping>0.1</damping>
1387
+ </dynamics>
1388
+ <use_parent_model_frame>0</use_parent_model_frame>
1389
+ </axis>
1390
+ </joint>
1391
+ <link name='r_lleg'>
1392
+ <pose>0 -0.089 -0.424 0 -0 0</pose>
1393
+ <inertial>
1394
+ <pose>0.001 0 -0.187 0 -0 0</pose>
1395
+ <mass>5.479</mass>
1396
+ <inertia>
1397
+ <ixx>0.077</ixx>
1398
+ <ixy>-0</ixy>
1399
+ <ixz>-0.003</ixz>
1400
+ <iyy>0.076</iyy>
1401
+ <iyz>-0</iyz>
1402
+ <izz>0.01</izz>
1403
+ </inertia>
1404
+ </inertial>
1405
+ <collision name='r_lleg_collision'>
1406
+ <pose>0 0 0 0 -0 0</pose>
1407
+ <geometry>
1408
+ <mesh>
1409
+ <scale>1 1 1</scale>
1410
+ <uri>r_lleg.stl</uri>
1411
+ </mesh>
1412
+ </geometry>
1413
+ </collision>
1414
+ <visual name='r_lleg_visual'>
1415
+ <pose>0 0 0 0 -0 0</pose>
1416
+ <geometry>
1417
+ <mesh>
1418
+ <scale>1 1 1</scale>
1419
+ <uri>r_lleg.dae</uri>
1420
+ </mesh>
1421
+ </geometry>
1422
+ </visual>
1423
+ <velocity_decay>
1424
+ <linear>0</linear>
1425
+ <angular>0</angular>
1426
+ </velocity_decay>
1427
+ </link>
1428
+ <joint name='r_leg_kny' type='revolute'>
1429
+ <child>r_lleg</child>
1430
+ <parent>r_uleg</parent>
1431
+ <axis>
1432
+ <xyz>0 1 0</xyz>
1433
+ <limit>
1434
+ <lower>0</lower>
1435
+ <upper>2.38569</upper>
1436
+ <effort>220</effort>
1437
+ <velocity>12</velocity>
1438
+ </limit>
1439
+ <dynamics>
1440
+ <damping>0.1</damping>
1441
+ </dynamics>
1442
+ <use_parent_model_frame>0</use_parent_model_frame>
1443
+ </axis>
1444
+ </joint>
1445
+ <link name='r_talus'>
1446
+ <pose>0 -0.089 -0.846 0 -0 0</pose>
1447
+ <inertial>
1448
+ <pose>0 0 0 0 -0 0</pose>
1449
+ <mass>0.125</mass>
1450
+ <inertia>
1451
+ <ixx>1.01674e-05</ixx>
1452
+ <ixy>0</ixy>
1453
+ <ixz>0</ixz>
1454
+ <iyy>8.42775e-06</iyy>
1455
+ <iyz>0</iyz>
1456
+ <izz>1.30101e-05</izz>
1457
+ </inertia>
1458
+ </inertial>
1459
+ <collision name='r_talus_collision'>
1460
+ <pose>0 0 0 0 -0 0</pose>
1461
+ <geometry>
1462
+ <mesh>
1463
+ <scale>1 1 1</scale>
1464
+ <uri>r_talus.stl</uri>
1465
+ </mesh>
1466
+ </geometry>
1467
+ </collision>
1468
+ <visual name='r_talus_visual'>
1469
+ <pose>0 0 0 0 -0 0</pose>
1470
+ <geometry>
1471
+ <mesh>
1472
+ <scale>1 1 1</scale>
1473
+ <uri>r_talus.dae</uri>
1474
+ </mesh>
1475
+ </geometry>
1476
+ </visual>
1477
+ <velocity_decay>
1478
+ <linear>0</linear>
1479
+ <angular>0</angular>
1480
+ </velocity_decay>
1481
+ </link>
1482
+ <joint name='r_leg_aky' type='revolute'>
1483
+ <child>r_talus</child>
1484
+ <parent>r_lleg</parent>
1485
+ <axis>
1486
+ <xyz>0 1 0</xyz>
1487
+ <limit>
1488
+ <lower>-1</lower>
1489
+ <upper>0.7</upper>
1490
+ <effort>700</effort>
1491
+ <velocity>12</velocity>
1492
+ </limit>
1493
+ <dynamics>
1494
+ <damping>0.1</damping>
1495
+ </dynamics>
1496
+ <use_parent_model_frame>0</use_parent_model_frame>
1497
+ </axis>
1498
+ </joint>
1499
+ <link name='r_foot'>
1500
+ <pose>0 -0.089 -0.846 0 -0 0</pose>
1501
+ <inertial>
1502
+ <pose>0.027 0 -0.067 0 -0 0</pose>
1503
+ <mass>2.05</mass>
1504
+ <inertia>
1505
+ <ixx>0.002</ixx>
1506
+ <ixy>0</ixy>
1507
+ <ixz>0</ixz>
1508
+ <iyy>0.007</iyy>
1509
+ <iyz>0</iyz>
1510
+ <izz>0.008</izz>
1511
+ </inertia>
1512
+ </inertial>
1513
+ <soft_shape>
1514
+ <total_mass>0.5</total_mass>
1515
+ <pose>0.05 0 -0.06 0 0 0</pose>
1516
+ <geometry>
1517
+ <box>
1518
+ <size>0.275 0.15 0.075</size>
1519
+ <frags>2 2 2</frags>
1520
+ </box>
1521
+ </geometry>
1522
+ <kv>50000.0</kv>
1523
+ <ke>100.0</ke>
1524
+ <damp>1000.0</damp>
1525
+ </soft_shape>
1526
+ <collision name='r_foot_collision'>
1527
+ <pose>0 0 0 0 -0 0</pose>
1528
+ <geometry>
1529
+ <mesh>
1530
+ <scale>1 1 1</scale>
1531
+ <uri>r_foot.stl</uri>
1532
+ </mesh>
1533
+ </geometry>
1534
+ </collision>
1535
+ <visual name='r_foot_visual'>
1536
+ <pose>0 0 0 0 -0 0</pose>
1537
+ <geometry>
1538
+ <mesh>
1539
+ <scale>1 1 1</scale>
1540
+ <uri>r_foot.dae</uri>
1541
+ </mesh>
1542
+ </geometry>
1543
+ </visual>
1544
+ <velocity_decay>
1545
+ <linear>0</linear>
1546
+ <angular>0</angular>
1547
+ </velocity_decay>
1548
+ </link>
1549
+ <joint name='r_leg_akx' type='revolute'>
1550
+ <child>r_foot</child>
1551
+ <parent>r_talus</parent>
1552
+ <axis>
1553
+ <xyz>1 0 0</xyz>
1554
+ <limit>
1555
+ <lower>-0.8</lower>
1556
+ <upper>0.8</upper>
1557
+ <effort>90</effort>
1558
+ <velocity>12</velocity>
1559
+ </limit>
1560
+ <dynamics>
1561
+ <damping>0.1</damping>
1562
+ </dynamics>
1563
+ <use_parent_model_frame>0</use_parent_model_frame>
1564
+ </axis>
1565
+ </joint>
1566
+ </model>
1567
+ </sdf>