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,1278 @@
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:07:04Z</created><keywords></keywords><modified>2013-08-22T20:07:04Z</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_clav-lib" name="drc_r_clavMesh">
59
+ <mesh>
60
+ <source id="drc_r_clav-POSITION">
61
+ <float_array id="drc_r_clav-POSITION-array" count="414">
62
+ -0.065655 -0.185261 -0.023342
63
+ -0.065655 -0.185261 0.022449
64
+ -0.065726 -0.201630 0.022449
65
+ -0.065726 -0.201630 -0.023343
66
+ 0.050069 -0.185191 -0.023342
67
+ 0.050069 -0.201630 -0.023343
68
+ 0.050069 -0.201630 0.022449
69
+ 0.050069 -0.185191 0.022450
70
+ -0.054146 -0.201630 0.022449
71
+ -0.054146 -0.201630 -0.023343
72
+ -0.054076 -0.185261 -0.023342
73
+ -0.054076 -0.185261 0.022449
74
+ -0.054146 -0.233367 0.022449
75
+ -0.007257 -0.233367 0.022449
76
+ -0.007257 -0.233367 -0.023342
77
+ -0.054146 -0.233367 -0.023342
78
+ -0.007257 -0.201630 -0.023343
79
+ -0.007257 -0.185191 -0.023342
80
+ -0.007257 -0.185191 0.022450
81
+ -0.007257 -0.201630 0.022449
82
+ 0.050069 -0.215069 0.022449
83
+ 0.050069 -0.215069 -0.023342
84
+ -0.007185 -0.215140 0.022449
85
+ -0.054076 -0.215140 -0.023342
86
+ -0.054076 -0.215140 0.022449
87
+ -0.007185 -0.215140 -0.023342
88
+ -0.022413 -0.095955 0.013640
89
+ -0.023955 -0.187120 0.012086
90
+ -0.023955 -0.187120 -0.011360
91
+ -0.022413 -0.095955 -0.009663
92
+ -0.012304 -0.095955 0.024218
93
+ -0.013847 -0.187121 0.022522
94
+ 0.015090 -0.095883 0.024146
95
+ 0.013548 -0.187121 0.022522
96
+ 0.023885 -0.095955 0.016070
97
+ 0.022342 -0.187120 0.014373
98
+ 0.023885 -0.095884 -0.012165
99
+ 0.022342 -0.187120 -0.013790
100
+ 0.015899 -0.095883 -0.021456
101
+ 0.014356 -0.187120 -0.023081
102
+ -0.013214 -0.095955 -0.021384
103
+ -0.014756 -0.187120 -0.023081
104
+ -0.020821 -0.169465 0.065051
105
+ -0.020821 -0.168919 -0.003953
106
+ -0.020821 -0.155481 -0.003952
107
+ -0.020821 -0.156028 0.065050
108
+ -0.012836 -0.177613 0.065050
109
+ -0.012836 -0.177067 -0.003952
110
+ 0.012334 -0.177613 0.065050
111
+ 0.012334 -0.177067 -0.003952
112
+ 0.020219 -0.169895 0.065050
113
+ 0.020219 -0.169348 -0.003952
114
+ 0.020219 -0.155742 0.065051
115
+ 0.020219 -0.155196 -0.003953
116
+ 0.012941 -0.148450 0.065050
117
+ 0.012941 -0.147905 -0.003952
118
+ -0.013442 -0.148522 0.065122
119
+ -0.013442 -0.147976 -0.004024
120
+ -0.008302 -0.220517 -0.051201
121
+ -0.054192 -0.220517 -0.051201
122
+ -0.054263 -0.247750 -0.062421
123
+ -0.008231 -0.247750 -0.062421
124
+ -0.008302 -0.209223 -0.023908
125
+ -0.054192 -0.209223 -0.023908
126
+ -0.008302 -0.220517 0.003283
127
+ -0.054192 -0.220517 0.003283
128
+ -0.008231 -0.247750 0.014606
129
+ -0.054263 -0.247750 0.014606
130
+ -0.008302 -0.274983 0.003284
131
+ -0.054192 -0.274983 0.003284
132
+ -0.008302 -0.286276 -0.023908
133
+ -0.054192 -0.286276 -0.023908
134
+ -0.008302 -0.274983 -0.051202
135
+ -0.054192 -0.274983 -0.051202
136
+ -0.001726 -0.214941 -0.056660
137
+ -0.001655 -0.247750 -0.070306
138
+ -0.001726 -0.201360 -0.023908
139
+ -0.001726 -0.214941 0.008844
140
+ -0.001655 -0.247750 0.022389
141
+ -0.001726 -0.280558 0.008843
142
+ -0.001726 -0.294139 -0.023909
143
+ -0.001726 -0.280558 -0.056660
144
+ 0.050238 -0.215012 -0.056660
145
+ 0.050238 -0.247750 -0.070306
146
+ 0.050238 -0.201432 -0.023909
147
+ 0.050238 -0.215013 0.008843
148
+ 0.050238 -0.247750 0.022389
149
+ 0.050238 -0.280487 0.008844
150
+ 0.050238 -0.294068 -0.023908
151
+ 0.050238 -0.280487 -0.056660
152
+ -0.054192 -0.231096 -0.040588
153
+ -0.054263 -0.247750 -0.047461
154
+ -0.054192 -0.224234 -0.023908
155
+ -0.054192 -0.231095 -0.007330
156
+ -0.054263 -0.247750 -0.000456
157
+ -0.054192 -0.264404 -0.007331
158
+ -0.054192 -0.271266 -0.023908
159
+ -0.054192 -0.264404 -0.040587
160
+ -0.065699 -0.231167 -0.040587
161
+ -0.065699 -0.247750 -0.047461
162
+ -0.065699 -0.224305 -0.023908
163
+ -0.065699 -0.231167 -0.007331
164
+ -0.065699 -0.247750 -0.000456
165
+ -0.065699 -0.264332 -0.007330
166
+ -0.065628 -0.271266 -0.023908
167
+ -0.065699 -0.264333 -0.040588
168
+ 0.050238 -0.247750 -0.065050
169
+ 0.050238 -0.218730 -0.053021
170
+ 0.050167 -0.206650 -0.023908
171
+ 0.050238 -0.218730 0.005103
172
+ 0.050238 -0.247750 0.017133
173
+ 0.050238 -0.276770 0.005103
174
+ 0.050167 -0.288849 -0.023908
175
+ 0.050238 -0.276770 -0.053021
176
+ 0.003920 -0.247750 -0.065050
177
+ 0.003920 -0.218730 -0.053021
178
+ 0.003992 -0.206650 -0.023908
179
+ 0.003920 -0.218730 0.005103
180
+ 0.003920 -0.247750 0.017133
181
+ 0.003992 -0.276842 0.005103
182
+ 0.003992 -0.288849 -0.023908
183
+ 0.003992 -0.276842 -0.053021
184
+ -0.063585 -0.168991 -0.020092
185
+ 0.005387 -0.170666 -0.018772
186
+ 0.005819 -0.157236 -0.018741
187
+ -0.063153 -0.155561 -0.020062
188
+ -0.064000 -0.177149 -0.012126
189
+ 0.004972 -0.178823 -0.010805
190
+ -0.064483 -0.177190 0.013039
191
+ 0.004489 -0.178864 0.014361
192
+ -0.064386 -0.169487 0.020940
193
+ 0.004586 -0.171162 0.022261
194
+ -0.063931 -0.155342 0.020972
195
+ 0.005041 -0.157017 0.022293
196
+ -0.063557 -0.148043 0.013711
197
+ 0.005415 -0.149717 0.015032
198
+ -0.063126 -0.148070 -0.012668
199
+ 0.005990 -0.149749 -0.011345
200
+ </float_array>
201
+ <technique_common>
202
+ <accessor source="#drc_r_clav-POSITION-array" count="138" stride="3">
203
+ <param name="X" type="float"/>
204
+ <param name="Y" type="float"/>
205
+ <param name="Z" type="float"/>
206
+ </accessor>
207
+ </technique_common>
208
+ </source>
209
+ <source id="drc_r_clav-Normal0">
210
+ <float_array id="drc_r_clav-Normal0-array" count="2250">
211
+ -0.999991 0.004323 -0.000000
212
+ -0.999991 0.004323 -0.000000
213
+ -0.999991 0.004323 -0.000000
214
+ -0.999991 0.004323 -0.000000
215
+ -0.999991 0.004323 -0.000000
216
+ -0.999991 0.004323 -0.000000
217
+ 1.000000 -0.000000 0.000000
218
+ 1.000000 -0.000000 0.000000
219
+ 1.000000 -0.000000 0.000000
220
+ 1.000000 -0.000000 0.000000
221
+ 1.000000 -0.000000 0.000000
222
+ 1.000000 -0.000000 0.000000
223
+ 0.000000 -1.000000 0.000000
224
+ 0.000000 -1.000000 0.000000
225
+ 0.000000 -1.000000 0.000000
226
+ 0.000000 -1.000000 0.000000
227
+ 0.000000 -1.000000 0.000000
228
+ 0.000000 -1.000000 0.000000
229
+ 0.000000 0.000013 -1.000000
230
+ 0.000000 0.000013 -1.000000
231
+ 0.000000 0.000013 -1.000000
232
+ 0.000000 0.000013 -1.000000
233
+ 0.000000 0.000013 -1.000000
234
+ 0.000000 0.000013 -1.000000
235
+ 0.000000 1.000000 -0.000001
236
+ 0.000000 1.000000 -0.000001
237
+ 0.000000 1.000000 -0.000001
238
+ 0.000000 1.000000 -0.000001
239
+ 0.000000 1.000000 -0.000001
240
+ 0.000000 1.000000 -0.000001
241
+ 0.000000 -0.000010 1.000000
242
+ 0.000000 -0.000010 1.000000
243
+ 0.000000 -0.000010 1.000000
244
+ 0.000000 -0.000010 1.000000
245
+ 0.000000 -0.000010 1.000000
246
+ 0.000000 -0.000010 1.000000
247
+ 0.000000 -1.000000 0.000000
248
+ 0.000000 -1.000000 0.000000
249
+ 0.000000 -1.000000 0.000000
250
+ 0.000000 -1.000000 0.000000
251
+ 0.000000 -1.000000 0.000000
252
+ 0.000000 -1.000000 0.000000
253
+ 0.000000 0.000032 -1.000000
254
+ 0.000000 0.000032 -1.000000
255
+ 0.000000 0.000032 -1.000000
256
+ 0.000007 0.000013 -1.000000
257
+ 0.000007 0.000013 -1.000000
258
+ 0.000007 0.000013 -1.000000
259
+ -0.001500 0.999999 -0.000001
260
+ -0.001500 0.999999 -0.000001
261
+ -0.001500 0.999999 -0.000001
262
+ -0.001500 0.999999 -0.000001
263
+ -0.001500 0.999999 -0.000001
264
+ -0.001500 0.999999 -0.000001
265
+ -0.000007 -0.000030 1.000000
266
+ -0.000007 -0.000030 1.000000
267
+ -0.000007 -0.000030 1.000000
268
+ -0.000000 -0.000010 1.000000
269
+ -0.000000 -0.000010 1.000000
270
+ -0.000000 -0.000010 1.000000
271
+ 1.000000 -0.000000 0.000000
272
+ 1.000000 -0.000000 0.000000
273
+ 1.000000 -0.000000 0.000000
274
+ 1.000000 -0.000001 0.000000
275
+ 1.000000 -0.000001 0.000000
276
+ 1.000000 -0.000001 0.000000
277
+ 0.000003 0.000012 1.000000
278
+ 0.000003 0.000012 1.000000
279
+ 0.000003 0.000012 1.000000
280
+ 0.000000 -0.000002 1.000000
281
+ 0.000000 -0.000002 1.000000
282
+ 0.000000 -0.000002 1.000000
283
+ -0.999986 -0.005238 0.000000
284
+ -0.999986 -0.005238 0.000000
285
+ -0.999986 -0.005238 0.000000
286
+ -0.999986 -0.005238 0.000000
287
+ -0.999986 -0.005238 0.000000
288
+ -0.999986 -0.005238 0.000000
289
+ 0.000000 -0.000018 -1.000000
290
+ 0.000000 -0.000018 -1.000000
291
+ 0.000000 -0.000018 -1.000000
292
+ 0.000000 -0.000018 -1.000000
293
+ 0.000000 -0.000018 -1.000000
294
+ 0.000000 -0.000018 -1.000000
295
+ 0.001241 -0.999999 0.000000
296
+ 0.001241 -0.999999 0.000000
297
+ 0.001241 -0.999999 0.000000
298
+ 0.001242 -0.999999 0.000001
299
+ 0.001242 -0.999999 0.000001
300
+ 0.001242 -0.999999 0.000001
301
+ 0.000000 0.000033 -1.000000
302
+ 0.000000 0.000033 -1.000000
303
+ 0.000000 0.000033 -1.000000
304
+ 0.000000 0.000032 -1.000000
305
+ 0.000000 0.000032 -1.000000
306
+ 0.000000 0.000032 -1.000000
307
+ 0.000000 1.000000 -0.000001
308
+ 0.000000 1.000000 -0.000001
309
+ 0.000000 1.000000 -0.000001
310
+ 0.000000 1.000000 -0.000001
311
+ 0.000000 1.000000 -0.000001
312
+ 0.000000 1.000000 -0.000001
313
+ 0.000000 -0.000030 1.000000
314
+ 0.000000 -0.000030 1.000000
315
+ 0.000000 -0.000030 1.000000
316
+ 0.000000 -0.000030 1.000000
317
+ 0.000000 -0.000030 1.000000
318
+ 0.000000 -0.000030 1.000000
319
+ 0.000000 0.000013 1.000000
320
+ 0.000000 0.000013 1.000000
321
+ 0.000000 0.000013 1.000000
322
+ -0.000000 0.000012 1.000000
323
+ -0.000000 0.000012 1.000000
324
+ -0.000000 0.000012 1.000000
325
+ -0.000004 -0.000002 -1.000000
326
+ -0.000004 -0.000002 -1.000000
327
+ -0.000004 -0.000002 -1.000000
328
+ 0.000000 -0.000018 -1.000000
329
+ 0.000000 -0.000018 -1.000000
330
+ 0.000000 -0.000018 -1.000000
331
+ -0.999992 0.003882 -0.000000
332
+ -0.999992 0.003882 -0.000000
333
+ -0.999992 0.003882 -0.000000
334
+ -0.999992 0.003882 -0.000000
335
+ -0.999992 0.003882 -0.000000
336
+ -0.999992 0.003882 -0.000000
337
+ 0.000000 0.000005 -1.000000
338
+ 0.000000 0.000005 -1.000000
339
+ 0.000000 0.000005 -1.000000
340
+ 0.000000 0.000005 -1.000000
341
+ 0.000000 0.000005 -1.000000
342
+ 0.000000 0.000005 -1.000000
343
+ 0.999992 -0.003937 0.000000
344
+ 0.999992 -0.003937 0.000000
345
+ 0.999992 -0.003937 0.000000
346
+ 0.999992 -0.003938 0.000000
347
+ 0.999992 -0.003938 0.000000
348
+ 0.999992 -0.003938 0.000000
349
+ 0.000000 -0.000005 1.000000
350
+ 0.000000 -0.000005 1.000000
351
+ 0.000000 -0.000005 1.000000
352
+ -0.000000 -0.000004 1.000000
353
+ -0.000000 -0.000004 1.000000
354
+ -0.000000 -0.000004 1.000000
355
+ -0.999857 0.016918 -0.000000
356
+ -0.999857 0.016918 -0.000000
357
+ -0.999857 0.016918 -0.000000
358
+ -0.999857 0.016918 -0.000000
359
+ -0.999857 0.016918 -0.000000
360
+ -0.999857 0.016918 -0.000000
361
+ -0.718264 -0.000795 0.695771
362
+ -0.718264 -0.000795 0.695771
363
+ -0.718264 -0.000795 0.695771
364
+ -0.722980 0.000460 0.690869
365
+ -0.722980 0.000460 0.690869
366
+ -0.722980 0.000460 0.690869
367
+ 0.000000 -0.017806 0.999842
368
+ 0.000000 -0.017806 0.999841
369
+ 0.000000 -0.017806 0.999841
370
+ 0.002669 -0.018652 0.999822
371
+ 0.002669 -0.018652 0.999822
372
+ 0.002669 -0.018652 0.999823
373
+ 0.679452 -0.025148 0.733289
374
+ 0.679452 -0.025148 0.733289
375
+ 0.679452 -0.025148 0.733289
376
+ 0.676087 -0.024545 0.736413
377
+ 0.676087 -0.024545 0.736413
378
+ 0.676087 -0.024545 0.736413
379
+ 0.999857 -0.016905 0.000000
380
+ 0.999857 -0.016905 0.000000
381
+ 0.999857 -0.016905 0.000000
382
+ 0.999857 -0.016918 -0.000043
383
+ 0.999857 -0.016918 -0.000043
384
+ 0.999857 -0.016918 -0.000043
385
+ 0.758378 -0.001210 -0.651814
386
+ 0.758378 -0.001210 -0.651814
387
+ 0.758378 -0.001210 -0.651814
388
+ 0.758378 -0.001210 -0.651814
389
+ 0.758378 -0.001210 -0.651814
390
+ 0.758378 -0.001210 -0.651814
391
+ 0.000000 0.018613 -0.999827
392
+ 0.000000 0.018613 -0.999827
393
+ 0.000000 0.018613 -0.999827
394
+ -0.002509 0.017854 -0.999837
395
+ -0.002509 0.017854 -0.999837
396
+ -0.002509 0.017854 -0.999837
397
+ -0.786434 0.024796 -0.617177
398
+ -0.786434 0.024796 -0.617177
399
+ -0.786434 0.024796 -0.617177
400
+ -0.786434 0.024796 -0.617176
401
+ -0.786434 0.024796 -0.617176
402
+ -0.786434 0.024796 -0.617176
403
+ -1.000000 0.000000 -0.000000
404
+ -1.000000 0.000000 -0.000000
405
+ -1.000000 0.000000 -0.000000
406
+ -1.000000 -0.000000 -0.000000
407
+ -1.000000 -0.000000 -0.000000
408
+ -1.000000 -0.000000 -0.000000
409
+ -0.714182 -0.699938 -0.005543
410
+ -0.714182 -0.699938 -0.005543
411
+ -0.714182 -0.699938 -0.005543
412
+ -0.714203 -0.699917 -0.005538
413
+ -0.714203 -0.699917 -0.005538
414
+ -0.714203 -0.699917 -0.005538
415
+ 0.000000 -0.999969 -0.007919
416
+ 0.000000 -0.999969 -0.007919
417
+ 0.000000 -0.999969 -0.007919
418
+ 0.000000 -0.999969 -0.007919
419
+ 0.000000 -0.999969 -0.007919
420
+ 0.000000 -0.999969 -0.007919
421
+ 0.699548 -0.714563 -0.005660
422
+ 0.699548 -0.714563 -0.005660
423
+ 0.699548 -0.714563 -0.005660
424
+ 0.699543 -0.714568 -0.005659
425
+ 0.699543 -0.714568 -0.005659
426
+ 0.699543 -0.714568 -0.005659
427
+ 1.000000 0.000000 0.000000
428
+ 1.000000 0.000000 0.000000
429
+ 1.000000 0.000000 0.000000
430
+ 1.000000 -0.000000 0.000000
431
+ 1.000000 -0.000000 0.000000
432
+ 1.000000 -0.000000 0.000000
433
+ 0.707721 0.706470 0.005586
434
+ 0.707721 0.706470 0.005586
435
+ 0.707721 0.706470 0.005586
436
+ 0.707738 0.706453 0.005590
437
+ 0.707738 0.706453 0.005590
438
+ 0.707738 0.706453 0.005590
439
+ -0.002710 0.999965 0.007903
440
+ -0.002710 0.999965 0.007903
441
+ -0.002710 0.999965 0.007903
442
+ -0.002698 0.999965 0.007907
443
+ -0.002698 0.999965 0.007907
444
+ -0.002698 0.999965 0.007907
445
+ -0.713058 0.701083 0.005552
446
+ -0.713058 0.701083 0.005552
447
+ -0.713058 0.701083 0.005552
448
+ -0.713111 0.701029 0.005540
449
+ -0.713111 0.701029 0.005540
450
+ -0.713111 0.701029 0.005540
451
+ 0.000000 -1.000000 -0.000020
452
+ 0.000000 -1.000000 -0.000020
453
+ 0.000000 -1.000000 -0.000020
454
+ 0.000006 -1.000000 0.000000
455
+ 0.000006 -1.000000 0.000000
456
+ 0.000006 -1.000000 0.000000
457
+ -0.000042 -1.000000 0.000011
458
+ -0.000042 -1.000000 0.000011
459
+ -0.000042 -1.000000 0.000011
460
+ 0.000000 -1.000000 -0.000059
461
+ 0.000000 -1.000000 -0.000059
462
+ 0.000000 -1.000000 -0.000059
463
+ 0.000011 -1.000000 -0.000009
464
+ 0.000011 -1.000000 -0.000009
465
+ 0.000011 -1.000000 -0.000009
466
+ -0.000052 -1.000000 0.000010
467
+ -0.000052 -1.000000 0.000010
468
+ -0.000052 -1.000000 0.000010
469
+ 0.002773 -0.012305 -0.999920
470
+ 0.002773 -0.012305 -0.999920
471
+ 0.002773 -0.012305 -0.999920
472
+ 0.000006 0.000024 -1.000000
473
+ 0.000006 0.000024 -1.000000
474
+ 0.000006 0.000024 -1.000000
475
+ -0.000130 -0.000023 -1.000000
476
+ -0.000130 -0.000023 -1.000000
477
+ -0.000130 -0.000023 -1.000000
478
+ 0.000000 -0.000003 -1.000000
479
+ 0.000000 -0.000003 -1.000000
480
+ 0.000000 -0.000003 -1.000000
481
+ -0.000001 0.000002 -1.000000
482
+ -0.000001 0.000002 -1.000000
483
+ -0.000001 0.000002 -1.000000
484
+ 0.000090 0.000036 -1.000000
485
+ 0.000090 0.000036 -1.000000
486
+ 0.000090 0.000036 -1.000000
487
+ 0.000084 0.000028 1.000000
488
+ 0.000084 0.000028 1.000000
489
+ 0.000084 0.000028 1.000000
490
+ 0.000004 -0.000002 1.000000
491
+ 0.000004 -0.000002 1.000000
492
+ 0.000004 -0.000002 1.000000
493
+ 0.000000 0.000000 1.000000
494
+ 0.000000 0.000000 1.000000
495
+ 0.000000 0.000000 1.000000
496
+ -0.000001 0.000003 1.000000
497
+ -0.000001 0.000003 1.000000
498
+ -0.000001 0.000003 1.000000
499
+ -0.000129 -0.000041 1.000000
500
+ -0.000129 -0.000041 1.000000
501
+ -0.000129 -0.000041 1.000000
502
+ 0.002754 -0.012254 0.999921
503
+ 0.002754 -0.012254 0.999921
504
+ 0.002754 -0.012254 0.999921
505
+ 0.000000 0.380951 -0.924595
506
+ 0.000000 0.380951 -0.924595
507
+ 0.000000 0.380951 -0.924595
508
+ 0.000000 0.380951 -0.924595
509
+ 0.000000 0.380951 -0.924595
510
+ 0.000000 0.380951 -0.924595
511
+ 0.000000 0.924012 -0.382364
512
+ 0.000000 0.924012 -0.382364
513
+ 0.000000 0.924012 -0.382364
514
+ 0.000000 0.924012 -0.382364
515
+ 0.000000 0.924012 -0.382364
516
+ 0.000000 0.924012 -0.382364
517
+ 0.000000 0.923501 0.383595
518
+ 0.000000 0.923501 0.383595
519
+ 0.000000 0.923501 0.383595
520
+ -0.000000 0.923501 0.383595
521
+ -0.000000 0.923501 0.383595
522
+ -0.000000 0.923501 0.383595
523
+ 0.000000 0.383903 0.923374
524
+ 0.000000 0.383903 0.923374
525
+ 0.000000 0.383903 0.923374
526
+ 0.000000 0.383903 0.923374
527
+ 0.000000 0.383903 0.923374
528
+ 0.000000 0.383903 0.923374
529
+ -0.000000 -0.383889 0.923379
530
+ -0.000000 -0.383889 0.923379
531
+ -0.000000 -0.383889 0.923379
532
+ 0.000000 -0.383889 0.923379
533
+ 0.000000 -0.383889 0.923379
534
+ 0.000000 -0.383889 0.923379
535
+ -0.000000 -0.923522 0.383544
536
+ -0.000000 -0.923523 0.383544
537
+ -0.000000 -0.923523 0.383544
538
+ -0.000000 -0.923523 0.383544
539
+ -0.000000 -0.923523 0.383544
540
+ -0.000000 -0.923523 0.383544
541
+ 0.000000 -0.924026 -0.382329
542
+ 0.000000 -0.924026 -0.382329
543
+ 0.000000 -0.924026 -0.382329
544
+ 0.000000 -0.924026 -0.382328
545
+ 0.000000 -0.924026 -0.382328
546
+ 0.000000 -0.924026 -0.382328
547
+ 0.000000 -0.380929 -0.924604
548
+ 0.000000 -0.380929 -0.924604
549
+ 0.000000 -0.380929 -0.924604
550
+ 0.000000 -0.380929 -0.924604
551
+ 0.000000 -0.380929 -0.924604
552
+ 0.000000 -0.380929 -0.924604
553
+ -0.736681 0.255977 -0.625921
554
+ -0.736681 0.255977 -0.625921
555
+ -0.736681 0.255977 -0.625921
556
+ -0.742358 0.255922 -0.619199
557
+ -0.742358 0.255922 -0.619199
558
+ -0.742358 0.255922 -0.619199
559
+ -0.741409 0.620061 -0.256587
560
+ -0.741409 0.620061 -0.256587
561
+ -0.741409 0.620061 -0.256587
562
+ -0.740319 0.620985 -0.257498
563
+ -0.740319 0.620985 -0.257498
564
+ -0.740319 0.620985 -0.257498
565
+ -0.742220 0.618891 0.257069
566
+ -0.742220 0.618891 0.257069
567
+ -0.742220 0.618891 0.257069
568
+ -0.741308 0.619980 0.257076
569
+ -0.741308 0.619980 0.257076
570
+ -0.741308 0.619980 0.257076
571
+ -0.738094 0.257382 0.623676
572
+ -0.738094 0.257382 0.623676
573
+ -0.738094 0.257382 0.623676
574
+ -0.741216 0.254771 0.621040
575
+ -0.741216 0.254771 0.621040
576
+ -0.741216 0.254771 0.621040
577
+ -0.741459 -0.255945 0.620267
578
+ -0.741459 -0.255945 0.620267
579
+ -0.741459 -0.255945 0.620267
580
+ -0.738385 -0.255976 0.623910
581
+ -0.738385 -0.255976 0.623910
582
+ -0.738385 -0.255976 0.623910
583
+ -0.741284 -0.619861 0.257432
584
+ -0.741284 -0.619861 0.257432
585
+ -0.741284 -0.619861 0.257432
586
+ -0.742104 -0.619165 0.256743
587
+ -0.742104 -0.619165 0.256743
588
+ -0.742104 -0.619165 0.256743
589
+ -0.740202 -0.621301 -0.257072
590
+ -0.740202 -0.621301 -0.257072
591
+ -0.740202 -0.621301 -0.257072
592
+ -0.741370 -0.619911 -0.257064
593
+ -0.741370 -0.619911 -0.257064
594
+ -0.741370 -0.619911 -0.257064
595
+ -0.742876 -0.253354 -0.619635
596
+ -0.742876 -0.253354 -0.619635
597
+ -0.742876 -0.253354 -0.619635
598
+ -0.737186 -0.258118 -0.624445
599
+ -0.737186 -0.258118 -0.624445
600
+ -0.737186 -0.258118 -0.624445
601
+ 0.000529 0.384040 -0.923316
602
+ 0.000529 0.384040 -0.923316
603
+ 0.000529 0.384040 -0.923316
604
+ 0.000000 0.384754 -0.923019
605
+ 0.000000 0.384754 -0.923019
606
+ 0.000000 0.384754 -0.923019
607
+ 0.001267 0.923733 -0.383035
608
+ 0.001267 0.923733 -0.383035
609
+ 0.001267 0.923733 -0.383035
610
+ 0.001264 0.923735 -0.383031
611
+ 0.001264 0.923734 -0.383031
612
+ 0.001264 0.923734 -0.383031
613
+ 0.001277 0.923735 0.383029
614
+ 0.001277 0.923735 0.383029
615
+ 0.001277 0.923735 0.383029
616
+ 0.001278 0.923735 0.383029
617
+ 0.001278 0.923735 0.383029
618
+ 0.001278 0.923735 0.383029
619
+ 0.000000 0.381602 0.924327
620
+ 0.000000 0.381602 0.924327
621
+ 0.000000 0.381602 0.924327
622
+ 0.000538 0.382331 0.924025
623
+ 0.000538 0.382331 0.924025
624
+ 0.000538 0.382331 0.924025
625
+ 0.000513 -0.381620 0.924319
626
+ 0.000513 -0.381620 0.924319
627
+ 0.000513 -0.381620 0.924319
628
+ 0.000000 -0.382315 0.924032
629
+ 0.000000 -0.382315 0.924032
630
+ 0.000000 -0.382315 0.924032
631
+ 0.001267 -0.923733 0.383036
632
+ 0.001267 -0.923733 0.383036
633
+ 0.001267 -0.923733 0.383036
634
+ 0.001266 -0.923733 0.383034
635
+ 0.001266 -0.923733 0.383034
636
+ 0.001266 -0.923733 0.383034
637
+ 0.001262 -0.923727 -0.383049
638
+ 0.001262 -0.923727 -0.383049
639
+ 0.001262 -0.923727 -0.383049
640
+ 0.001278 -0.923736 -0.383028
641
+ 0.001278 -0.923736 -0.383028
642
+ 0.001278 -0.923736 -0.383028
643
+ 0.000000 -0.384042 -0.923316
644
+ 0.000000 -0.384042 -0.923316
645
+ 0.000000 -0.384042 -0.923316
646
+ 0.000522 -0.384747 -0.923022
647
+ 0.000522 -0.384747 -0.923022
648
+ 0.000522 -0.384747 -0.923022
649
+ -0.999991 0.004249 -0.000000
650
+ -0.999991 0.004249 -0.000000
651
+ -0.999991 0.004249 -0.000000
652
+ -0.999997 0.001842 0.001836
653
+ -0.999997 0.001842 0.001836
654
+ -0.999997 0.001842 0.001836
655
+ -1.000000 0.000000 0.000000
656
+ -1.000000 0.000000 0.000000
657
+ -1.000000 0.000000 0.000000
658
+ -1.000000 0.000000 0.000000
659
+ -1.000000 0.000000 0.000000
660
+ -1.000000 0.000000 0.000000
661
+ -1.000000 0.000000 0.000000
662
+ -1.000000 0.000000 0.000000
663
+ -1.000000 0.000000 0.000000
664
+ -1.000000 -0.000000 -0.000000
665
+ -1.000000 -0.000000 -0.000000
666
+ -1.000000 -0.000000 -0.000000
667
+ -0.999991 0.003010 -0.003001
668
+ -0.999991 0.003010 -0.003001
669
+ -0.999991 0.003010 -0.003001
670
+ -0.999997 0.002598 -0.000000
671
+ -0.999997 0.002598 -0.000000
672
+ -0.999997 0.002598 -0.000000
673
+ -0.999991 -0.004249 0.000000
674
+ -0.999991 -0.004249 0.000000
675
+ -0.999991 -0.004249 0.000000
676
+ -0.999997 -0.001837 -0.001831
677
+ -0.999997 -0.001837 -0.001831
678
+ -0.999997 -0.001837 -0.001831
679
+ -1.000000 0.000000 -0.000000
680
+ -1.000000 0.000000 -0.000000
681
+ -1.000000 0.000000 -0.000000
682
+ -1.000000 -0.000000 -0.000000
683
+ -1.000000 -0.000000 -0.000000
684
+ -1.000000 -0.000000 -0.000000
685
+ -1.000000 0.000000 0.000000
686
+ -1.000000 0.000000 0.000000
687
+ -1.000000 0.000000 0.000000
688
+ -1.000000 0.000000 0.000000
689
+ -1.000000 0.000000 0.000000
690
+ -1.000000 0.000000 0.000000
691
+ -0.999991 -0.003010 0.003000
692
+ -0.999991 -0.003010 0.003000
693
+ -0.999991 -0.003010 0.003000
694
+ -0.999997 -0.002598 -0.000001
695
+ -0.999997 -0.002598 -0.000001
696
+ -0.999997 -0.002598 -0.000001
697
+ 0.000000 0.382907 -0.923787
698
+ 0.000000 0.382907 -0.923787
699
+ 0.000000 0.382907 -0.923787
700
+ -0.002375 0.381508 -0.924363
701
+ -0.002375 0.381508 -0.924363
702
+ -0.002375 0.381508 -0.924363
703
+ -0.005722 0.924773 -0.380477
704
+ -0.005722 0.924773 -0.380477
705
+ -0.005722 0.924773 -0.380477
706
+ -0.005720 0.924773 -0.380476
707
+ -0.005720 0.924773 -0.380476
708
+ -0.005720 0.924773 -0.380476
709
+ -0.005704 0.923946 0.382479
710
+ -0.005704 0.923946 0.382479
711
+ -0.005704 0.923946 0.382479
712
+ -0.005775 0.923963 0.382437
713
+ -0.005775 0.923963 0.382437
714
+ -0.005775 0.923963 0.382437
715
+ -0.002438 0.382940 0.923770
716
+ -0.002438 0.382940 0.923770
717
+ -0.002438 0.382940 0.923770
718
+ 0.000000 0.381503 0.924368
719
+ 0.000000 0.381503 0.924368
720
+ 0.000000 0.381503 0.924368
721
+ 0.000000 -0.382906 0.923787
722
+ 0.000000 -0.382906 0.923787
723
+ 0.000000 -0.382906 0.923787
724
+ -0.002317 -0.381541 0.924349
725
+ -0.002317 -0.381541 0.924349
726
+ -0.002317 -0.381541 0.924349
727
+ -0.005715 -0.922558 0.385817
728
+ -0.005715 -0.922558 0.385817
729
+ -0.005715 -0.922557 0.385817
730
+ 0.000000 -0.923972 0.382460
731
+ 0.000000 -0.923972 0.382460
732
+ 0.000000 -0.923972 0.382460
733
+ 0.000000 -0.923397 -0.383845
734
+ 0.000000 -0.923397 -0.383845
735
+ 0.000000 -0.923397 -0.383845
736
+ -0.005707 -0.924772 -0.380479
737
+ -0.005707 -0.924772 -0.380479
738
+ -0.005707 -0.924772 -0.380480
739
+ -0.002347 -0.382887 -0.923792
740
+ -0.002347 -0.382887 -0.923792
741
+ -0.002347 -0.382887 -0.923792
742
+ 0.000000 -0.381503 -0.924367
743
+ 0.000000 -0.381503 -0.924367
744
+ 0.000000 -0.381503 -0.924367
745
+ -0.999984 0.002154 0.005198
746
+ -0.999984 0.002154 0.005198
747
+ -0.999984 0.002154 0.005198
748
+ -0.999995 -0.003052 -0.000000
749
+ -0.999995 -0.003052 -0.000000
750
+ -0.999995 -0.003052 -0.000000
751
+ -0.999984 0.002170 -0.005236
752
+ -0.999984 0.002170 -0.005236
753
+ -0.999984 0.002170 -0.005236
754
+ -1.000000 0.000000 0.000000
755
+ -1.000000 0.000000 0.000000
756
+ -1.000000 0.000000 0.000000
757
+ -1.000000 0.000000 0.000000
758
+ -1.000000 0.000000 0.000000
759
+ -1.000000 0.000000 0.000000
760
+ -1.000000 0.000000 0.000000
761
+ -1.000000 0.000000 0.000000
762
+ -1.000000 0.000000 0.000000
763
+ 1.000000 0.000000 0.000000
764
+ 1.000000 0.000000 0.000000
765
+ 1.000000 0.000000 0.000000
766
+ 1.000000 0.000000 0.000000
767
+ 1.000000 0.000000 0.000000
768
+ 1.000000 0.000000 0.000000
769
+ 0.999872 -0.013752 0.008172
770
+ 0.999872 -0.013752 0.008172
771
+ 0.999872 -0.013752 0.008172
772
+ 1.000000 0.000000 0.000000
773
+ 1.000000 0.000000 0.000000
774
+ 1.000000 0.000000 0.000000
775
+ 0.999997 0.001754 -0.001744
776
+ 0.999997 0.001754 -0.001744
777
+ 0.999997 0.001754 -0.001744
778
+ 0.999889 -0.013753 -0.005703
779
+ 0.999889 -0.013753 -0.005703
780
+ 0.999889 -0.013753 -0.005703
781
+ 1.000000 0.000000 0.000000
782
+ 1.000000 0.000000 0.000000
783
+ 1.000000 0.000000 0.000000
784
+ 1.000000 0.000000 0.000000
785
+ 1.000000 0.000000 0.000000
786
+ 1.000000 0.000000 0.000000
787
+ 1.000000 -0.000001 0.000001
788
+ 1.000000 -0.000001 0.000001
789
+ 1.000000 -0.000001 0.000001
790
+ 1.000000 -0.000000 -0.000000
791
+ 1.000000 -0.000000 -0.000000
792
+ 1.000000 -0.000000 -0.000000
793
+ 0.999872 0.013750 -0.008198
794
+ 0.999872 0.013750 -0.008198
795
+ 0.999872 0.013750 -0.008198
796
+ 1.000000 -0.000001 0.000001
797
+ 1.000000 -0.000001 0.000001
798
+ 1.000000 -0.000001 0.000001
799
+ 0.999997 -0.001716 0.001753
800
+ 0.999997 -0.001716 0.001753
801
+ 0.999997 -0.001716 0.001753
802
+ 0.999889 0.013751 0.005702
803
+ 0.999889 0.013751 0.005702
804
+ 0.999889 0.013751 0.005702
805
+ 1.000000 0.000000 0.000000
806
+ 1.000000 0.000000 0.000000
807
+ 1.000000 0.000000 0.000000
808
+ 1.000000 0.000000 0.000000
809
+ 1.000000 0.000000 0.000000
810
+ 1.000000 0.000000 0.000000
811
+ 0.000000 -0.382926 0.923779
812
+ 0.000000 -0.382926 0.923779
813
+ 0.000000 -0.382926 0.923779
814
+ 0.000000 -0.382926 0.923779
815
+ 0.000000 -0.382926 0.923779
816
+ 0.000000 -0.382926 0.923779
817
+ -0.000000 -0.923646 0.383246
818
+ -0.000000 -0.923646 0.383246
819
+ -0.000000 -0.923646 0.383246
820
+ 0.000000 -0.923646 0.383246
821
+ 0.000000 -0.923646 0.383246
822
+ 0.000000 -0.923646 0.383246
823
+ 0.000000 -0.923173 -0.384386
824
+ 0.000000 -0.923173 -0.384386
825
+ 0.000000 -0.923173 -0.384386
826
+ 0.000000 -0.923173 -0.384386
827
+ 0.000000 -0.923173 -0.384386
828
+ 0.000000 -0.923173 -0.384386
829
+ 0.000000 -0.382934 -0.923776
830
+ 0.000000 -0.382934 -0.923776
831
+ 0.000000 -0.382934 -0.923776
832
+ 0.000000 -0.382934 -0.923776
833
+ 0.000000 -0.382934 -0.923776
834
+ 0.000000 -0.382934 -0.923776
835
+ -0.000595 0.382115 -0.924115
836
+ -0.000595 0.382115 -0.924115
837
+ -0.000595 0.382115 -0.924115
838
+ 0.000000 0.382925 -0.923779
839
+ 0.000000 0.382925 -0.923779
840
+ 0.000000 0.382925 -0.923779
841
+ 0.000000 0.923988 -0.382421
842
+ 0.000000 0.923988 -0.382421
843
+ 0.000000 0.923988 -0.382421
844
+ -0.001445 0.923172 -0.384383
845
+ -0.001445 0.923173 -0.384383
846
+ -0.001445 0.923173 -0.384383
847
+ -0.001434 0.924453 0.381294
848
+ -0.001434 0.924453 0.381294
849
+ -0.001434 0.924453 0.381294
850
+ -0.000000 0.923649 0.383238
851
+ -0.000000 0.923649 0.383238
852
+ -0.000000 0.923649 0.383238
853
+ 0.000000 0.382111 0.924116
854
+ 0.000000 0.382111 0.924116
855
+ 0.000000 0.382111 0.924116
856
+ -0.000583 0.382903 0.923788
857
+ -0.000583 0.382903 0.923788
858
+ -0.000583 0.382903 0.923788
859
+ 0.999982 -0.005941 0.000000
860
+ 0.999982 -0.005941 0.000000
861
+ 0.999982 -0.005941 0.000000
862
+ 0.999999 0.001235 0.000000
863
+ 0.999999 0.001235 0.000000
864
+ 0.999999 0.001235 0.000000
865
+ 0.999995 0.001235 0.002979
866
+ 0.999995 0.001235 0.002979
867
+ 0.999995 0.001235 0.002979
868
+ 1.000000 0.000001 0.000000
869
+ 1.000000 0.000001 0.000000
870
+ 1.000000 0.000001 0.000000
871
+ 0.999999 0.001235 0.000000
872
+ 0.999999 0.001235 0.000000
873
+ 0.999999 0.001235 0.000000
874
+ 0.999995 0.001235 -0.002979
875
+ 0.999995 0.001235 -0.002979
876
+ 0.999995 0.001235 -0.002979
877
+ 0.019183 0.001643 -0.999815
878
+ 0.019183 0.001643 -0.999815
879
+ 0.019183 0.001643 -0.999815
880
+ 0.019183 0.001643 -0.999815
881
+ 0.019183 0.001643 -0.999815
882
+ 0.019183 0.001643 -0.999815
883
+ -0.003263 -0.698588 -0.715517
884
+ -0.003263 -0.698588 -0.715517
885
+ -0.003263 -0.698588 -0.715517
886
+ -0.003263 -0.698589 -0.715516
887
+ -0.003263 -0.698589 -0.715516
888
+ -0.003263 -0.698589 -0.715516
889
+ -0.024227 -0.999704 -0.002094
890
+ -0.024227 -0.999704 -0.002094
891
+ -0.024227 -0.999704 -0.002094
892
+ -0.024234 -0.999704 -0.002116
893
+ -0.024234 -0.999704 -0.002116
894
+ -0.024234 -0.999704 -0.002116
895
+ -0.030736 -0.715496 0.697940
896
+ -0.030736 -0.715496 0.697940
897
+ -0.030736 -0.715496 0.697940
898
+ -0.030740 -0.715511 0.697925
899
+ -0.030740 -0.715511 0.697925
900
+ -0.030740 -0.715511 0.697925
901
+ -0.019183 -0.001635 0.999815
902
+ -0.019183 -0.001635 0.999815
903
+ -0.019183 -0.001635 0.999815
904
+ -0.019182 -0.001632 0.999815
905
+ -0.019182 -0.001632 0.999815
906
+ -0.019182 -0.001632 0.999815
907
+ 0.003546 0.705136 0.709063
908
+ 0.003546 0.705136 0.709063
909
+ 0.003546 0.705136 0.709063
910
+ 0.003545 0.705133 0.709066
911
+ 0.003545 0.705133 0.709066
912
+ 0.003545 0.705133 0.709066
913
+ 0.024300 0.999705 -0.000652
914
+ 0.024300 0.999704 -0.000652
915
+ 0.024300 0.999704 -0.000652
916
+ 0.024286 0.999705 -0.000619
917
+ 0.024286 0.999705 -0.000619
918
+ 0.024286 0.999705 -0.000619
919
+ 0.030670 0.702090 -0.711428
920
+ 0.030670 0.702090 -0.711428
921
+ 0.030670 0.702090 -0.711428
922
+ 0.030676 0.702061 -0.711455
923
+ 0.030676 0.702061 -0.711456
924
+ 0.030676 0.702061 -0.711455
925
+ 0.998771 -0.044491 0.021832
926
+ 0.998771 -0.044491 0.021832
927
+ 0.998771 -0.044491 0.021832
928
+ 0.999299 -0.032187 0.019099
929
+ 0.999299 -0.032187 0.019099
930
+ 0.999299 -0.032187 0.019099
931
+ 0.999299 -0.032178 0.019126
932
+ 0.999299 -0.032178 0.019126
933
+ 0.999299 -0.032178 0.019126
934
+ 0.999298 -0.032217 0.019134
935
+ 0.999298 -0.032217 0.019134
936
+ 0.999298 -0.032217 0.019134
937
+ 0.999301 -0.032138 0.019116
938
+ 0.999301 -0.032138 0.019116
939
+ 0.999301 -0.032138 0.019116
940
+ 0.999301 -0.032160 0.019058
941
+ 0.999301 -0.032160 0.019058
942
+ 0.999301 -0.032160 0.019058
943
+ -0.999299 0.032160 -0.019185
944
+ -0.999299 0.032160 -0.019185
945
+ -0.999299 0.032160 -0.019185
946
+ -0.999299 0.032181 -0.019128
947
+ -0.999299 0.032181 -0.019128
948
+ -0.999299 0.032181 -0.019128
949
+ -0.999298 0.032218 -0.019135
950
+ -0.999298 0.032218 -0.019135
951
+ -0.999298 0.032218 -0.019135
952
+ -0.999299 0.032178 -0.019125
953
+ -0.999299 0.032178 -0.019125
954
+ -0.999299 0.032178 -0.019125
955
+ -0.999299 0.032178 -0.019127
956
+ -0.999299 0.032178 -0.019127
957
+ -0.999299 0.032178 -0.019127
958
+ -0.999670 0.019806 -0.016377
959
+ -0.999670 0.019806 -0.016377
960
+ -0.999670 0.019806 -0.016377
961
+ </float_array>
962
+ <technique_common>
963
+ <accessor source="#drc_r_clav-Normal0-array" count="750" stride="3">
964
+ <param name="X" type="float"/>
965
+ <param name="Y" type="float"/>
966
+ <param name="Z" type="float"/>
967
+ </accessor>
968
+ </technique_common>
969
+ </source>
970
+ <source id="drc_r_clav-UV0">
971
+ <float_array id="drc_r_clav-UV0-array" count="564">
972
+ 0.642304 0.915475
973
+ 0.642360 0.883819
974
+ 0.630598 0.883801
975
+ 0.630539 0.915456
976
+ 0.489944 0.915004
977
+ 0.501767 0.915060
978
+ 0.501924 0.883405
979
+ 0.490120 0.883349
980
+ 0.622281 0.883786
981
+ 0.622213 0.915441
982
+ 0.779932 0.993259
983
+ 0.772716 0.993094
984
+ 0.772613 0.998003
985
+ 0.779833 0.998173
986
+ 0.415089 0.914584
987
+ 0.415293 0.882929
988
+ 0.406973 0.882879
989
+ 0.406767 0.914533
990
+ 0.998176 0.797173
991
+ 0.990960 0.797029
992
+ 0.990827 0.801941
993
+ 0.998043 0.802081
994
+ 0.599485 0.883734
995
+ 0.565796 0.883641
996
+ 0.565693 0.915297
997
+ 0.599396 0.915390
998
+ 0.780336 0.973370
999
+ 0.773086 0.973234
1000
+ 0.448740 0.914780
1001
+ 0.448933 0.883126
1002
+ 0.998726 0.777323
1003
+ 0.991473 0.777143
1004
+ 0.511571 0.883446
1005
+ 0.511433 0.915101
1006
+ 0.986225 0.752684
1007
+ 0.985519 0.776969
1008
+ 0.992148 0.752831
1009
+ 0.612500 0.915420
1010
+ 0.612577 0.883766
1011
+ 0.785885 0.993339
1012
+ 0.786293 0.973448
1013
+ 0.552706 0.883599
1014
+ 0.552586 0.915254
1015
+ 0.780788 0.949057
1016
+ 0.773542 0.948928
1017
+ 0.999391 0.753021
1018
+ 0.985005 0.796858
1019
+ 0.786717 0.949161
1020
+ 0.794333 0.973635
1021
+ 0.793921 0.993524
1022
+ 0.976968 0.796693
1023
+ 0.977478 0.776803
1024
+ 0.570994 0.879936
1025
+ 0.571046 0.837392
1026
+ 0.554195 0.837392
1027
+ 0.554249 0.879935
1028
+ 0.581509 0.879940
1029
+ 0.581488 0.837396
1030
+ 0.601195 0.879981
1031
+ 0.601174 0.837387
1032
+ 0.609777 0.879928
1033
+ 0.609789 0.837384
1034
+ 0.630068 0.879960
1035
+ 0.630027 0.837366
1036
+ 0.522617 0.880011
1037
+ 0.522566 0.837417
1038
+ 0.513762 0.837428
1039
+ 0.513812 0.880021
1040
+ 0.543540 0.879938
1041
+ 0.543486 0.837394
1042
+ 0.411045 0.843418
1043
+ 0.502581 0.843335
1044
+ 0.502571 0.834046
1045
+ 0.411036 0.834130
1046
+ 0.411054 0.851308
1047
+ 0.502590 0.851219
1048
+ 0.411074 0.868710
1049
+ 0.502609 0.868615
1050
+ 0.411082 0.876338
1051
+ 0.502618 0.876243
1052
+ 0.410999 0.801501
1053
+ 0.502535 0.801404
1054
+ 0.502525 0.791621
1055
+ 0.410989 0.791716
1056
+ 0.411008 0.808621
1057
+ 0.502544 0.808527
1058
+ 0.410976 0.826856
1059
+ 0.502615 0.826769
1060
+ 0.724517 0.867266
1061
+ 0.724633 0.887416
1062
+ 0.733103 0.893738
1063
+ 0.751434 0.861597
1064
+ 0.731171 0.861703
1065
+ 0.757441 0.886614
1066
+ 0.757332 0.867653
1067
+ 0.749972 0.893651
1068
+ 0.696303 0.850511
1069
+ 0.677342 0.850629
1070
+ 0.672059 0.855837
1071
+ 0.701589 0.865317
1072
+ 0.701552 0.855533
1073
+ 0.677855 0.870739
1074
+ 0.695944 0.870674
1075
+ 0.672094 0.865126
1076
+ 0.659198 0.872814
1077
+ 0.653867 0.878808
1078
+ 0.654518 0.888077
1079
+ 0.679093 0.891726
1080
+ 0.683274 0.876598
1081
+ 0.677246 0.871641
1082
+ 0.683959 0.886360
1083
+ 0.660173 0.892910
1084
+ 0.520562 0.990418
1085
+ 0.520851 0.958696
1086
+ 0.499685 0.958471
1087
+ 0.499396 0.990291
1088
+ 0.541787 0.990598
1089
+ 0.542078 0.958877
1090
+ 0.562947 0.990778
1091
+ 0.563237 0.959055
1092
+ 0.584140 0.991005
1093
+ 0.584430 0.959185
1094
+ 0.435844 0.989708
1095
+ 0.436132 0.957986
1096
+ 0.414939 0.957760
1097
+ 0.414650 0.989579
1098
+ 0.457003 0.989886
1099
+ 0.457291 0.958164
1100
+ 0.478229 0.990064
1101
+ 0.478518 0.958342
1102
+ 0.690421 0.956790
1103
+ 0.687321 0.950508
1104
+ 0.666192 0.951354
1105
+ 0.663699 0.957934
1106
+ 0.708474 0.937867
1107
+ 0.701649 0.935474
1108
+ 0.707307 0.912210
1109
+ 0.700716 0.915159
1110
+ 0.687604 0.894843
1111
+ 0.685131 0.901370
1112
+ 0.660904 0.895940
1113
+ 0.663977 0.902279
1114
+ 0.642848 0.914857
1115
+ 0.649673 0.917250
1116
+ 0.644007 0.940517
1117
+ 0.650583 0.937628
1118
+ 0.489516 0.918838
1119
+ 0.489470 0.954760
1120
+ 0.515003 0.954712
1121
+ 0.515007 0.918839
1122
+ 0.464032 0.918823
1123
+ 0.463993 0.954747
1124
+ 0.438549 0.918788
1125
+ 0.438516 0.954711
1126
+ 0.413088 0.918736
1127
+ 0.413009 0.954610
1128
+ 0.591460 0.918790
1129
+ 0.591495 0.954713
1130
+ 0.617003 0.954610
1131
+ 0.616922 0.918737
1132
+ 0.565979 0.918827
1133
+ 0.566016 0.954750
1134
+ 0.540496 0.918841
1135
+ 0.540538 0.954764
1136
+ 0.747500 0.942230
1137
+ 0.734557 0.941888
1138
+ 0.730185 0.951336
1139
+ 0.751343 0.951907
1140
+ 0.756880 0.933626
1141
+ 0.766735 0.937847
1142
+ 0.757221 0.921227
1143
+ 0.767268 0.917499
1144
+ 0.748297 0.912204
1145
+ 0.752698 0.902692
1146
+ 0.735353 0.911862
1147
+ 0.731510 0.902185
1148
+ 0.726002 0.920402
1149
+ 0.716148 0.916181
1150
+ 0.725632 0.932865
1151
+ 0.715585 0.936593
1152
+ 0.586214 0.827473
1153
+ 0.573310 0.827460
1154
+ 0.573307 0.835366
1155
+ 0.586249 0.835428
1156
+ 0.599178 0.827453
1157
+ 0.599208 0.835408
1158
+ 0.612074 0.827384
1159
+ 0.612098 0.835339
1160
+ 0.624975 0.827281
1161
+ 0.625044 0.835187
1162
+ 0.534502 0.827434
1163
+ 0.521601 0.827389
1164
+ 0.521572 0.835295
1165
+ 0.534517 0.835389
1166
+ 0.547419 0.827494
1167
+ 0.547408 0.835399
1168
+ 0.560404 0.827465
1169
+ 0.560365 0.835420
1170
+ 0.760954 0.883990
1171
+ 0.760893 0.894486
1172
+ 0.768505 0.901914
1173
+ 0.779551 0.876756
1174
+ 0.768709 0.876686
1175
+ 0.787085 0.894608
1176
+ 0.787162 0.884183
1177
+ 0.779347 0.901984
1178
+ 0.729588 0.952536
1179
+ 0.714057 0.936776
1180
+ 0.710554 0.938028
1181
+ 0.728051 0.955856
1182
+ 0.714642 0.914994
1183
+ 0.711216 0.913526
1184
+ 0.731057 0.900074
1185
+ 0.729711 0.896667
1186
+ 0.753624 0.900642
1187
+ 0.755162 0.897322
1188
+ 0.769156 0.916402
1189
+ 0.772689 0.915086
1190
+ 0.768600 0.938120
1191
+ 0.772026 0.939588
1192
+ 0.752156 0.953104
1193
+ 0.753533 0.956448
1194
+ 0.677294 0.990832
1195
+ 0.699868 0.990823
1196
+ 0.699855 0.958803
1197
+ 0.677278 0.958813
1198
+ 0.722518 0.990764
1199
+ 0.722508 0.958844
1200
+ 0.745101 0.990809
1201
+ 0.745093 0.958789
1202
+ 0.767676 0.990803
1203
+ 0.767669 0.958784
1204
+ 0.586854 0.990814
1205
+ 0.609478 0.990785
1206
+ 0.609462 0.958815
1207
+ 0.586886 0.958795
1208
+ 0.632041 0.990789
1209
+ 0.632047 0.958869
1210
+ 0.654671 0.990794
1211
+ 0.654700 0.958824
1212
+ 0.683803 0.904806
1213
+ 0.665451 0.904994
1214
+ 0.652780 0.917485
1215
+ 0.697599 0.934348
1216
+ 0.697113 0.916935
1217
+ 0.666574 0.947029
1218
+ 0.684964 0.946781
1219
+ 0.653248 0.934862
1220
+ 0.411045 0.843418
1221
+ 0.502581 0.843335
1222
+ 0.502571 0.834046
1223
+ 0.411036 0.834130
1224
+ 0.411054 0.851308
1225
+ 0.502590 0.851219
1226
+ 0.411074 0.868710
1227
+ 0.502609 0.868615
1228
+ 0.411082 0.876338
1229
+ 0.502618 0.876243
1230
+ 0.410999 0.801501
1231
+ 0.502535 0.801404
1232
+ 0.502525 0.791621
1233
+ 0.410989 0.791716
1234
+ 0.411008 0.808621
1235
+ 0.502544 0.808527
1236
+ 0.410976 0.826856
1237
+ 0.502615 0.826769
1238
+ 0.713887 0.871604
1239
+ 0.694927 0.871722
1240
+ 0.689643 0.876929
1241
+ 0.719174 0.886409
1242
+ 0.719137 0.876626
1243
+ 0.695439 0.891831
1244
+ 0.713528 0.891766
1245
+ 0.689678 0.886218
1246
+ 0.644580 0.850316
1247
+ 0.639249 0.856310
1248
+ 0.639900 0.865578
1249
+ 0.664475 0.869228
1250
+ 0.668656 0.854100
1251
+ 0.662629 0.849143
1252
+ 0.669341 0.863861
1253
+ 0.645555 0.870412
1254
+ </float_array>
1255
+ <technique_common>
1256
+ <accessor source="#drc_r_clav-UV0-array" count="282" stride="2">
1257
+ <param name="S" type="float"/>
1258
+ <param name="T" type="float"/>
1259
+ </accessor>
1260
+ </technique_common>
1261
+ </source>
1262
+ <vertices id="drc_r_clav-VERTEX">
1263
+ <input semantic="POSITION" source="#drc_r_clav-POSITION"/>
1264
+ </vertices>
1265
+ <triangles count="250" material="drc_extremities_diffuse"><input semantic="VERTEX" offset="0" source="#drc_r_clav-VERTEX"/><input semantic="NORMAL" offset="1" source="#drc_r_clav-Normal0"/><input semantic="TEXCOORD" offset="2" set="0" source="#drc_r_clav-UV0"/><p> 2 0 2 1 1 1 0 2 0 0 3 0 3 4 3 2 5 2 6 6 6 5 7 5 4 8 4 4 9 4 7 10 7 6 11 6 3 12 3 9 13 9 8 14 8 8 15 8 2 16 2 3 17 3 0 18 12 10 19 11 9 20 10 9 21 10 3 22 13 0 23 12 1 24 16 11 25 15 10 26 14 10 27 14 0 28 17 1 29 16 2 30 20 8 31 19 11 32 18 11 33 18 1 34 21 2 35 20 14 36 24 13 37 23 12 38 22 12 39 22 15 40 25 14 41 24 17 42 27 16 43 26 9 44 10 9 45 10 10 46 11 17 47 27 18 48 29 17 49 28 10 50 14 10 51 14 11 52 15 18 53 29 19 54 31 18 55 30 11 56 18 11 57 18 8 58 19 19 59 31 5 60 5 6 61 6 20 62 32 20 63 32 21 64 33 5 65 5 19 66 31 22 67 35 20 68 34 20 69 34 6 70 36 19 71 31 8 72 8 9 73 9 23 74 37 23 75 37 24 76 38 8 77 8 16 78 26 25 79 40 23 80 39 23 81 39 9 82 10 16 83 26 21 84 33 20 85 32 22 86 41 22 87 41 25 88 42 21 89 33 4 90 44 5 91 43 16 92 26 16 93 26 17 94 27 4 95 44 7 96 7 4 97 4 17 98 28 17 99 28 18 100 29 7 101 7 6 102 36 7 103 45 18 104 30 18 105 30 19 106 31 6 107 36 8 108 19 24 109 46 22 110 35 22 111 35 19 112 31 8 113 19 5 114 43 21 115 47 25 116 40 25 117 40 16 118 26 5 119 43 24 120 38 23 121 37 15 122 25 15 123 25 12 124 22 24 125 38 23 126 39 25 127 40 14 128 48 14 129 48 15 130 49 23 131 39 25 132 42 22 133 41 13 134 23 13 135 23 14 136 24 25 137 42 22 138 35 24 139 46 12 140 50 12 141 50 13 142 51 22 143 35 28 144 54 27 145 53 26 146 52 26 147 52 29 148 55 28 149 54 27 150 53 31 151 57 30 152 56 30 153 56 26 154 52 27 155 53 31 156 57 33 157 59 32 158 58 32 159 58 30 160 56 31 161 57 33 162 59 35 163 61 34 164 60 34 165 60 32 166 58 33 167 59 35 168 61 37 169 63 36 170 62 36 171 62 34 172 60 35 173 61 37 174 66 39 175 65 38 176 64 38 177 64 36 178 67 37 179 66 39 180 65 41 181 69 40 182 68 40 183 68 38 184 64 39 185 65 41 186 69 28 187 54 29 188 55 29 189 55 40 190 68 41 191 69 44 192 72 43 193 71 42 194 70 42 195 70 45 196 73 44 197 72 43 198 71 47 199 75 46 200 74 46 201 74 42 202 70 43 203 71 47 204 75 49 205 77 48 206 76 48 207 76 46 208 74 47 209 75 49 210 77 51 211 79 50 212 78 50 213 78 48 214 76 49 215 77 51 216 82 53 217 81 52 218 80 52 219 80 50 220 83 51 221 82 53 222 81 55 223 85 54 224 84 54 225 84 52 226 80 53 227 81 55 228 85 57 229 87 56 230 86 56 231 86 54 232 84 55 233 85 57 234 87 44 235 72 45 236 73 45 237 73 56 238 86 57 239 87 28 240 90 41 241 89 39 242 88 39 243 88 35 244 91 28 245 90 39 246 88 37 247 92 35 248 91 35 249 91 33 250 94 31 251 93 31 252 93 28 253 90 35 254 91 27 255 95 28 256 90 31 257 93 44 258 98 57 259 97 55 260 96 55 261 96 51 262 99 44 263 98 55 264 96 53 265 100 51 266 99 51 267 99 49 268 102 47 269 101 47 270 101 44 271 98 51 272 99 43 273 103 44 274 98 47 275 101 45 276 106 42 277 105 46 278 104 46 279 104 54 280 107 45 281 106 46 282 104 48 283 109 50 284 108 50 285 108 54 286 107 46 287 104 50 288 108 52 289 110 54 290 107 45 291 106 54 292 107 56 293 111 60 294 114 59 295 113 58 296 112 58 297 112 61 298 115 60 299 114 59 300 113 63 301 117 62 302 116 62 303 116 58 304 112 59 305 113 63 306 117 65 307 119 64 308 118 64 309 118 62 310 116 63 311 117 65 312 119 67 313 121 66 314 120 66 315 120 64 316 118 65 317 119 67 318 124 69 319 123 68 320 122 68 321 122 66 322 125 67 323 124 69 324 123 71 325 127 70 326 126 70 327 126 68 328 122 69 329 123 71 330 127 73 331 129 72 332 128 72 333 128 70 334 126 71 335 127 73 336 129 60 337 114 61 338 115 61 339 115 72 340 128 73 341 129 61 342 132 58 343 131 74 344 130 74 345 130 75 346 133 61 347 132 58 348 131 62 349 135 76 350 134 76 351 134 74 352 130 58 353 131 62 354 135 64 355 137 77 356 136 77 357 136 76 358 134 62 359 135 64 360 137 66 361 139 78 362 138 78 363 138 77 364 136 64 365 137 66 366 139 68 367 141 79 368 140 79 369 140 78 370 138 66 371 139 68 372 141 70 373 143 80 374 142 80 375 142 79 376 140 68 377 141 70 378 143 72 379 145 81 380 144 81 381 144 80 382 142 70 383 143 72 384 145 61 385 132 75 386 133 75 387 133 81 388 144 72 389 145 75 390 148 74 391 147 82 392 146 82 393 146 83 394 149 75 395 148 74 396 147 76 397 151 84 398 150 84 399 150 82 400 146 74 401 147 76 402 151 77 403 153 85 404 152 85 405 152 84 406 150 76 407 151 77 408 153 78 409 155 86 410 154 86 411 154 85 412 152 77 413 153 78 414 158 79 415 157 87 416 156 87 417 156 86 418 159 78 419 158 79 420 157 80 421 161 88 422 160 88 423 160 87 424 156 79 425 157 80 426 161 81 427 163 89 428 162 89 429 162 88 430 160 80 431 161 81 432 163 75 433 148 83 434 149 83 435 149 89 436 162 81 437 163 60 438 166 91 439 165 90 440 164 90 441 164 59 442 167 60 443 166 59 444 167 90 445 164 92 446 168 92 447 168 63 448 169 59 449 167 63 450 169 92 451 168 93 452 170 93 453 170 65 454 171 63 455 169 65 456 171 93 457 170 94 458 172 94 459 172 67 460 173 65 461 171 67 462 173 94 463 172 95 464 174 95 465 174 69 466 175 67 467 173 69 468 175 95 469 174 96 470 176 96 471 176 71 472 177 69 473 175 71 474 177 96 475 176 97 476 178 97 477 178 73 478 179 71 479 177 73 480 179 97 481 178 91 482 165 91 483 165 60 484 166 73 485 179 91 486 182 99 487 181 98 488 180 98 489 180 90 490 183 91 491 182 90 492 183 98 493 180 100 494 184 100 495 184 92 496 185 90 497 183 92 498 185 100 499 184 101 500 186 101 501 186 93 502 187 92 503 185 93 504 187 101 505 186 102 506 188 102 507 188 94 508 189 93 509 187 94 510 192 102 511 191 103 512 190 103 513 190 95 514 193 94 515 192 95 516 193 103 517 190 104 518 194 104 519 194 96 520 195 95 521 193 96 522 195 104 523 194 105 524 196 105 525 196 97 526 197 96 527 195 97 528 197 105 529 196 99 530 181 99 531 181 91 532 182 97 533 197 99 534 200 105 535 199 104 536 198 104 537 198 102 538 201 99 539 200 104 540 198 103 541 202 102 542 201 102 543 201 101 544 204 100 545 203 100 546 203 99 547 200 102 548 201 98 549 205 99 550 200 100 551 203 82 552 208 107 553 207 106 554 206 106 555 206 83 556 209 82 557 208 84 558 211 108 559 210 107 560 207 107 561 207 82 562 208 84 563 211 85 564 213 109 565 212 108 566 210 108 567 210 84 568 211 85 569 213 86 570 215 110 571 214 109 572 212 109 573 212 85 574 213 86 575 215 87 576 217 111 577 216 110 578 214 110 579 214 86 580 215 87 581 217 88 582 219 112 583 218 111 584 216 111 585 216 87 586 217 88 587 219 89 588 221 113 589 220 112 590 218 112 591 218 88 592 219 89 593 221 83 594 209 106 595 206 113 596 220 113 597 220 89 598 221 83 599 209 107 600 224 115 601 223 114 602 222 114 603 222 106 604 225 107 605 224 108 606 227 116 607 226 115 608 223 115 609 223 107 610 224 108 611 227 109 612 229 117 613 228 116 614 226 116 615 226 108 616 227 109 617 229 110 618 231 118 619 230 117 620 228 117 621 228 109 622 229 110 623 231 111 624 234 119 625 233 118 626 232 118 627 232 110 628 235 111 629 234 112 630 237 120 631 236 119 632 233 119 633 233 111 634 234 112 635 237 113 636 239 121 637 238 120 638 236 120 639 236 112 640 237 113 641 239 106 642 225 114 643 222 121 644 238 121 645 238 113 646 239 106 647 225 115 648 242 116 649 241 117 650 240 117 651 240 119 652 243 115 653 242 117 654 240 118 655 244 119 656 243 119 657 243 120 658 246 121 659 245 121 660 245 115 661 242 119 662 243 114 663 247 115 664 242 121 665 245 124 666 250 123 667 249 122 668 248 122 669 248 125 670 251 124 671 250 123 672 249 127 673 253 126 674 252 126 675 252 122 676 248 123 677 249 127 678 253 129 679 255 128 680 254 128 681 254 126 682 252 127 683 253 129 684 255 131 685 257 130 686 256 130 687 256 128 688 254 129 689 255 131 690 260 133 691 259 132 692 258 132 693 258 130 694 261 131 695 260 133 696 259 135 697 263 134 698 262 134 699 262 132 700 258 133 701 259 135 702 263 137 703 265 136 704 264 136 705 264 134 706 262 135 707 263 137 708 265 124 709 250 125 710 251 125 711 251 136 712 264 137 713 265 124 714 268 137 715 267 135 716 266 135 717 266 131 718 269 124 719 268 135 720 266 133 721 270 131 722 269 131 723 269 129 724 272 127 725 271 127 726 271 124 727 268 131 728 269 123 729 273 124 730 268 127 731 271 125 732 276 122 733 275 126 734 274 126 735 274 134 736 277 125 737 276 126 738 274 128 739 279 130 740 278 130 741 278 134 742 277 126 743 274 130 744 278 132 745 280 134 746 277 125 747 276 134 748 277 136 749 281</p></triangles>
1266
+ </mesh>
1267
+ </geometry>
1268
+ </library_geometries>
1269
+ <library_visual_scenes>
1270
+ <visual_scene id="r_clav" name="r_clav">
1271
+ <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_clav_node" id="r_clav_node" sid="r_clav_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_clav" id="drc_r_clav" sid="drc_r_clav"><matrix sid="matrix">1.000000 0.000000 0.000000 0.000000 0.000000 0.500000 0.866025 0.000000 0.000000 -0.866025 0.500000 0.000000 0.000000 0.000000 0.000000 1.000000</matrix><instance_geometry url="#drc_r_clav-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>
1272
+ <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>
1273
+ </visual_scene>
1274
+ </library_visual_scenes>
1275
+ <scene>
1276
+ <instance_visual_scene url="#r_clav"></instance_visual_scene>
1277
+ </scene>
1278
+ </COLLADA>