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,904 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <COLLADA xmlns="http://www.collada.org/2005/11/COLLADASchema" version="1.4.1">
3
+ <asset><contributor><author></author><authoring_tool>FBX COLLADA exporter</authoring_tool><comments></comments></contributor><created>2013-08-22T20:06:06Z</created><keywords></keywords><modified>2013-08-22T20:06:06Z</modified><revision></revision><subject></subject><title></title><unit meter="1.000000" name="centimeter"></unit><up_axis>Z_UP</up_axis></asset>
4
+ <library_images>
5
+ <image id="drc_extremities_diffuse-image" name="drc_extremities_diffuse"><init_from>../materials/textures/drc_extremities_diffuse.jpg</init_from></image>
6
+ </library_images>
7
+ <library_materials>
8
+ <material id="drc_extremities_diffuse" name="drc_extremities_diffuse">
9
+ <instance_effect url="#drc_extremities_diffuse-fx"/>
10
+ </material>
11
+ </library_materials>
12
+ <library_effects>
13
+ <effect id="drc_extremities_diffuse-fx" name="drc_extremities_diffuse">
14
+ <profile_COMMON>
15
+ <technique sid="standard">
16
+ <phong>
17
+ <emission>
18
+ <color sid="emission">0.000000 0.000000 0.000000 1.000000</color>
19
+ </emission>
20
+ <ambient>
21
+ <color sid="ambient">0.588235 0.588235 0.588235 1.000000</color>
22
+ </ambient>
23
+ <diffuse>
24
+ <texture texture="drc_extremities_diffuse-image" texcoord="CHANNEL0">
25
+ <extra>
26
+ <technique profile="MAYA">
27
+ <wrapU sid="wrapU0">TRUE</wrapU>
28
+ <wrapV sid="wrapV0">TRUE</wrapV>
29
+ <blend_mode>ADD</blend_mode>
30
+ </technique>
31
+ </extra>
32
+ </texture>
33
+ </diffuse>
34
+ <specular>
35
+ <color sid="specular">0.000000 0.000000 0.000000 1.000000</color>
36
+ </specular>
37
+ <shininess>
38
+ <float sid="shininess">2.000000</float>
39
+ </shininess>
40
+ <reflective>
41
+ <color sid="reflective">0.000000 0.000000 0.000000 1.000000</color>
42
+ </reflective>
43
+ <reflectivity>
44
+ <float sid="reflectivity">1.000000</float>
45
+ </reflectivity>
46
+ <transparent opaque="RGB_ZERO">
47
+ <color sid="transparent">1.000000 1.000000 1.000000 1.000000</color>
48
+ </transparent>
49
+ <transparency>
50
+ <float sid="transparency">0.000000</float>
51
+ </transparency>
52
+ </phong>
53
+ </technique>
54
+ </profile_COMMON>
55
+ </effect>
56
+ </library_effects>
57
+ <library_geometries>
58
+ <geometry id="drc_r_hand-lib" name="drc_r_handMesh">
59
+ <mesh>
60
+ <source id="drc_r_hand-POSITION">
61
+ <float_array id="drc_r_hand-POSITION-array" count="282">
62
+ -0.257486 0.471636 0.257961
63
+ -0.265806 0.457434 0.243759
64
+ -0.285890 0.451552 0.237877
65
+ -0.305974 0.457434 0.243759
66
+ -0.314294 0.471636 0.257961
67
+ -0.307313 0.485838 0.272163
68
+ -0.277439 0.485678 0.272003
69
+ -0.267145 0.485838 0.272163
70
+ -0.257486 0.475408 0.254190
71
+ -0.265806 0.461206 0.239987
72
+ -0.285890 0.455323 0.234105
73
+ -0.305974 0.461206 0.239987
74
+ -0.314294 0.475408 0.254190
75
+ -0.307313 0.489609 0.268391
76
+ -0.277439 0.489450 0.268231
77
+ -0.267145 0.489609 0.268391
78
+ -0.307313 0.520753 0.307078
79
+ -0.277439 0.520593 0.306919
80
+ -0.267145 0.520753 0.307078
81
+ -0.307313 0.524524 0.303306
82
+ -0.277439 0.524365 0.303147
83
+ -0.267145 0.524524 0.303306
84
+ -0.277439 0.492768 0.264913
85
+ -0.307313 0.492928 0.265073
86
+ -0.307313 0.527843 0.299987
87
+ -0.277439 0.527684 0.299828
88
+ -0.266187 0.496989 0.362754
89
+ -0.275225 0.512418 0.347325
90
+ -0.297045 0.518809 0.340934
91
+ -0.318865 0.512418 0.347325
92
+ -0.327903 0.496989 0.362754
93
+ -0.318865 0.481560 0.378184
94
+ -0.297045 0.475169 0.384574
95
+ -0.275225 0.481560 0.378184
96
+ -0.266187 0.518969 0.384734
97
+ -0.275225 0.534398 0.369305
98
+ -0.297045 0.540789 0.362914
99
+ -0.318865 0.534398 0.369305
100
+ -0.327903 0.518969 0.384734
101
+ -0.318865 0.503539 0.400163
102
+ -0.297045 0.497149 0.406554
103
+ -0.275225 0.503539 0.400163
104
+ -0.251758 0.385678 0.345773
105
+ -0.260888 0.367691 0.327786
106
+ -0.286326 0.360241 0.320336
107
+ -0.311763 0.367691 0.327786
108
+ -0.320893 0.385678 0.345773
109
+ -0.319324 0.400769 0.360864
110
+ -0.312344 0.407106 0.367201
111
+ -0.253181 0.403982 0.364077
112
+ -0.251758 0.393046 0.338405
113
+ -0.260888 0.375059 0.320418
114
+ -0.286326 0.367609 0.312968
115
+ -0.311763 0.375059 0.320418
116
+ -0.320893 0.393046 0.338405
117
+ -0.319324 0.408137 0.353496
118
+ -0.312344 0.414474 0.359833
119
+ -0.253181 0.411350 0.356709
120
+ -0.266125 0.412730 0.372825
121
+ -0.266125 0.420098 0.365457
122
+ -0.312344 0.425417 0.385512
123
+ -0.312344 0.432785 0.378144
124
+ -0.266125 0.448264 0.408359
125
+ -0.266125 0.455632 0.400991
126
+ -0.324727 0.431006 0.391101
127
+ -0.324727 0.438374 0.383733
128
+ -0.324409 0.448156 0.408251
129
+ -0.324409 0.455524 0.400883
130
+ -0.324755 0.444340 0.404023
131
+ -0.266007 0.444340 0.404023
132
+ -0.324755 0.443365 0.403047
133
+ -0.266007 0.443365 0.403047
134
+ -0.324755 0.538837 0.310306
135
+ -0.266007 0.538837 0.310306
136
+ -0.324755 0.537471 0.308940
137
+ -0.266007 0.537471 0.308940
138
+ -0.266007 0.459789 0.401295
139
+ -0.266007 0.536001 0.325083
140
+ -0.324755 0.536001 0.325083
141
+ -0.324755 0.459789 0.401295
142
+ -0.266007 0.464661 0.381750
143
+ -0.266007 0.516175 0.330236
144
+ -0.324755 0.464661 0.381750
145
+ -0.324755 0.516175 0.330236
146
+ -0.324755 0.524247 0.295716
147
+ -0.266007 0.524247 0.295716
148
+ -0.266007 0.502951 0.317012
149
+ -0.324755 0.502951 0.317012
150
+ -0.266007 0.430140 0.389823
151
+ -0.324755 0.430140 0.389823
152
+ -0.324755 0.451437 0.368526
153
+ -0.266007 0.451437 0.368526
154
+ -0.266125 0.420321 0.365680
155
+ -0.285826 0.400655 0.346014
156
+ </float_array>
157
+ <technique_common>
158
+ <accessor source="#drc_r_hand-POSITION-array" count="94" stride="3">
159
+ <param name="X" type="float"/>
160
+ <param name="Y" type="float"/>
161
+ <param name="Z" type="float"/>
162
+ </accessor>
163
+ </technique_common>
164
+ </source>
165
+ <source id="drc_r_hand-Normal0">
166
+ <float_array id="drc_r_hand-Normal0-array" count="1512">
167
+ 0.923869 -0.270617 -0.270616
168
+ 0.923869 -0.270617 -0.270616
169
+ 0.923869 -0.270617 -0.270616
170
+ 0.923873 -0.270573 -0.270644
171
+ 0.923873 -0.270573 -0.270644
172
+ 0.923873 -0.270573 -0.270644
173
+ 0.382657 -0.653374 -0.653204
174
+ 0.382657 -0.653374 -0.653204
175
+ 0.382657 -0.653374 -0.653204
176
+ 0.382684 -0.653283 -0.653280
177
+ 0.382684 -0.653283 -0.653280
178
+ 0.382684 -0.653283 -0.653280
179
+ -0.382658 -0.653290 -0.653288
180
+ -0.382658 -0.653290 -0.653288
181
+ -0.382658 -0.653290 -0.653288
182
+ -0.382685 -0.653366 -0.653196
183
+ -0.382685 -0.653366 -0.653196
184
+ -0.382685 -0.653366 -0.653196
185
+ -0.923869 -0.270581 -0.270652
186
+ -0.923869 -0.270581 -0.270652
187
+ -0.923869 -0.270581 -0.270652
188
+ -0.923873 -0.270609 -0.270608
189
+ -0.923873 -0.270609 -0.270608
190
+ -0.923873 -0.270609 -0.270608
191
+ -0.944569 0.232182 0.232122
192
+ -0.944569 0.232182 0.232122
193
+ -0.944569 0.232183 0.232122
194
+ -0.944562 0.232136 0.232197
195
+ -0.944562 0.232136 0.232197
196
+ -0.944562 0.232136 0.232197
197
+ 0.901201 0.306421 0.306501
198
+ 0.901201 0.306421 0.306501
199
+ 0.901201 0.306421 0.306501
200
+ 0.901189 0.306518 0.306438
201
+ 0.901189 0.306518 0.306438
202
+ 0.901189 0.306518 0.306438
203
+ 0.000000 -0.707107 0.707107
204
+ 0.000000 -0.707107 0.707107
205
+ 0.000000 -0.707107 0.707107
206
+ 0.000000 -0.707107 0.707107
207
+ 0.000000 -0.707107 0.707107
208
+ 0.000000 -0.707107 0.707107
209
+ 0.000001 -0.707106 0.707107
210
+ 0.000001 -0.707106 0.707107
211
+ 0.000001 -0.707106 0.707107
212
+ 0.000000 -0.707107 0.707107
213
+ 0.000000 -0.707107 0.707107
214
+ 0.000000 -0.707107 0.707107
215
+ -0.000001 -0.707106 0.707107
216
+ -0.000001 -0.707106 0.707107
217
+ -0.000001 -0.707106 0.707107
218
+ 0.000000 -0.707107 0.707107
219
+ 0.000000 -0.707107 0.707107
220
+ 0.000000 -0.707107 0.707107
221
+ -0.000059 0.707149 -0.707065
222
+ -0.000059 0.707149 -0.707065
223
+ -0.000059 0.707148 -0.707065
224
+ 0.000018 0.707094 -0.707120
225
+ 0.000018 0.707094 -0.707120
226
+ 0.000018 0.707094 -0.707120
227
+ 0.000059 0.707149 -0.707065
228
+ 0.000059 0.707149 -0.707065
229
+ 0.000059 0.707149 -0.707065
230
+ -0.000013 0.707098 -0.707116
231
+ -0.000013 0.707098 -0.707116
232
+ -0.000013 0.707098 -0.707116
233
+ -0.000024 0.707113 -0.707101
234
+ -0.000024 0.707113 -0.707101
235
+ -0.000024 0.707113 -0.707101
236
+ 0.000069 0.707130 -0.707083
237
+ 0.000069 0.707130 -0.707083
238
+ 0.000069 0.707130 -0.707083
239
+ -1.000000 0.000000 0.000000
240
+ -1.000000 0.000000 0.000000
241
+ -1.000000 0.000000 0.000000
242
+ -1.000000 0.000000 0.000000
243
+ -1.000000 0.000000 0.000000
244
+ -1.000000 0.000000 0.000000
245
+ -0.000000 -0.707117 0.707097
246
+ -0.000000 -0.707117 0.707097
247
+ -0.000000 -0.707117 0.707097
248
+ -0.000025 -0.707106 0.707107
249
+ -0.000025 -0.707106 0.707107
250
+ -0.000025 -0.707106 0.707107
251
+ -0.000000 0.707096 -0.707117
252
+ -0.000000 0.707096 -0.707117
253
+ -0.000000 0.707096 -0.707117
254
+ 0.000001 0.707097 -0.707117
255
+ 0.000001 0.707097 -0.707117
256
+ 0.000001 0.707097 -0.707117
257
+ -0.000000 -0.707106 0.707107
258
+ -0.000000 -0.707106 0.707107
259
+ -0.000000 -0.707107 0.707107
260
+ 0.000072 -0.707117 0.707097
261
+ 0.000072 -0.707117 0.707096
262
+ 0.000072 -0.707117 0.707097
263
+ 1.000000 0.000000 0.000000
264
+ 1.000000 0.000000 0.000000
265
+ 1.000000 0.000000 0.000000
266
+ 1.000000 0.000000 0.000000
267
+ 1.000000 0.000000 0.000000
268
+ 1.000000 0.000000 0.000000
269
+ 0.000069 0.707117 -0.707097
270
+ 0.000069 0.707117 -0.707097
271
+ 0.000069 0.707117 -0.707097
272
+ 0.000004 0.707107 -0.707107
273
+ 0.000004 0.707107 -0.707106
274
+ 0.000004 0.707107 -0.707107
275
+ -0.007550 -0.706982 -0.707191
276
+ -0.007550 -0.706982 -0.707191
277
+ -0.007550 -0.706982 -0.707191
278
+ -0.007574 -0.707090 -0.707083
279
+ -0.007574 -0.707090 -0.707083
280
+ -0.007574 -0.707090 -0.707083
281
+ -1.000000 0.000000 0.000000
282
+ -1.000000 0.000000 0.000000
283
+ -1.000000 0.000000 0.000000
284
+ -1.000000 0.000000 0.000000
285
+ -1.000000 0.000000 0.000000
286
+ -1.000000 0.000000 0.000000
287
+ 0.007527 0.707090 0.707084
288
+ 0.007527 0.707090 0.707084
289
+ 0.007527 0.707090 0.707084
290
+ 0.007527 0.707087 0.707087
291
+ 0.007527 0.707087 0.707087
292
+ 0.007527 0.707087 0.707087
293
+ 1.000000 0.000000 0.000000
294
+ 1.000000 0.000000 0.000000
295
+ 1.000000 0.000000 0.000000
296
+ 1.000000 0.000000 0.000000
297
+ 1.000000 0.000000 0.000000
298
+ 1.000000 0.000000 0.000000
299
+ 0.923881 0.270596 -0.270596
300
+ 0.923881 0.270596 -0.270596
301
+ 0.923881 0.270596 -0.270596
302
+ 0.923881 0.270596 -0.270595
303
+ 0.923881 0.270596 -0.270595
304
+ 0.923881 0.270596 -0.270595
305
+ 0.382688 0.653280 -0.653280
306
+ 0.382688 0.653280 -0.653280
307
+ 0.382688 0.653280 -0.653280
308
+ 0.382688 0.653280 -0.653281
309
+ 0.382688 0.653280 -0.653281
310
+ 0.382687 0.653280 -0.653281
311
+ -0.382688 0.653280 -0.653281
312
+ -0.382688 0.653280 -0.653281
313
+ -0.382688 0.653280 -0.653281
314
+ -0.382687 0.653280 -0.653280
315
+ -0.382687 0.653280 -0.653280
316
+ -0.382687 0.653280 -0.653280
317
+ -0.923881 0.270597 -0.270596
318
+ -0.923881 0.270597 -0.270596
319
+ -0.923881 0.270597 -0.270596
320
+ -0.923881 0.270595 -0.270596
321
+ -0.923881 0.270595 -0.270596
322
+ -0.923881 0.270595 -0.270596
323
+ -0.923886 -0.270588 0.270588
324
+ -0.923886 -0.270588 0.270588
325
+ -0.923886 -0.270588 0.270588
326
+ -0.923885 -0.270589 0.270588
327
+ -0.923885 -0.270589 0.270588
328
+ -0.923885 -0.270589 0.270588
329
+ -0.382661 -0.653288 0.653288
330
+ -0.382661 -0.653288 0.653288
331
+ -0.382661 -0.653288 0.653288
332
+ -0.382662 -0.653288 0.653288
333
+ -0.382662 -0.653288 0.653288
334
+ -0.382662 -0.653288 0.653288
335
+ 0.382662 -0.653288 0.653288
336
+ 0.382662 -0.653288 0.653288
337
+ 0.382662 -0.653288 0.653288
338
+ 0.382662 -0.653288 0.653287
339
+ 0.382662 -0.653288 0.653287
340
+ 0.382662 -0.653288 0.653287
341
+ 0.923886 -0.270588 0.270588
342
+ 0.923885 -0.270588 0.270588
343
+ 0.923886 -0.270588 0.270588
344
+ 0.923885 -0.270588 0.270588
345
+ 0.923885 -0.270588 0.270588
346
+ 0.923885 -0.270588 0.270588
347
+ -0.000054 -0.707145 -0.707068
348
+ -0.000054 -0.707145 -0.707068
349
+ -0.000054 -0.707145 -0.707068
350
+ 0.000000 -0.707107 -0.707107
351
+ 0.000000 -0.707107 -0.707107
352
+ 0.000000 -0.707107 -0.707107
353
+ 0.000003 -0.707109 -0.707104
354
+ 0.000003 -0.707109 -0.707104
355
+ 0.000003 -0.707109 -0.707104
356
+ 0.000000 -0.707107 -0.707107
357
+ 0.000000 -0.707107 -0.707107
358
+ 0.000000 -0.707107 -0.707107
359
+ -0.000003 -0.707109 -0.707104
360
+ -0.000003 -0.707109 -0.707104
361
+ -0.000003 -0.707109 -0.707104
362
+ 0.000054 -0.707145 -0.707068
363
+ 0.000054 -0.707145 -0.707068
364
+ 0.000054 -0.707145 -0.707068
365
+ 0.000000 0.707108 0.707105
366
+ 0.000000 0.707108 0.707105
367
+ 0.000000 0.707108 0.707105
368
+ 0.000000 0.707095 0.707118
369
+ 0.000000 0.707095 0.707118
370
+ 0.000000 0.707095 0.707118
371
+ 0.000037 0.707095 0.707118
372
+ 0.000037 0.707095 0.707118
373
+ 0.000037 0.707095 0.707118
374
+ 0.000000 0.707095 0.707118
375
+ 0.000000 0.707095 0.707118
376
+ 0.000000 0.707095 0.707118
377
+ 0.000000 0.707163 0.707051
378
+ 0.000000 0.707163 0.707051
379
+ 0.000000 0.707163 0.707051
380
+ -0.000037 0.707095 0.707118
381
+ -0.000037 0.707095 0.707118
382
+ -0.000037 0.707095 0.707118
383
+ 0.941211 -0.238874 -0.238874
384
+ 0.941211 -0.238874 -0.238874
385
+ 0.941211 -0.238874 -0.238874
386
+ 0.941211 -0.238875 -0.238874
387
+ 0.941211 -0.238875 -0.238874
388
+ 0.941211 -0.238875 -0.238874
389
+ 0.382657 -0.653291 -0.653288
390
+ 0.382657 -0.653291 -0.653288
391
+ 0.382657 -0.653291 -0.653288
392
+ 0.382657 -0.653289 -0.653289
393
+ 0.382657 -0.653289 -0.653289
394
+ 0.382657 -0.653289 -0.653289
395
+ -0.382669 -0.653286 -0.653286
396
+ -0.382669 -0.653286 -0.653286
397
+ -0.382669 -0.653286 -0.653286
398
+ -0.382670 -0.653287 -0.653284
399
+ -0.382670 -0.653287 -0.653284
400
+ -0.382670 -0.653287 -0.653284
401
+ -0.941211 -0.238874 -0.238873
402
+ -0.941211 -0.238874 -0.238873
403
+ -0.941211 -0.238874 -0.238873
404
+ -0.941211 -0.238874 -0.238874
405
+ -0.941211 -0.238874 -0.238874
406
+ -0.941211 -0.238874 -0.238874
407
+ -0.997308 0.051845 0.051845
408
+ -0.997308 0.051845 0.051845
409
+ -0.997308 0.051845 0.051845
410
+ -0.997308 0.051845 0.051845
411
+ -0.997308 0.051845 0.051845
412
+ -0.997309 0.051845 0.051845
413
+ -0.788941 0.434495 0.434495
414
+ -0.788941 0.434495 0.434495
415
+ -0.788941 0.434495 0.434495
416
+ -0.788942 0.434495 0.434493
417
+ -0.788942 0.434495 0.434493
418
+ -0.788942 0.434495 0.434493
419
+ 0.998492 0.038813 0.038813
420
+ 0.998492 0.038813 0.038813
421
+ 0.998492 0.038813 0.038813
422
+ 0.998492 0.038813 0.038813
423
+ 0.998492 0.038813 0.038813
424
+ 0.998492 0.038813 0.038813
425
+ 0.690941 0.511176 0.511176
426
+ 0.690941 0.511176 0.511176
427
+ 0.690941 0.511176 0.511176
428
+ 0.690941 0.511176 0.511176
429
+ 0.690941 0.511176 0.511176
430
+ 0.690941 0.511176 0.511176
431
+ -1.000000 0.000000 0.000000
432
+ -1.000000 0.000000 0.000000
433
+ -1.000000 0.000000 0.000000
434
+ -1.000000 0.000000 0.000000
435
+ -1.000000 0.000000 0.000000
436
+ -1.000000 0.000000 0.000000
437
+ 0.000000 -0.707107 0.707107
438
+ 0.000000 -0.707107 0.707107
439
+ 0.000000 -0.707107 0.707107
440
+ 0.000000 -0.707107 0.707107
441
+ 0.000000 -0.707107 0.707107
442
+ 0.000000 -0.707107 0.707107
443
+ 1.000000 0.000000 0.000000
444
+ 1.000000 0.000000 0.000000
445
+ 1.000000 0.000000 0.000000
446
+ 1.000000 0.000000 0.000000
447
+ 1.000000 0.000000 0.000000
448
+ 1.000000 0.000000 0.000000
449
+ 1.000000 0.000000 0.000000
450
+ 1.000000 0.000000 0.000000
451
+ 1.000000 0.000000 0.000000
452
+ -0.538036 -0.596036 -0.596036
453
+ -0.538036 -0.596036 -0.596036
454
+ -0.538036 -0.596036 -0.596036
455
+ -0.538036 -0.596036 -0.596036
456
+ -0.538036 -0.596036 -0.596036
457
+ -0.538036 -0.596036 -0.596036
458
+ 0.000000 -0.707107 0.707107
459
+ 0.000000 -0.707107 0.707107
460
+ 0.000000 -0.707107 0.707107
461
+ 0.000000 -0.707107 0.707107
462
+ 0.000000 -0.707107 0.707107
463
+ 0.000000 -0.707107 0.707107
464
+ -0.002621 0.707104 0.707104
465
+ -0.002621 0.707104 0.707104
466
+ -0.002621 0.707104 0.707104
467
+ -0.002621 0.707104 0.707104
468
+ -0.002621 0.707104 0.707104
469
+ -0.002621 0.707104 0.707104
470
+ 0.000000 0.707107 -0.707107
471
+ 0.000000 0.707107 -0.707107
472
+ 0.000000 0.707107 -0.707107
473
+ 0.000000 0.707107 -0.707107
474
+ 0.000000 0.707107 -0.707107
475
+ 0.000000 0.707107 -0.707107
476
+ 0.000001 0.707106 -0.707107
477
+ 0.000001 0.707106 -0.707107
478
+ 0.000001 0.707106 -0.707107
479
+ 0.000000 0.707107 -0.707107
480
+ 0.000000 0.707107 -0.707107
481
+ 0.000000 0.707107 -0.707107
482
+ -0.000011 0.707154 -0.707060
483
+ -0.000011 0.707154 -0.707060
484
+ -0.000011 0.707154 -0.707060
485
+ -0.999914 0.009270 0.009270
486
+ -0.999914 0.009270 0.009270
487
+ -0.999914 0.009270 0.009270
488
+ -0.999914 0.009270 0.009270
489
+ -0.999914 0.009270 0.009270
490
+ -0.999914 0.009270 0.009270
491
+ 0.000000 -0.707474 0.706739
492
+ 0.000000 -0.707474 0.706739
493
+ 0.000000 -0.707474 0.706739
494
+ 0.000000 -0.707474 0.706739
495
+ 0.000000 -0.707474 0.706739
496
+ 0.000000 -0.707474 0.706739
497
+ 0.000000 0.707107 -0.707107
498
+ 0.000000 0.707107 -0.707107
499
+ 0.000000 0.707107 -0.707107
500
+ 0.000000 0.707107 -0.707107
501
+ 0.000000 0.707107 -0.707107
502
+ 0.000000 0.707107 -0.707107
503
+ 0.000000 0.707107 0.707107
504
+ 0.000000 0.707107 0.707107
505
+ 0.000000 0.707107 0.707107
506
+ 0.000000 0.707107 0.707107
507
+ 0.000000 0.707107 0.707107
508
+ 0.000000 0.707107 0.707107
509
+ 1.000000 0.000000 0.000000
510
+ 1.000000 0.000000 0.000000
511
+ 1.000000 0.000000 0.000000
512
+ 1.000000 0.000000 0.000000
513
+ 1.000000 0.000000 0.000000
514
+ 1.000000 0.000000 0.000000
515
+ 0.000000 -0.707107 -0.707106
516
+ 0.000000 -0.707107 -0.707106
517
+ 0.000000 -0.707107 -0.707106
518
+ 0.000000 -0.707107 -0.707106
519
+ 0.000000 -0.707107 -0.707106
520
+ 0.000000 -0.707107 -0.707106
521
+ -1.000000 0.000000 0.000000
522
+ -1.000000 0.000000 0.000000
523
+ -1.000000 0.000000 0.000000
524
+ -1.000000 0.000000 0.000000
525
+ -1.000000 0.000000 0.000000
526
+ -1.000000 0.000000 0.000000
527
+ 0.000000 0.982077 0.188480
528
+ 0.000000 0.982077 0.188480
529
+ 0.000000 0.982077 0.188480
530
+ 0.000000 0.982077 0.188480
531
+ 0.000000 0.982077 0.188480
532
+ 0.000000 0.982077 0.188480
533
+ 0.000000 0.173890 0.984765
534
+ 0.000000 0.173890 0.984765
535
+ 0.000000 0.173890 0.984765
536
+ 0.000000 0.173890 0.984765
537
+ 0.000000 0.173890 0.984765
538
+ 0.000000 0.173890 0.984765
539
+ 1.000000 0.000000 0.000000
540
+ 1.000000 0.000000 0.000000
541
+ 1.000000 0.000000 0.000000
542
+ 1.000000 0.000000 0.000000
543
+ 1.000000 0.000000 0.000000
544
+ 1.000000 0.000000 0.000000
545
+ 1.000000 0.000000 0.000000
546
+ 1.000000 0.000000 0.000000
547
+ 1.000000 0.000000 0.000000
548
+ 1.000000 0.000000 0.000000
549
+ 1.000000 0.000000 0.000000
550
+ 1.000000 0.000000 0.000000
551
+ 0.000000 -0.707108 -0.707106
552
+ 0.000000 -0.707108 -0.707106
553
+ 0.000000 -0.707108 -0.707106
554
+ 0.000000 -0.707108 -0.707106
555
+ 0.000000 -0.707108 -0.707106
556
+ 0.000000 -0.707108 -0.707106
557
+ 0.000000 -0.707106 -0.707107
558
+ 0.000000 -0.707106 -0.707107
559
+ 0.000000 -0.707106 -0.707107
560
+ 0.000000 -0.707106 -0.707107
561
+ 0.000000 -0.707106 -0.707107
562
+ 0.000000 -0.707106 -0.707107
563
+ -1.000000 0.000000 0.000000
564
+ -1.000000 0.000000 0.000000
565
+ -1.000000 0.000000 0.000000
566
+ -1.000000 0.000000 0.000000
567
+ -1.000000 0.000000 0.000000
568
+ -1.000000 0.000000 0.000000
569
+ -1.000000 0.000000 0.000000
570
+ -1.000000 0.000000 0.000000
571
+ -1.000000 0.000000 0.000000
572
+ -1.000000 0.000000 0.000000
573
+ -1.000000 0.000000 0.000000
574
+ -1.000000 0.000000 0.000000
575
+ 0.000000 0.707107 -0.707107
576
+ 0.000000 0.707107 -0.707107
577
+ 0.000000 0.707107 -0.707107
578
+ 0.000000 0.707107 -0.707107
579
+ 0.000000 0.707107 -0.707107
580
+ 0.000000 0.707107 -0.707107
581
+ 1.000000 0.000000 0.000000
582
+ 1.000000 0.000000 0.000000
583
+ 1.000000 0.000000 0.000000
584
+ 1.000000 0.000000 0.000000
585
+ 1.000000 0.000000 0.000000
586
+ 1.000000 0.000000 0.000000
587
+ 0.000000 -0.707108 0.707106
588
+ 0.000000 -0.707108 0.707106
589
+ 0.000000 -0.707108 0.707106
590
+ 0.000000 -0.707108 0.707106
591
+ 0.000000 -0.707108 0.707106
592
+ 0.000000 -0.707108 0.707106
593
+ -1.000000 0.000000 0.000000
594
+ -1.000000 0.000000 0.000000
595
+ -1.000000 0.000000 0.000000
596
+ -1.000000 0.000000 0.000000
597
+ -1.000000 0.000000 0.000000
598
+ -1.000000 0.000000 0.000000
599
+ 0.000000 -0.707080 0.707134
600
+ 0.000000 -0.707080 0.707134
601
+ 0.000000 -0.707080 0.707134
602
+ 0.000000 -0.707080 0.707134
603
+ 0.000000 -0.707080 0.707134
604
+ 0.000000 -0.707080 0.707134
605
+ -1.000000 0.000000 0.000000
606
+ -1.000000 0.000000 0.000000
607
+ -1.000000 0.000000 0.000000
608
+ -1.000000 0.000000 0.000000
609
+ -1.000000 0.000000 0.000000
610
+ -1.000000 0.000000 0.000000
611
+ 0.000000 0.707106 -0.707108
612
+ 0.000000 0.707106 -0.707108
613
+ 0.000000 0.707106 -0.707108
614
+ 0.000000 0.707106 -0.707108
615
+ 0.000000 0.707106 -0.707108
616
+ 0.000000 0.707106 -0.707108
617
+ 1.000000 0.000000 0.000000
618
+ 1.000000 0.000000 0.000000
619
+ 1.000000 0.000000 0.000000
620
+ 1.000000 0.000000 0.000000
621
+ 1.000000 0.000000 0.000000
622
+ 1.000000 0.000000 0.000000
623
+ -0.000001 0.707107 -0.707106
624
+ -0.000001 0.707107 -0.707106
625
+ -0.000001 0.707107 -0.707107
626
+ -0.000001 0.707105 -0.707108
627
+ -0.000001 0.707105 -0.707108
628
+ -0.000001 0.707105 -0.707108
629
+ 0.000000 0.707106 -0.707107
630
+ 0.000000 0.707106 -0.707107
631
+ 0.000000 0.707106 -0.707107
632
+ -0.000000 0.707107 -0.707107
633
+ -0.000000 0.707106 -0.707107
634
+ -0.000000 0.707106 -0.707107
635
+ 0.000000 0.707107 -0.707107
636
+ 0.000000 0.707107 -0.707107
637
+ 0.000000 0.707107 -0.707107
638
+ 0.000000 0.707107 -0.707107
639
+ 0.000000 0.707107 -0.707107
640
+ 0.000000 0.707107 -0.707107
641
+ 0.000001 0.707106 -0.707108
642
+ 0.000001 0.707106 -0.707108
643
+ 0.000001 0.707106 -0.707108
644
+ 0.000000 0.707107 -0.707107
645
+ 0.000000 0.707107 -0.707107
646
+ 0.000000 0.707107 -0.707107
647
+ 0.000001 0.707107 -0.707107
648
+ 0.000001 0.707107 -0.707107
649
+ 0.000001 0.707107 -0.707107
650
+ 0.000001 -0.707107 0.707107
651
+ 0.000001 -0.707107 0.707107
652
+ 0.000001 -0.707107 0.707107
653
+ -0.000000 -0.707106 0.707107
654
+ -0.000000 -0.707106 0.707107
655
+ -0.000000 -0.707106 0.707107
656
+ 0.000003 -0.707107 0.707107
657
+ 0.000003 -0.707107 0.707107
658
+ 0.000003 -0.707107 0.707107
659
+ 0.000000 -0.707106 0.707107
660
+ 0.000000 -0.707106 0.707107
661
+ 0.000000 -0.707106 0.707107
662
+ -0.000000 -0.707106 0.707107
663
+ -0.000000 -0.707106 0.707107
664
+ -0.000000 -0.707106 0.707107
665
+ 0.000001 -0.707106 0.707107
666
+ 0.000001 -0.707106 0.707107
667
+ 0.000001 -0.707106 0.707107
668
+ -0.000001 -0.707107 0.707107
669
+ -0.000001 -0.707107 0.707107
670
+ -0.000001 -0.707107 0.707106
671
+ </float_array>
672
+ <technique_common>
673
+ <accessor source="#drc_r_hand-Normal0-array" count="504" stride="3">
674
+ <param name="X" type="float"/>
675
+ <param name="Y" type="float"/>
676
+ <param name="Z" type="float"/>
677
+ </accessor>
678
+ </technique_common>
679
+ </source>
680
+ <source id="drc_r_hand-UV0">
681
+ <float_array id="drc_r_hand-UV0-array" count="396">
682
+ 0.700426 0.298102
683
+ 0.715643 0.485256
684
+ 0.698706 0.478967
685
+ 0.692406 0.463282
686
+ 0.693083 0.447217
687
+ 0.701522 0.439424
688
+ 0.731918 0.427845
689
+ 0.732188 0.443908
690
+ 0.700995 0.408265
691
+ 0.736898 0.449400
692
+ 0.738153 0.462621
693
+ 0.732368 0.478482
694
+ 0.739563 0.407783
695
+ 0.740029 0.422820
696
+ 0.673343 0.815767
697
+ 0.673342 0.831397
698
+ 0.662985 0.842448
699
+ 0.648336 0.804715
700
+ 0.662985 0.804715
701
+ 0.637979 0.831397
702
+ 0.637978 0.815767
703
+ 0.648337 0.842449
704
+ 0.757100 0.381900
705
+ 0.775778 0.382194
706
+ 0.775606 0.394570
707
+ 0.756929 0.394274
708
+ 0.775593 0.395484
709
+ 0.767538 0.401313
710
+ 0.700697 0.400200
711
+ 0.711753 0.393521
712
+ 0.693058 0.394476
713
+ 0.693077 0.393197
714
+ 0.693267 0.380821
715
+ 0.711943 0.381148
716
+ 0.711106 0.373191
717
+ 0.756282 0.373917
718
+ 0.767141 0.380954
719
+ 0.700299 0.379879
720
+ 0.692416 0.373789
721
+ 0.692429 0.372876
722
+ 0.774958 0.374203
723
+ 0.774941 0.375483
724
+ 0.692613 0.360499
725
+ 0.711291 0.360817
726
+ 0.756447 0.361543
727
+ 0.775124 0.361827
728
+ 0.574250 0.824938
729
+ 0.565120 0.814925
730
+ 0.565121 0.800763
731
+ 0.574252 0.790750
732
+ 0.587163 0.790750
733
+ 0.587162 0.824939
734
+ 0.596293 0.814925
735
+ 0.596293 0.800764
736
+ 0.471826 0.341746
737
+ 0.472230 0.326123
738
+ 0.491501 0.326690
739
+ 0.491097 0.342314
740
+ 0.773695 0.341764
741
+ 0.758837 0.341810
742
+ 0.758780 0.320944
743
+ 0.773638 0.320898
744
+ 0.743979 0.341855
745
+ 0.743923 0.320989
746
+ 0.729121 0.341900
747
+ 0.729065 0.321034
748
+ 0.714263 0.341946
749
+ 0.714207 0.321081
750
+ 0.699406 0.341992
751
+ 0.699349 0.321125
752
+ 0.684548 0.342037
753
+ 0.684492 0.321172
754
+ 0.669690 0.342083
755
+ 0.669634 0.321217
756
+ 0.724419 0.372870
757
+ 0.724232 0.353100
758
+ 0.754852 0.352524
759
+ 0.755038 0.372294
760
+ 0.654623 0.320042
761
+ 0.654975 0.333684
762
+ 0.645166 0.343092
763
+ 0.631298 0.343537
764
+ 0.623501 0.325985
765
+ 0.630093 0.309812
766
+ 0.644317 0.310154
767
+ 0.620644 0.320000
768
+ 0.593905 0.337031
769
+ 0.591060 0.331042
770
+ 0.532470 0.803040
771
+ 0.519823 0.827237
772
+ 0.507444 0.821541
773
+ 0.502466 0.808173
774
+ 0.507802 0.794962
775
+ 0.520333 0.789646
776
+ 0.532336 0.822811
777
+ 0.532705 0.796230
778
+ 0.563091 0.803534
779
+ 0.562954 0.823303
780
+ 0.563327 0.796725
781
+ 0.583356 0.326277
782
+ 0.552801 0.328117
783
+ 0.534383 0.329822
784
+ 0.534092 0.326732
785
+ 0.552592 0.325018
786
+ 0.583007 0.319654
787
+ 0.583191 0.323177
788
+ 0.552456 0.321491
789
+ 0.601855 0.325147
790
+ 0.601688 0.322045
791
+ 0.503975 0.333521
792
+ 0.503645 0.330435
793
+ 0.539359 0.325383
794
+ 0.539323 0.321854
795
+ 0.525826 0.325324
796
+ 0.525887 0.321795
797
+ 0.512305 0.324854
798
+ 0.512456 0.321328
799
+ 0.498803 0.324006
800
+ 0.499037 0.320485
801
+ 0.485327 0.322810
802
+ 0.485638 0.319296
803
+ 0.471546 0.321258
804
+ 0.471928 0.317751
805
+ 0.441148 0.317137
806
+ 0.441565 0.313636
807
+ 0.688963 0.313447
808
+ 0.674516 0.312857
809
+ 0.657486 0.284609
810
+ 0.685336 0.285751
811
+ 0.656318 0.319300
812
+ 0.669839 0.320046
813
+ 0.685506 0.285759
814
+ 0.693820 0.317803
815
+ 0.692677 0.278332
816
+ 0.707145 0.278066
817
+ 0.705694 0.319214
818
+ 0.720074 0.314347
819
+ 0.721140 0.284069
820
+ 0.726484 0.299444
821
+ 0.490756 0.311264
822
+ 0.507522 0.311316
823
+ 0.507496 0.318211
824
+ 0.490738 0.318159
825
+ 0.523608 0.311403
826
+ 0.523567 0.318298
827
+ 0.534662 0.318388
828
+ 0.534722 0.311494
829
+ 0.534923 0.311497
830
+ 0.565896 0.311843
831
+ 0.565817 0.318739
832
+ 0.602048 0.312402
833
+ 0.601954 0.319296
834
+ 0.584718 0.304490
835
+ 0.601789 0.304815
836
+ 0.601674 0.311709
837
+ 0.584597 0.311385
838
+ 0.567651 0.304135
839
+ 0.567519 0.311030
840
+ 0.550898 0.303753
841
+ 0.550756 0.310648
842
+ 0.537633 0.303435
843
+ 0.537483 0.310328
844
+ 0.530595 0.303254
845
+ 0.530435 0.310148
846
+ 0.514545 0.302815
847
+ 0.514375 0.309709
848
+ 0.505443 0.302550
849
+ 0.505262 0.309444
850
+ 0.490222 0.308980
851
+ 0.490408 0.302087
852
+ 0.747644 0.738995
853
+ 0.708342 0.738863
854
+ 0.708383 0.729731
855
+ 0.747684 0.729864
856
+ 0.747688 0.729064
857
+ 0.708386 0.728925
858
+ 0.747739 0.718181
859
+ 0.708438 0.718037
860
+ 0.747825 0.700653
861
+ 0.708523 0.700502
862
+ 0.708579 0.689611
863
+ 0.747881 0.689774
864
+ 0.708821 0.647204
865
+ 0.748122 0.647373
866
+ 0.612919 0.524396
867
+ 0.613161 0.485518
868
+ 0.680001 0.485993
869
+ 0.679767 0.524871
870
+ 0.689325 0.486054
871
+ 0.689107 0.524932
872
+ 0.690313 0.524940
873
+ 0.690515 0.486062
874
+ 0.701919 0.525005
875
+ 0.702106 0.486127
876
+ 0.720604 0.525103
877
+ 0.720778 0.486225
878
+ 0.732375 0.486283
879
+ 0.732204 0.525161
880
+ </float_array>
881
+ <technique_common>
882
+ <accessor source="#drc_r_hand-UV0-array" count="198" stride="2">
883
+ <param name="S" type="float"/>
884
+ <param name="T" type="float"/>
885
+ </accessor>
886
+ </technique_common>
887
+ </source>
888
+ <vertices id="drc_r_hand-VERTEX">
889
+ <input semantic="POSITION" source="#drc_r_hand-POSITION"/>
890
+ </vertices>
891
+ <triangles count="168" material="drc_extremities_diffuse"><input semantic="VERTEX" offset="0" source="#drc_r_hand-VERTEX"/><input semantic="NORMAL" offset="1" source="#drc_r_hand-Normal0"/><input semantic="TEXCOORD" offset="2" set="0" source="#drc_r_hand-UV0"/><p> 0 0 120 1 1 118 9 2 117 9 3 117 8 4 119 0 5 120 1 6 118 2 7 116 10 8 115 10 9 115 9 10 117 1 11 118 2 12 116 3 13 114 11 14 113 11 15 113 10 16 115 2 17 116 3 18 114 4 19 112 12 20 111 12 21 111 11 22 113 3 23 114 4 24 112 5 25 106 13 26 103 13 27 103 12 28 111 4 29 112 7 30 122 0 31 120 8 32 119 8 33 119 15 34 121 7 35 122 6 36 88 5 37 94 4 38 89 4 39 89 0 40 93 6 41 88 4 42 89 3 43 90 2 44 91 2 45 91 0 46 93 4 47 89 2 48 91 1 49 92 0 50 93 7 51 95 6 52 88 0 53 93 8 54 83 9 55 84 10 56 78 10 57 78 14 58 82 8 59 83 10 60 78 11 61 79 12 62 80 12 63 80 14 64 82 10 65 78 12 66 80 13 67 81 14 68 82 8 69 83 14 70 82 15 71 85 13 72 103 5 73 106 16 74 104 16 75 104 19 76 105 13 77 103 5 78 94 6 79 88 17 80 96 17 81 96 16 82 97 5 83 94 22 84 76 23 85 77 24 86 74 24 87 74 25 88 75 22 89 76 6 90 88 7 91 95 18 92 98 18 93 98 17 94 96 6 95 88 7 96 122 15 97 121 21 98 123 21 99 123 18 100 124 7 101 122 15 102 85 14 103 82 20 104 86 20 105 86 21 106 87 15 107 85 14 108 102 13 109 103 23 110 100 23 111 100 22 112 101 14 113 102 13 114 103 19 115 105 24 116 99 24 117 99 23 118 100 13 119 103 19 120 105 20 121 108 25 122 107 25 123 107 24 124 99 19 125 105 20 126 110 14 127 102 22 128 101 22 129 101 25 130 109 20 131 110 26 132 65 27 133 63 35 134 62 35 135 62 34 136 64 26 137 65 27 138 63 28 139 60 36 140 59 36 141 59 35 142 62 27 143 63 28 144 60 29 145 61 37 146 58 37 147 58 36 148 59 28 149 60 29 150 56 30 151 57 38 152 54 38 153 54 37 154 55 29 155 56 30 156 73 31 157 71 39 158 70 39 159 70 38 160 72 30 161 73 31 162 71 32 163 69 40 164 68 40 165 68 39 166 70 31 167 71 32 168 69 33 169 67 41 170 66 41 171 66 40 172 68 32 173 69 33 174 67 26 175 65 34 176 64 34 177 64 41 178 66 33 179 67 32 180 46 31 181 47 30 182 48 30 183 48 26 184 52 32 185 46 30 186 48 29 187 49 28 188 50 28 189 50 26 190 52 30 191 48 28 192 50 27 193 53 26 194 52 33 195 51 32 196 46 26 197 52 35 198 19 36 199 20 37 200 17 37 201 17 41 202 16 35 203 19 37 204 17 38 205 18 39 206 14 39 207 14 41 208 16 37 209 17 39 210 14 40 211 15 41 212 16 34 213 21 35 214 19 41 215 16 42 216 141 43 217 142 51 218 139 51 219 139 50 220 140 42 221 141 43 222 154 44 223 155 52 224 152 52 225 152 51 226 153 43 227 154 44 228 155 45 229 157 53 230 156 53 231 156 52 232 152 44 233 155 45 234 157 46 235 159 54 236 158 54 237 158 53 238 156 45 239 157 47 240 161 55 241 160 46 242 159 46 243 159 55 244 160 54 245 158 47 246 161 48 247 163 56 248 162 56 249 162 55 250 160 47 251 161 49 252 144 42 253 141 50 254 140 50 255 140 57 256 143 49 257 144 49 258 144 57 259 143 59 260 146 59 261 146 58 262 145 49 263 144 56 264 162 48 265 163 60 266 165 60 267 165 61 268 164 56 269 162 48 270 7 58 271 5 62 272 8 62 273 8 60 274 6 48 275 7 92 276 147 63 277 148 58 278 145 58 279 145 59 280 146 92 281 147 58 282 145 63 283 148 62 284 149 61 285 164 60 286 165 64 287 167 64 288 167 65 289 166 61 290 164 60 291 6 62 292 8 66 293 12 66 294 12 64 295 13 60 296 6 62 297 149 63 298 148 67 299 150 67 300 150 66 301 151 62 302 149 61 303 126 65 304 130 67 305 129 67 306 129 63 307 127 61 308 126 63 309 127 92 310 128 56 311 125 56 312 125 61 313 126 63 314 127 56 315 125 92 316 128 59 317 131 65 318 166 64 319 167 66 320 168 66 321 168 67 322 169 65 323 166 68 324 172 70 325 175 71 326 174 71 327 174 69 328 173 68 329 172 72 330 189 73 331 188 75 332 191 75 333 191 74 334 190 72 335 189 77 336 186 78 337 187 79 338 184 79 339 184 76 340 185 77 341 186 81 342 35 77 343 36 76 344 37 76 345 37 80 346 34 81 347 35 83 348 182 81 349 183 80 350 181 80 351 181 82 352 180 83 353 182 78 354 28 83 355 29 82 356 25 82 357 25 79 358 27 78 359 28 73 360 188 72 361 189 78 362 187 78 363 187 77 364 186 73 365 188 68 366 172 69 367 173 76 368 170 76 369 170 79 370 171 68 371 172 75 372 40 73 373 41 77 374 36 77 375 36 81 376 35 75 377 40 69 378 38 71 379 39 80 380 34 80 381 34 76 382 37 69 383 38 84 384 192 85 385 193 86 386 195 86 387 195 87 388 194 84 389 192 88 390 176 89 391 177 90 392 179 90 393 179 91 394 178 88 395 176 72 396 30 74 397 31 83 398 29 83 399 29 78 400 28 72 401 30 70 402 24 68 403 26 79 404 27 79 405 27 82 406 25 70 407 24 74 408 190 75 409 191 85 410 193 85 411 193 84 412 192 74 413 190 75 414 40 81 415 35 86 416 44 86 417 44 85 418 45 75 419 40 81 420 196 83 421 197 87 422 194 87 423 194 86 424 195 81 425 196 83 426 29 74 427 31 84 428 32 84 429 32 87 430 33 83 431 29 71 432 174 70 433 175 89 434 177 89 435 177 88 436 176 71 437 174 70 438 24 82 439 25 90 440 22 90 441 22 89 442 23 70 443 24 82 444 180 80 445 181 91 446 178 91 447 178 90 448 179 82 449 180 80 450 34 71 451 39 88 452 42 88 453 42 91 454 43 80 455 34 93 456 0 53 457 136 54 458 135 54 459 135 55 460 132 93 461 0 93 462 0 51 463 137 52 464 138 52 465 138 53 466 136 93 467 0 93 468 0 55 469 132 56 470 125 56 471 125 59 472 131 93 473 0 57 474 133 50 475 134 93 476 0 93 477 0 59 478 131 57 479 133 93 480 0 50 481 134 51 482 137 44 483 1 43 484 2 42 485 3 42 486 3 48 487 7 44 488 1 48 489 7 47 490 9 46 491 10 48 492 7 46 493 10 44 494 1 58 495 5 48 496 7 42 497 3 42 498 3 49 499 4 58 500 5 46 501 10 45 502 11 44 503 1</p></triangles>
892
+ </mesh>
893
+ </geometry>
894
+ </library_geometries>
895
+ <library_visual_scenes>
896
+ <visual_scene id="r_hand" name="r_hand">
897
+ <node name="g27" id="g27" sid="g27"><matrix sid="matrix">1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000</matrix><extra><technique profile="FCOLLADA"><visibility>1.000000</visibility></technique></extra><node name="r_hand_node" id="r_hand_node" sid="r_hand_node"><matrix sid="matrix">1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000</matrix><extra><technique profile="FCOLLADA"><visibility>1.000000</visibility></technique></extra><node name="drc_r_hand" id="drc_r_hand" sid="drc_r_hand"><matrix sid="matrix">0.000000 0.714781 -0.714781 -0.097151 0.000000 -0.714781 -0.714781 0.521748 -1.010853 0.000000 -0.000000 -0.289139 0.000000 0.000000 0.000000 1.000000</matrix><instance_geometry url="#drc_r_hand-lib"><bind_material><technique_common><instance_material symbol="drc_extremities_diffuse" target="#drc_extremities_diffuse"/></technique_common></bind_material></instance_geometry><extra><technique profile="FCOLLADA"><visibility>1.000000</visibility></technique></extra></node></node></node>
898
+ <extra><technique profile="MAX3D"><frame_rate>30.000000</frame_rate></technique><technique profile="FCOLLADA"><start_time>0.000000</start_time><end_time>3.333333</end_time></technique></extra>
899
+ </visual_scene>
900
+ </library_visual_scenes>
901
+ <scene>
902
+ <instance_visual_scene url="#r_hand"></instance_visual_scene>
903
+ </scene>
904
+ </COLLADA>