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,1330 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <COLLADA xmlns="http://www.collada.org/2005/11/COLLADASchema" version="1.4.1">
3
+ <asset>
4
+ <contributor>
5
+ <author></author>
6
+ <authoring_tool>FBX COLLADA exporter</authoring_tool>
7
+ <comments></comments>
8
+ </contributor>
9
+ <created>2013-04-12T18:22:33Z</created>
10
+ <keywords></keywords>
11
+ <modified>2013-04-12T18:22:33Z</modified>
12
+ <revision></revision>
13
+ <subject></subject>
14
+ <title></title>
15
+ <unit meter="1.000000" name="centimeter"></unit>
16
+ <up_axis>Z_UP</up_axis>
17
+ </asset>
18
+ <library_images>
19
+ <image id="drc_extremities_diffuse-image" name="drc_extremities_diffuse">
20
+ <init_from>../materials/textures/drc_extremities_diffuse.jpg</init_from>
21
+ </image>
22
+ </library_images>
23
+ <library_materials>
24
+ <material id="drc_extremities_diffuse" name="drc_extremities_diffuse">
25
+ <instance_effect url="#drc_extremities_diffuse-fx"/>
26
+ </material>
27
+ </library_materials>
28
+ <library_effects>
29
+ <effect id="drc_extremities_diffuse-fx" name="drc_extremities_diffuse">
30
+ <profile_COMMON>
31
+ <technique sid="standard">
32
+ <phong>
33
+ <emission>
34
+ <color sid="emission">0.000000 0.000000 0.000000 1.000000</color>
35
+ </emission>
36
+ <ambient>
37
+ <color sid="ambient">0.588235 0.588235 0.588235 1.000000</color>
38
+ </ambient>
39
+ <diffuse>
40
+ <texture texture="drc_extremities_diffuse-image" texcoord="CHANNEL0">
41
+ <extra>
42
+ <technique profile="MAYA">
43
+ <wrapU sid="wrapU0">TRUE</wrapU>
44
+ <wrapV sid="wrapV0">TRUE</wrapV>
45
+ <blend_mode>ADD</blend_mode>
46
+ </technique>
47
+ </extra>
48
+ </texture>
49
+ </diffuse>
50
+ <specular>
51
+ <color sid="specular">0.000000 0.000000 0.000000 1.000000</color>
52
+ </specular>
53
+ <shininess>
54
+ <float sid="shininess">2.000000</float>
55
+ </shininess>
56
+ <reflective>
57
+ <color sid="reflective">0.000000 0.000000 0.000000 1.000000</color>
58
+ </reflective>
59
+ <reflectivity>
60
+ <float sid="reflectivity">1.000000</float>
61
+ </reflectivity>
62
+ <transparent opaque="RGB_ZERO">
63
+ <color sid="transparent">1.000000 1.000000 1.000000 1.000000</color>
64
+ </transparent>
65
+ <transparency>
66
+ <float sid="transparency">0.000000</float>
67
+ </transparency>
68
+ </phong>
69
+ </technique>
70
+ </profile_COMMON>
71
+ </effect>
72
+ </library_effects>
73
+ <library_geometries>
74
+ <geometry id="drc_l_foot-lib" name="drc_l_footMesh">
75
+ <mesh>
76
+ <source id="drc_l_foot-POSITION">
77
+ <float_array id="drc_l_foot-POSITION-array" count="468">
78
+ 0.131388 0.065372 -0.066583
79
+ 0.131388 0.065372 -0.041109
80
+ -0.043186 0.065372 -0.041109
81
+ -0.044905 0.065372 -0.066583
82
+ 0.156255 0.055971 -0.066583
83
+ 0.175158 0.046570 -0.066583
84
+ 0.175158 0.046570 -0.053543
85
+ 0.156255 0.055971 -0.048792
86
+ -0.064920 0.043234 -0.019578
87
+ -0.069367 0.043234 -0.041109
88
+ -0.040457 0.065372 -0.019578
89
+ -0.069367 -0.013980 -0.041109
90
+ -0.069367 -0.013980 -0.066583
91
+ -0.069367 0.014627 -0.066583
92
+ -0.069367 0.014627 -0.041109
93
+ -0.042883 -0.064725 -0.041109
94
+ 0.131388 -0.064725 -0.041109
95
+ 0.131388 -0.064725 -0.066583
96
+ -0.044905 -0.064725 -0.066583
97
+ 0.169801 -0.045923 -0.040503
98
+ 0.175158 -0.045923 -0.053543
99
+ 0.156255 -0.055324 -0.048792
100
+ 0.148674 -0.055324 -0.030900
101
+ -0.069367 -0.042587 -0.041109
102
+ -0.064920 -0.042587 -0.019578
103
+ -0.040457 -0.064725 -0.019578
104
+ 0.156255 -0.018226 -0.066583
105
+ 0.175158 -0.015092 -0.066583
106
+ 0.175158 0.015739 -0.066583
107
+ 0.156255 0.018872 -0.066583
108
+ 0.193960 -0.010746 -0.056575
109
+ 0.193960 -0.010746 -0.046568
110
+ 0.193960 0.011392 -0.046568
111
+ 0.193960 0.011392 -0.056575
112
+ 0.175158 -0.015092 -0.040503
113
+ 0.156255 -0.018226 -0.030900
114
+ 0.156255 0.018872 -0.030900
115
+ 0.175158 0.015739 -0.040503
116
+ 0.193960 0.033631 -0.066583
117
+ 0.193960 0.033631 -0.056575
118
+ 0.148674 0.055971 -0.030900
119
+ 0.131388 0.065372 -0.019578
120
+ 0.193960 -0.032984 -0.046568
121
+ 0.193960 -0.032984 -0.056575
122
+ 0.156255 -0.055324 -0.066583
123
+ 0.131388 -0.021360 -0.066583
124
+ 0.131388 0.022006 -0.066583
125
+ 0.193960 0.011392 -0.066583
126
+ 0.193960 -0.010746 -0.066583
127
+ 0.141901 0.022006 -0.019578
128
+ 0.141901 -0.021360 -0.019578
129
+ -0.064920 0.014627 -0.019578
130
+ -0.064920 -0.013980 -0.019578
131
+ 0.169801 0.046570 -0.040503
132
+ -0.069367 0.043234 -0.066583
133
+ 0.131388 -0.064725 -0.019578
134
+ 0.175158 -0.045923 -0.066583
135
+ -0.069367 -0.042587 -0.066583
136
+ 0.193960 0.033631 -0.046568
137
+ 0.193960 -0.032984 -0.066583
138
+ -0.000326 0.050714 -0.013109
139
+ -0.000326 -0.051079 -0.013109
140
+ -0.005178 -0.055931 -0.013109
141
+ -0.040760 -0.051079 -0.013109
142
+ -0.035908 -0.055931 -0.013109
143
+ -0.040760 0.050714 -0.013109
144
+ -0.035908 0.055566 -0.013109
145
+ -0.005178 0.055566 -0.013109
146
+ -0.000326 0.050714 -0.025845
147
+ -0.000326 -0.051079 -0.025846
148
+ -0.005178 -0.055931 -0.025846
149
+ -0.035908 -0.055931 -0.025846
150
+ -0.040760 -0.051079 -0.025846
151
+ -0.040760 0.050714 -0.025845
152
+ -0.035908 0.055566 -0.025845
153
+ -0.005178 0.055566 -0.025845
154
+ 0.121280 0.051220 -0.017455
155
+ 0.121280 0.026959 -0.017455
156
+ 0.117944 0.023320 -0.017455
157
+ 0.083878 0.026959 -0.017455
158
+ 0.087214 0.023320 -0.017455
159
+ 0.083878 0.051220 -0.017455
160
+ 0.087214 0.054556 -0.017455
161
+ 0.117944 0.054556 -0.017455
162
+ 0.121280 0.051220 -0.024430
163
+ 0.121280 0.026959 -0.024430
164
+ 0.117944 0.023320 -0.024430
165
+ 0.087214 0.023320 -0.024430
166
+ 0.083878 0.026959 -0.024430
167
+ 0.083878 0.051220 -0.024430
168
+ 0.087214 0.054556 -0.024430
169
+ 0.117944 0.054556 -0.024430
170
+ 0.121280 -0.028638 -0.017455
171
+ 0.121280 -0.052898 -0.017455
172
+ 0.117944 -0.056234 -0.017455
173
+ 0.083878 -0.052898 -0.017455
174
+ 0.087214 -0.056234 -0.017455
175
+ 0.083878 -0.028638 -0.017455
176
+ 0.087214 -0.024898 -0.017455
177
+ 0.117944 -0.024898 -0.017455
178
+ 0.121280 -0.028638 -0.024430
179
+ 0.121280 -0.052898 -0.024430
180
+ 0.117944 -0.056234 -0.024430
181
+ 0.087214 -0.056234 -0.024430
182
+ 0.083878 -0.052898 -0.024430
183
+ 0.083878 -0.028638 -0.024430
184
+ 0.087214 -0.024898 -0.024430
185
+ 0.117944 -0.024898 -0.024430
186
+ 0.130579 0.016345 -0.014120
187
+ 0.130579 -0.019136 -0.014120
188
+ 0.127244 -0.023988 -0.014120
189
+ 0.093885 -0.019136 -0.014120
190
+ 0.097221 -0.023988 -0.014120
191
+ 0.093885 0.016345 -0.014120
192
+ 0.097221 0.021703 -0.014120
193
+ 0.127244 0.021703 -0.014120
194
+ 0.130579 0.016345 -0.021094
195
+ 0.130579 -0.019136 -0.021094
196
+ 0.127244 -0.023988 -0.021094
197
+ 0.097221 -0.023988 -0.021094
198
+ 0.093885 -0.019136 -0.021094
199
+ 0.093885 0.016345 -0.021094
200
+ 0.097221 0.021703 -0.021094
201
+ 0.127244 0.021703 -0.021094
202
+ 0.079632 0.051220 -0.017455
203
+ 0.079632 0.026959 -0.017455
204
+ 0.076196 0.023320 -0.017455
205
+ 0.006952 0.026959 -0.017455
206
+ 0.010288 0.023320 -0.017455
207
+ 0.006952 0.051220 -0.017455
208
+ 0.010288 0.054556 -0.017455
209
+ 0.076196 0.054556 -0.017455
210
+ 0.079632 0.051220 -0.024430
211
+ 0.079632 0.026959 -0.024430
212
+ 0.076196 0.023320 -0.024430
213
+ 0.010288 0.023320 -0.024430
214
+ 0.006952 0.026959 -0.024430
215
+ 0.006952 0.051220 -0.024430
216
+ 0.010288 0.054556 -0.024430
217
+ 0.076196 0.054556 -0.024430
218
+ 0.079632 -0.028638 -0.017455
219
+ 0.079632 -0.052898 -0.017455
220
+ 0.076196 -0.056234 -0.017455
221
+ 0.006952 -0.052898 -0.017455
222
+ 0.010288 -0.056234 -0.017455
223
+ 0.006952 -0.028638 -0.017455
224
+ 0.010288 -0.024898 -0.017455
225
+ 0.076196 -0.024898 -0.017455
226
+ 0.079632 -0.028638 -0.024430
227
+ 0.079632 -0.052898 -0.024430
228
+ 0.076196 -0.056234 -0.024430
229
+ 0.010288 -0.056234 -0.024430
230
+ 0.006952 -0.052898 -0.024430
231
+ 0.006952 -0.028638 -0.024430
232
+ 0.010288 -0.024898 -0.024430
233
+ 0.076196 -0.024898 -0.024430
234
+ </float_array>
235
+ <technique_common>
236
+ <accessor source="#drc_l_foot-POSITION-array" count="156" stride="3">
237
+ <param name="X" type="float"/>
238
+ <param name="Y" type="float"/>
239
+ <param name="Z" type="float"/>
240
+ </accessor>
241
+ </technique_common>
242
+ </source>
243
+ <source id="drc_l_foot-Normal0">
244
+ <float_array id="drc_l_foot-Normal0-array" count="2232">
245
+ -0.358477 0.932849 0.035882
246
+ 0.208624 0.977772 0.020935
247
+ 0.179739 0.983714 0.000000
248
+ 0.179739 0.983714 0.000000
249
+ -0.372697 0.927612 0.025142
250
+ -0.358477 0.932849 0.035882
251
+ 0.504107 0.859491 0.084568
252
+ 0.507366 0.861731 0.000000
253
+ 0.399961 0.916532 0.000001
254
+ 0.399961 0.916532 0.000001
255
+ 0.422985 0.901344 0.093076
256
+ 0.504107 0.859491 0.084568
257
+ -0.358477 0.932849 0.035882
258
+ -0.907601 0.409827 0.091121
259
+ -0.885877 0.430792 0.172163
260
+ -0.885877 0.430792 0.172163
261
+ -0.333613 0.941761 0.042289
262
+ -0.358477 0.932849 0.035882
263
+ -1.000000 -0.000001 -0.000000
264
+ -1.000000 -0.000001 -0.000000
265
+ -0.994817 -0.000001 0.101677
266
+ -0.994817 -0.000001 0.101677
267
+ -0.994817 -0.000000 0.101677
268
+ -1.000000 -0.000001 -0.000000
269
+ 0.179739 -0.983714 -0.000000
270
+ 0.208624 -0.977772 0.020934
271
+ -0.349655 -0.936020 0.040106
272
+ -0.349655 -0.936020 0.040106
273
+ -0.363820 -0.931316 0.016906
274
+ 0.179739 -0.983714 -0.000000
275
+ 0.422984 -0.901344 0.093075
276
+ 0.504107 -0.859491 0.084567
277
+ 0.482927 -0.852511 0.200019
278
+ 0.482927 -0.852511 0.200019
279
+ 0.441082 -0.888763 0.124686
280
+ 0.422984 -0.901344 0.093075
281
+ -0.885280 -0.432802 0.170183
282
+ -0.908417 -0.406718 0.096740
283
+ -0.349655 -0.936020 0.040106
284
+ -0.349655 -0.936020 0.040106
285
+ -0.336539 -0.940906 0.037920
286
+ -0.885280 -0.432802 0.170183
287
+ 0.000000 -0.000000 -1.000000
288
+ 0.000000 -0.000000 -1.000000
289
+ 0.000000 -0.000000 -1.000000
290
+ 0.000000 -0.000000 -1.000000
291
+ 0.000000 -0.000000 -1.000000
292
+ 0.000000 -0.000000 -1.000000
293
+ 1.000000 -0.000001 -0.000000
294
+ 1.000000 -0.000001 -0.000000
295
+ 1.000000 -0.000001 -0.000000
296
+ 1.000000 -0.000001 -0.000000
297
+ 1.000000 -0.000001 0.000000
298
+ 1.000000 -0.000001 -0.000000
299
+ 0.452924 -0.000001 0.891549
300
+ 0.452924 -0.000001 0.891549
301
+ 0.452924 -0.000001 0.891549
302
+ 0.452924 -0.000001 0.891549
303
+ 0.452924 -0.000001 0.891549
304
+ 0.452924 -0.000001 0.891549
305
+ 0.885128 0.465347 0.000000
306
+ 0.885128 0.465347 0.000000
307
+ 0.507366 0.861731 0.000000
308
+ 0.507366 0.861731 0.000000
309
+ 0.504107 0.859491 0.084568
310
+ 0.885128 0.465347 0.000000
311
+ 0.208624 0.977772 0.020935
312
+ 0.197107 0.980382 0.000000
313
+ 0.441082 0.888763 0.124686
314
+ 0.441082 0.888763 0.124686
315
+ 0.422985 0.901344 0.093076
316
+ 0.208624 0.977772 0.020935
317
+ 0.504107 -0.859491 0.084567
318
+ 0.885129 -0.465346 -0.000000
319
+ 0.863208 -0.503520 0.036597
320
+ 0.863208 -0.503520 0.036597
321
+ 0.482927 -0.852511 0.200019
322
+ 0.504107 -0.859491 0.084567
323
+ 0.422984 -0.901344 0.093075
324
+ 0.208624 -0.977772 0.020934
325
+ 0.179739 -0.983714 -0.000000
326
+ 0.179739 -0.983714 -0.000000
327
+ 0.399960 -0.916533 -0.000001
328
+ 0.422984 -0.901344 0.093075
329
+ 0.000000 -0.000000 -1.000000
330
+ 0.000000 -0.000000 -1.000000
331
+ 0.000000 -0.000000 -1.000000
332
+ -0.000000 0.000000 -1.000000
333
+ -0.000000 0.000000 -1.000000
334
+ -0.000000 0.000000 -1.000000
335
+ 0.000000 0.000000 -1.000000
336
+ 0.000000 0.000000 -1.000000
337
+ 0.000000 0.000000 -1.000000
338
+ 0.000000 0.000000 -1.000000
339
+ 0.000000 0.000000 -1.000000
340
+ 0.000000 0.000000 -1.000000
341
+ 0.307002 -0.000001 0.951709
342
+ 0.307002 -0.000001 0.951709
343
+ 0.307002 -0.000001 0.951709
344
+ 0.307002 -0.000001 0.951709
345
+ 0.307002 -0.000001 0.951709
346
+ 0.307002 -0.000001 0.951709
347
+ 0.619286 -0.000001 0.785165
348
+ 0.619286 -0.000001 0.785165
349
+ 0.619286 -0.000001 0.785165
350
+ 0.619287 -0.000000 0.785165
351
+ 0.619287 -0.000000 0.785165
352
+ 0.619287 -0.000000 0.785164
353
+ 0.000000 0.000000 -1.000000
354
+ 0.000000 0.000000 -1.000000
355
+ 0.000000 0.000000 -1.000000
356
+ 0.000000 0.000000 -1.000000
357
+ 0.000000 0.000000 -1.000000
358
+ 0.000000 0.000000 -1.000000
359
+ -0.000000 -0.000000 1.000000
360
+ -0.000000 -0.000000 1.000000
361
+ -0.000000 -0.000000 1.000000
362
+ -0.000000 -0.000000 1.000000
363
+ -0.000000 -0.000000 1.000000
364
+ -0.000000 -0.000000 1.000000
365
+ -0.358477 0.932849 0.035882
366
+ -0.333613 0.941761 0.042289
367
+ 0.197107 0.980382 0.000000
368
+ 0.197107 0.980382 0.000000
369
+ 0.208624 0.977772 0.020935
370
+ -0.358477 0.932849 0.035882
371
+ 0.422985 0.901344 0.093076
372
+ 0.441082 0.888763 0.124686
373
+ 0.482927 0.852510 0.200020
374
+ 0.482927 0.852510 0.200020
375
+ 0.504107 0.859491 0.084568
376
+ 0.422985 0.901344 0.093076
377
+ -0.358477 0.932849 0.035882
378
+ -0.372697 0.927612 0.025142
379
+ -0.909923 0.414653 0.010119
380
+ -0.909923 0.414653 0.010119
381
+ -0.907601 0.409827 0.091121
382
+ -0.358477 0.932849 0.035882
383
+ -0.994817 -0.000000 0.101677
384
+ -0.994817 -0.000001 0.101677
385
+ -0.979324 -0.000000 0.202300
386
+ -0.979324 -0.000000 0.202300
387
+ -0.979323 -0.000000 0.202301
388
+ -0.994817 -0.000000 0.101677
389
+ 0.208624 -0.977772 0.020934
390
+ 0.197107 -0.980382 -0.000000
391
+ -0.336539 -0.940906 0.037920
392
+ -0.336539 -0.940906 0.037920
393
+ -0.349655 -0.936020 0.040106
394
+ 0.208624 -0.977772 0.020934
395
+ 0.399960 -0.916533 -0.000001
396
+ 0.507366 -0.861731 -0.000000
397
+ 0.504107 -0.859491 0.084567
398
+ 0.504107 -0.859491 0.084567
399
+ 0.422984 -0.901344 0.093075
400
+ 0.399960 -0.916533 -0.000001
401
+ -0.908417 -0.406718 0.096740
402
+ -0.914055 -0.405590 -0.000000
403
+ -0.363820 -0.931316 0.016906
404
+ -0.363820 -0.931316 0.016906
405
+ -0.349655 -0.936020 0.040106
406
+ -0.908417 -0.406718 0.096740
407
+ 1.000000 -0.000001 0.000000
408
+ 1.000000 -0.000001 -0.000000
409
+ 1.000000 -0.000001 0.000000
410
+ 1.000000 -0.000001 0.000000
411
+ 1.000000 -0.000001 0.000000
412
+ 1.000000 -0.000001 0.000000
413
+ 0.504107 0.859491 0.084568
414
+ 0.482927 0.852510 0.200020
415
+ 0.863208 0.503520 0.036598
416
+ 0.863208 0.503520 0.036598
417
+ 0.885128 0.465347 0.000000
418
+ 0.504107 0.859491 0.084568
419
+ 0.422985 0.901344 0.093076
420
+ 0.399961 0.916532 0.000001
421
+ 0.179739 0.983714 0.000000
422
+ 0.179739 0.983714 0.000000
423
+ 0.208624 0.977772 0.020935
424
+ 0.422985 0.901344 0.093076
425
+ 0.507366 -0.861731 -0.000000
426
+ 0.885129 -0.465347 0.000000
427
+ 0.885129 -0.465346 -0.000000
428
+ 0.885129 -0.465346 -0.000000
429
+ 0.504107 -0.859491 0.084567
430
+ 0.507366 -0.861731 -0.000000
431
+ 0.441082 -0.888763 0.124686
432
+ 0.197107 -0.980382 -0.000000
433
+ 0.208624 -0.977772 0.020934
434
+ 0.208624 -0.977772 0.020934
435
+ 0.422984 -0.901344 0.093075
436
+ 0.441082 -0.888763 0.124686
437
+ -0.000000 -0.000000 1.000000
438
+ -0.000000 -0.000000 1.000000
439
+ -0.000000 -0.000000 1.000000
440
+ -0.000000 -0.000000 1.000000
441
+ -0.000000 -0.000000 1.000000
442
+ -0.000000 -0.000000 1.000000
443
+ -0.000000 -0.000001 1.000000
444
+ -0.000000 -0.000001 1.000000
445
+ -0.000000 -0.000001 1.000000
446
+ -0.000000 -0.000000 1.000000
447
+ -0.000000 -0.000000 1.000000
448
+ -0.000000 -0.000000 1.000000
449
+ -0.000000 -0.000000 1.000000
450
+ -0.000000 -0.000000 1.000000
451
+ -0.000000 -0.000000 1.000000
452
+ -0.000000 -0.000000 1.000000
453
+ -0.000000 -0.000000 1.000000
454
+ -0.000000 -0.000000 1.000000
455
+ 1.000000 0.000000 0.000000
456
+ 1.000000 0.000000 0.000000
457
+ 1.000000 0.000000 0.000000
458
+ 1.000000 0.000000 0.000000
459
+ 1.000000 0.000000 0.000000
460
+ 1.000000 0.000000 0.000000
461
+ 0.000000 -1.000000 0.000000
462
+ 0.000000 -1.000000 0.000000
463
+ 0.000000 -1.000000 0.000000
464
+ 0.000000 -1.000000 0.000000
465
+ 0.000000 -1.000000 0.000000
466
+ 0.000000 -1.000000 0.000000
467
+ -1.000000 -0.000000 0.000000
468
+ -1.000000 -0.000000 0.000000
469
+ -1.000000 -0.000000 0.000000
470
+ -1.000000 -0.000000 0.000000
471
+ -1.000000 -0.000000 0.000000
472
+ -1.000000 -0.000000 0.000000
473
+ -0.000000 1.000000 -0.000000
474
+ -0.000000 1.000000 -0.000000
475
+ -0.000000 1.000000 -0.000000
476
+ -0.000000 1.000000 0.000000
477
+ -0.000000 1.000000 0.000000
478
+ -0.000000 1.000000 0.000000
479
+ -0.000001 -0.000000 1.000000
480
+ -0.000001 -0.000000 1.000000
481
+ -0.000001 -0.000000 1.000000
482
+ -0.000000 -0.000000 1.000000
483
+ -0.000000 -0.000000 1.000000
484
+ -0.000000 -0.000000 1.000000
485
+ -0.000000 -0.000000 1.000000
486
+ -0.000000 -0.000000 1.000000
487
+ -0.000000 -0.000000 1.000000
488
+ -0.000000 -0.000000 1.000000
489
+ -0.000000 -0.000000 1.000000
490
+ -0.000000 -0.000000 1.000000
491
+ -0.000000 -0.000000 1.000000
492
+ -0.000000 -0.000000 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.000000 0.000000 1.000000
497
+ 1.000000 -0.000001 0.000001
498
+ 1.000000 -0.000001 0.000001
499
+ 1.000000 -0.000001 0.000001
500
+ 1.000000 -0.000001 0.000001
501
+ 1.000000 -0.000001 0.000001
502
+ 1.000000 -0.000001 0.000001
503
+ 0.000000 -1.000000 0.000001
504
+ 0.000000 -1.000000 0.000001
505
+ 0.000000 -1.000000 0.000001
506
+ 0.000000 -1.000000 0.000001
507
+ 0.000000 -1.000000 0.000001
508
+ 0.000000 -1.000000 0.000001
509
+ -1.000000 0.000000 -0.000001
510
+ -1.000000 0.000000 -0.000001
511
+ -1.000000 0.000000 -0.000001
512
+ -1.000000 0.000000 -0.000001
513
+ -1.000000 0.000000 -0.000001
514
+ -1.000000 0.000000 -0.000001
515
+ 0.000000 1.000000 0.000000
516
+ 0.000000 1.000000 0.000000
517
+ 0.000000 1.000000 0.000000
518
+ 0.000000 1.000000 0.000000
519
+ 0.000000 1.000000 0.000000
520
+ 0.000000 1.000000 0.000000
521
+ 0.737155 -0.675724 0.000001
522
+ 0.737155 -0.675724 0.000001
523
+ 0.737155 -0.675724 0.000001
524
+ 0.737154 -0.675724 0.000001
525
+ 0.737154 -0.675724 0.000001
526
+ 0.737154 -0.675724 0.000001
527
+ 0.707108 0.707106 0.000001
528
+ 0.707108 0.707106 0.000001
529
+ 0.707108 0.707106 0.000001
530
+ 0.707108 0.707106 0.000001
531
+ 0.707108 0.707106 0.000001
532
+ 0.707108 0.707106 0.000001
533
+ -0.737155 -0.675723 -0.000001
534
+ -0.737155 -0.675723 -0.000001
535
+ -0.737155 -0.675723 -0.000001
536
+ -0.737155 -0.675724 -0.000000
537
+ -0.737155 -0.675724 -0.000000
538
+ -0.737155 -0.675724 -0.000000
539
+ -0.707108 0.707106 -0.000001
540
+ -0.707108 0.707106 -0.000001
541
+ -0.707108 0.707106 -0.000001
542
+ -0.707108 0.707106 -0.000001
543
+ -0.707108 0.707106 -0.000001
544
+ -0.707108 0.707106 -0.000001
545
+ -0.000000 -0.000000 1.000000
546
+ -0.000000 -0.000000 1.000000
547
+ -0.000000 -0.000000 1.000000
548
+ -0.000000 -0.000000 1.000000
549
+ -0.000000 -0.000000 1.000000
550
+ -0.000000 -0.000000 1.000000
551
+ -0.000000 -0.000000 1.000000
552
+ -0.000000 -0.000000 1.000000
553
+ -0.000000 -0.000000 1.000000
554
+ 0.000000 -0.000000 1.000000
555
+ 0.000000 -0.000000 1.000000
556
+ 0.000000 -0.000000 1.000000
557
+ -0.000000 -0.000000 1.000000
558
+ -0.000000 -0.000000 1.000000
559
+ -0.000000 -0.000000 1.000000
560
+ -0.000000 0.000001 1.000000
561
+ -0.000000 0.000001 1.000000
562
+ -0.000000 0.000001 1.000000
563
+ 1.000000 -0.000001 0.000001
564
+ 1.000000 -0.000001 0.000001
565
+ 1.000000 -0.000001 0.000001
566
+ 1.000000 -0.000001 0.000001
567
+ 1.000000 -0.000001 0.000001
568
+ 1.000000 -0.000001 0.000001
569
+ -0.000000 -1.000000 -0.000000
570
+ -0.000000 -1.000000 -0.000000
571
+ -0.000000 -1.000000 -0.000000
572
+ -0.000000 -1.000000 -0.000000
573
+ -0.000000 -1.000000 -0.000000
574
+ -0.000000 -1.000000 -0.000000
575
+ -1.000000 0.000000 -0.000001
576
+ -1.000000 0.000000 -0.000001
577
+ -1.000000 0.000000 -0.000001
578
+ -1.000000 0.000000 -0.000001
579
+ -1.000000 0.000000 -0.000001
580
+ -1.000000 0.000000 -0.000001
581
+ -0.000000 1.000000 -0.000001
582
+ -0.000000 1.000000 -0.000001
583
+ -0.000000 1.000000 -0.000001
584
+ -0.000000 1.000000 -0.000001
585
+ -0.000000 1.000000 -0.000001
586
+ -0.000000 1.000000 -0.000001
587
+ 0.707110 -0.707104 0.000001
588
+ 0.707110 -0.707104 0.000001
589
+ 0.707110 -0.707104 0.000001
590
+ 0.707110 -0.707104 0.000001
591
+ 0.707110 -0.707104 0.000001
592
+ 0.707110 -0.707104 0.000001
593
+ 0.746296 0.665614 0.000000
594
+ 0.746296 0.665614 0.000000
595
+ 0.746296 0.665614 0.000000
596
+ 0.746296 0.665614 0.000000
597
+ 0.746296 0.665614 0.000000
598
+ 0.746296 0.665614 0.000000
599
+ -0.707108 -0.707106 -0.000001
600
+ -0.707108 -0.707106 -0.000001
601
+ -0.707108 -0.707106 -0.000001
602
+ -0.707108 -0.707106 -0.000001
603
+ -0.707108 -0.707106 -0.000001
604
+ -0.707108 -0.707106 -0.000001
605
+ -0.746296 0.665614 -0.000001
606
+ -0.746296 0.665614 -0.000001
607
+ -0.746296 0.665614 -0.000001
608
+ -0.746296 0.665614 -0.000001
609
+ -0.746296 0.665614 -0.000001
610
+ -0.746296 0.665614 -0.000001
611
+ -0.000001 -0.000000 1.000000
612
+ -0.000001 -0.000000 1.000000
613
+ -0.000001 -0.000000 1.000000
614
+ -0.000000 -0.000000 1.000000
615
+ -0.000000 -0.000000 1.000000
616
+ -0.000000 -0.000000 1.000000
617
+ -0.000000 -0.000000 1.000000
618
+ -0.000000 -0.000000 1.000000
619
+ -0.000000 -0.000000 1.000000
620
+ -0.000001 -0.000000 1.000000
621
+ -0.000001 -0.000000 1.000000
622
+ -0.000001 -0.000000 1.000000
623
+ -0.000000 -0.000000 1.000000
624
+ -0.000000 -0.000000 1.000000
625
+ -0.000000 -0.000000 1.000000
626
+ -0.000000 -0.000000 1.000000
627
+ -0.000000 -0.000000 1.000000
628
+ -0.000000 -0.000000 1.000000
629
+ 1.000000 0.000000 0.000000
630
+ 1.000000 0.000000 0.000000
631
+ 1.000000 0.000000 0.000000
632
+ 1.000000 0.000000 0.000000
633
+ 1.000000 0.000000 0.000000
634
+ 1.000000 0.000000 0.000000
635
+ 0.000000 -1.000000 -0.000000
636
+ 0.000000 -1.000000 -0.000000
637
+ 0.000000 -1.000000 -0.000000
638
+ 0.000000 -1.000000 -0.000000
639
+ 0.000000 -1.000000 -0.000000
640
+ 0.000000 -1.000000 -0.000000
641
+ -1.000000 -0.000001 -0.000000
642
+ -1.000000 -0.000001 -0.000000
643
+ -1.000000 -0.000001 -0.000000
644
+ -1.000000 -0.000001 -0.000000
645
+ -1.000000 -0.000001 -0.000000
646
+ -1.000000 -0.000001 -0.000000
647
+ -0.000000 1.000000 0.000000
648
+ -0.000000 1.000000 0.000000
649
+ -0.000000 1.000000 0.000000
650
+ -0.000000 1.000000 0.000000
651
+ -0.000000 1.000000 0.000000
652
+ -0.000000 1.000000 0.000000
653
+ 0.824041 -0.566529 -0.000000
654
+ 0.824041 -0.566529 -0.000000
655
+ 0.824041 -0.566529 -0.000000
656
+ 0.824041 -0.566529 -0.000000
657
+ 0.824042 -0.566529 -0.000000
658
+ 0.824041 -0.566529 -0.000000
659
+ 0.848897 0.528559 0.000000
660
+ 0.848897 0.528559 0.000000
661
+ 0.848897 0.528559 0.000000
662
+ 0.848897 0.528559 0.000000
663
+ 0.848897 0.528559 0.000000
664
+ 0.848897 0.528559 0.000000
665
+ -0.824043 -0.566528 -0.000000
666
+ -0.824043 -0.566528 -0.000000
667
+ -0.824043 -0.566528 -0.000000
668
+ -0.824043 -0.566528 -0.000000
669
+ -0.824043 -0.566528 -0.000000
670
+ -0.824043 -0.566528 -0.000000
671
+ -0.848897 0.528559 0.000000
672
+ -0.848897 0.528559 0.000000
673
+ -0.848897 0.528559 0.000000
674
+ -0.848897 0.528559 0.000000
675
+ -0.848897 0.528559 0.000000
676
+ -0.848897 0.528559 0.000000
677
+ 0.707107 -0.707107 0.000000
678
+ 0.707107 -0.707107 0.000000
679
+ 0.707107 -0.707107 0.000000
680
+ 0.707107 -0.707107 0.000000
681
+ 0.707107 -0.707107 0.000000
682
+ 0.707107 -0.707107 0.000000
683
+ 0.707107 0.707107 0.000000
684
+ 0.707107 0.707107 0.000000
685
+ 0.707107 0.707107 0.000000
686
+ 0.707107 0.707107 0.000000
687
+ 0.707107 0.707107 0.000000
688
+ 0.707107 0.707107 0.000000
689
+ -0.707106 -0.707108 0.000000
690
+ -0.707106 -0.707108 0.000000
691
+ -0.707106 -0.707108 0.000000
692
+ -0.707106 -0.707108 0.000000
693
+ -0.707106 -0.707108 0.000000
694
+ -0.707106 -0.707108 0.000000
695
+ -0.707108 0.707106 0.000000
696
+ -0.707108 0.707106 0.000000
697
+ -0.707108 0.707106 0.000000
698
+ -0.707108 0.707106 0.000000
699
+ -0.707108 0.707106 0.000000
700
+ -0.707108 0.707106 0.000000
701
+ -1.000000 -0.000001 -0.000000
702
+ -0.914055 -0.405590 -0.000000
703
+ -0.908417 -0.406718 0.096740
704
+ -0.908417 -0.406718 0.096740
705
+ -0.994817 -0.000001 0.101677
706
+ -1.000000 -0.000001 -0.000000
707
+ -0.994817 -0.000000 0.101677
708
+ -0.907601 0.409827 0.091121
709
+ -0.909923 0.414653 0.010119
710
+ -0.909923 0.414653 0.010119
711
+ -1.000000 -0.000001 -0.000000
712
+ -0.994817 -0.000000 0.101677
713
+ 0.000000 0.000000 -1.000000
714
+ 0.000000 0.000000 -1.000000
715
+ 0.000000 0.000000 -1.000000
716
+ 0.000000 0.000000 -1.000000
717
+ 0.000000 0.000000 -1.000000
718
+ 0.000000 0.000000 -1.000000
719
+ 0.000001 0.000001 -1.000000
720
+ 0.000001 0.000001 -1.000000
721
+ 0.000001 0.000001 -1.000000
722
+ 0.000001 0.000001 -1.000000
723
+ 0.000001 0.000001 -1.000000
724
+ 0.000001 0.000001 -1.000000
725
+ 1.000000 -0.000001 -0.000000
726
+ 0.863208 -0.503520 0.036597
727
+ 0.885129 -0.465346 -0.000000
728
+ 0.885129 -0.465346 -0.000000
729
+ 1.000000 -0.000001 -0.000000
730
+ 1.000000 -0.000001 -0.000000
731
+ 1.000000 -0.000001 0.000000
732
+ 0.885128 0.465347 0.000000
733
+ 0.863208 0.503520 0.036598
734
+ 0.863208 0.503520 0.036598
735
+ 1.000000 -0.000001 -0.000000
736
+ 1.000000 -0.000001 0.000000
737
+ 0.445367 -0.091015 0.890710
738
+ 0.445367 -0.091015 0.890710
739
+ 0.445367 -0.091015 0.890710
740
+ 0.462009 -0.080284 0.883234
741
+ 0.462009 -0.080284 0.883234
742
+ 0.462009 -0.080284 0.883234
743
+ 0.445367 0.091015 0.890710
744
+ 0.445367 0.091015 0.890710
745
+ 0.445367 0.091015 0.890710
746
+ 0.462009 0.080284 0.883234
747
+ 0.462009 0.080284 0.883234
748
+ 0.462009 0.080284 0.883234
749
+ 0.000000 0.000000 -1.000000
750
+ 0.000000 0.000000 -1.000000
751
+ 0.000000 0.000000 -1.000000
752
+ 0.000000 0.000000 -1.000000
753
+ 0.000000 0.000000 -1.000000
754
+ 0.000000 0.000000 -1.000000
755
+ -0.000000 0.000001 -1.000000
756
+ -0.000000 0.000001 -1.000000
757
+ -0.000000 0.000001 -1.000000
758
+ -0.000000 0.000001 -1.000000
759
+ -0.000000 0.000001 -1.000000
760
+ -0.000000 0.000001 -1.000000
761
+ -0.000000 0.000001 -1.000000
762
+ -0.000000 0.000001 -1.000000
763
+ -0.000000 0.000001 -1.000000
764
+ 0.000000 0.000000 -1.000000
765
+ 0.000000 0.000000 -1.000000
766
+ 0.000000 0.000000 -1.000000
767
+ -0.000000 0.000000 -1.000000
768
+ -0.000000 0.000000 -1.000000
769
+ -0.000000 0.000000 -1.000000
770
+ -0.000000 0.000000 -1.000000
771
+ -0.000000 0.000000 -1.000000
772
+ -0.000000 0.000000 -1.000000
773
+ 0.266489 -0.046308 0.962725
774
+ 0.266489 -0.046308 0.962725
775
+ 0.266489 -0.046308 0.962725
776
+ 0.307002 -0.000001 0.951709
777
+ 0.307002 -0.000001 0.951709
778
+ 0.307002 -0.000001 0.951709
779
+ 0.266488 0.046308 0.962725
780
+ 0.266488 0.046308 0.962725
781
+ 0.266488 0.046308 0.962725
782
+ 0.307002 -0.000000 0.951709
783
+ 0.307002 -0.000000 0.951709
784
+ 0.307002 -0.000000 0.951709
785
+ 0.595947 0.144472 0.789921
786
+ 0.595947 0.144472 0.789921
787
+ 0.595947 0.144472 0.789921
788
+ 0.631322 0.129016 0.764714
789
+ 0.631321 0.129016 0.764714
790
+ 0.631321 0.129016 0.764714
791
+ 0.595947 -0.144473 0.789921
792
+ 0.595947 -0.144473 0.789921
793
+ 0.595947 -0.144473 0.789921
794
+ 0.631322 -0.129016 0.764714
795
+ 0.631322 -0.129016 0.764714
796
+ 0.631322 -0.129016 0.764714
797
+ 0.000000 0.000000 -1.000000
798
+ 0.000000 0.000000 -1.000000
799
+ 0.000000 0.000000 -1.000000
800
+ 0.000000 0.000000 -1.000000
801
+ 0.000000 0.000000 -1.000000
802
+ 0.000000 0.000000 -1.000000
803
+ 0.000000 0.000000 -1.000000
804
+ 0.000000 0.000000 -1.000000
805
+ 0.000000 0.000000 -1.000000
806
+ -0.000000 0.000001 -1.000000
807
+ -0.000000 0.000001 -1.000000
808
+ -0.000000 0.000001 -1.000000
809
+ 0.000000 0.000001 -1.000000
810
+ 0.000000 0.000001 -1.000000
811
+ 0.000000 0.000001 -1.000000
812
+ 0.000000 0.000001 -1.000000
813
+ 0.000000 0.000001 -1.000000
814
+ 0.000000 0.000001 -1.000000
815
+ -0.000000 -0.000000 1.000000
816
+ -0.000000 -0.000000 1.000000
817
+ -0.000000 -0.000000 1.000000
818
+ -0.000000 -0.000000 1.000000
819
+ -0.000000 -0.000000 1.000000
820
+ -0.000000 -0.000000 1.000000
821
+ -0.000000 -0.000000 1.000000
822
+ -0.000000 -0.000000 1.000000
823
+ -0.000000 -0.000000 1.000000
824
+ 0.000000 -0.000000 1.000000
825
+ 0.000000 -0.000000 1.000000
826
+ 0.000000 -0.000000 1.000000
827
+ -0.000000 -0.000000 1.000000
828
+ -0.000000 -0.000000 1.000000
829
+ -0.000000 -0.000000 1.000000
830
+ -0.000000 -0.000000 1.000000
831
+ -0.000000 -0.000000 1.000000
832
+ -0.000000 -0.000000 1.000000
833
+ -0.994817 -0.000001 0.101677
834
+ -0.908417 -0.406718 0.096740
835
+ -0.885280 -0.432802 0.170183
836
+ -0.885280 -0.432802 0.170183
837
+ -0.979324 -0.000000 0.202300
838
+ -0.994817 -0.000001 0.101677
839
+ -0.979323 -0.000000 0.202301
840
+ -0.885877 0.430792 0.172163
841
+ -0.907601 0.409827 0.091121
842
+ -0.907601 0.409827 0.091121
843
+ -0.994817 -0.000000 0.101677
844
+ -0.979323 -0.000000 0.202301
845
+ 1.000000 -0.000001 -0.000000
846
+ 0.885129 -0.465346 -0.000000
847
+ 0.885129 -0.465347 0.000000
848
+ 0.885129 -0.465347 0.000000
849
+ 1.000000 -0.000001 0.000000
850
+ 1.000000 -0.000001 -0.000000
851
+ 1.000000 -0.000001 0.000000
852
+ 0.885128 0.465347 0.000000
853
+ 0.885128 0.465347 0.000000
854
+ 0.885128 0.465347 0.000000
855
+ 1.000000 -0.000001 0.000000
856
+ 1.000000 -0.000001 0.000000
857
+ 0.000001 -0.000000 1.000000
858
+ 0.000001 -0.000000 1.000000
859
+ 0.000001 -0.000000 1.000000
860
+ -0.000000 -0.000000 1.000000
861
+ -0.000000 -0.000000 1.000000
862
+ -0.000000 -0.000000 1.000000
863
+ -0.000000 -0.000001 1.000000
864
+ -0.000000 -0.000001 1.000000
865
+ -0.000000 -0.000001 1.000000
866
+ 0.000000 -0.000000 1.000000
867
+ 0.000000 -0.000000 1.000000
868
+ 0.000000 -0.000000 1.000000
869
+ -0.000000 -0.000000 1.000000
870
+ -0.000000 -0.000000 1.000000
871
+ -0.000000 -0.000000 1.000000
872
+ -0.000000 -0.000001 1.000000
873
+ -0.000000 -0.000001 1.000000
874
+ -0.000000 -0.000001 1.000000
875
+ 1.000000 -0.000000 0.000001
876
+ 1.000000 -0.000000 0.000001
877
+ 1.000000 -0.000000 0.000001
878
+ 1.000000 -0.000000 0.000001
879
+ 1.000000 -0.000000 0.000001
880
+ 1.000000 -0.000000 0.000001
881
+ -0.000000 -1.000000 0.000001
882
+ -0.000000 -1.000000 0.000001
883
+ -0.000000 -1.000000 0.000001
884
+ -0.000000 -1.000000 0.000001
885
+ -0.000000 -1.000000 0.000001
886
+ -0.000000 -1.000000 0.000001
887
+ -1.000000 0.000000 -0.000001
888
+ -1.000000 0.000000 -0.000001
889
+ -1.000000 0.000000 -0.000001
890
+ -1.000000 0.000000 -0.000000
891
+ -1.000000 0.000000 -0.000000
892
+ -1.000000 0.000000 -0.000000
893
+ -0.000000 1.000000 -0.000000
894
+ -0.000000 1.000000 -0.000000
895
+ -0.000000 1.000000 -0.000000
896
+ -0.000000 1.000000 -0.000000
897
+ -0.000000 1.000000 -0.000000
898
+ -0.000000 1.000000 -0.000000
899
+ 0.727015 -0.686622 0.000001
900
+ 0.727015 -0.686622 0.000001
901
+ 0.727015 -0.686622 0.000001
902
+ 0.727014 -0.686622 0.000001
903
+ 0.727014 -0.686622 0.000001
904
+ 0.727014 -0.686622 0.000001
905
+ 0.696477 0.717579 0.000001
906
+ 0.696477 0.717579 0.000001
907
+ 0.696477 0.717579 0.000001
908
+ 0.696477 0.717579 0.000001
909
+ 0.696477 0.717579 0.000001
910
+ 0.696477 0.717579 0.000001
911
+ -0.737154 -0.675725 -0.000000
912
+ -0.737154 -0.675725 -0.000000
913
+ -0.737154 -0.675725 -0.000000
914
+ -0.737154 -0.675725 0.000000
915
+ -0.737154 -0.675725 0.000000
916
+ -0.737154 -0.675725 0.000000
917
+ -0.707107 0.707106 -0.000000
918
+ -0.707107 0.707106 -0.000000
919
+ -0.707107 0.707106 -0.000000
920
+ -0.707107 0.707107 -0.000001
921
+ -0.707107 0.707107 -0.000001
922
+ -0.707107 0.707107 -0.000001
923
+ 0.000001 -0.000000 1.000000
924
+ 0.000001 -0.000000 1.000000
925
+ 0.000001 -0.000000 1.000000
926
+ -0.000000 -0.000000 1.000000
927
+ -0.000000 -0.000000 1.000000
928
+ -0.000000 -0.000000 1.000000
929
+ -0.000000 -0.000000 1.000000
930
+ -0.000000 -0.000000 1.000000
931
+ -0.000000 -0.000000 1.000000
932
+ 0.000001 -0.000000 1.000000
933
+ 0.000001 -0.000000 1.000000
934
+ 0.000001 -0.000000 1.000000
935
+ -0.000000 -0.000000 1.000000
936
+ -0.000000 -0.000000 1.000000
937
+ -0.000000 -0.000000 1.000000
938
+ -0.000000 0.000000 1.000000
939
+ -0.000000 0.000000 1.000000
940
+ -0.000000 0.000000 1.000000
941
+ 1.000000 -0.000000 0.000001
942
+ 1.000000 -0.000000 0.000001
943
+ 1.000000 -0.000000 0.000001
944
+ 1.000000 -0.000000 0.000001
945
+ 1.000000 -0.000000 0.000001
946
+ 1.000000 -0.000000 0.000001
947
+ 0.000000 -1.000000 0.000000
948
+ 0.000000 -1.000000 0.000000
949
+ 0.000000 -1.000000 0.000000
950
+ 0.000000 -1.000000 0.000000
951
+ 0.000000 -1.000000 0.000000
952
+ 0.000000 -1.000000 0.000000
953
+ -1.000000 0.000000 -0.000000
954
+ -1.000000 0.000000 -0.000000
955
+ -1.000000 0.000000 -0.000000
956
+ -1.000000 0.000000 -0.000000
957
+ -1.000000 0.000000 -0.000000
958
+ -1.000000 0.000000 -0.000000
959
+ -0.000000 1.000000 -0.000001
960
+ -0.000000 1.000000 -0.000001
961
+ -0.000000 1.000000 -0.000001
962
+ -0.000000 1.000000 -0.000001
963
+ -0.000000 1.000000 -0.000001
964
+ -0.000000 1.000000 -0.000001
965
+ 0.696477 -0.717579 0.000001
966
+ 0.696477 -0.717579 0.000001
967
+ 0.696477 -0.717579 0.000001
968
+ 0.696477 -0.717579 0.000001
969
+ 0.696477 -0.717579 0.000001
970
+ 0.696477 -0.717579 0.000001
971
+ 0.736327 0.676625 0.000000
972
+ 0.736327 0.676625 0.000000
973
+ 0.736327 0.676626 0.000000
974
+ 0.736327 0.676625 0.000000
975
+ 0.736327 0.676626 0.000000
976
+ 0.736327 0.676625 0.000000
977
+ -0.707107 -0.707106 -0.000000
978
+ -0.707107 -0.707106 -0.000000
979
+ -0.707107 -0.707106 -0.000000
980
+ -0.707107 -0.707107 -0.000000
981
+ -0.707107 -0.707107 -0.000000
982
+ -0.707107 -0.707107 -0.000000
983
+ -0.746296 0.665614 0.000000
984
+ -0.746296 0.665614 0.000000
985
+ -0.746296 0.665614 0.000000
986
+ -0.746295 0.665615 -0.000001
987
+ -0.746295 0.665615 -0.000001
988
+ -0.746295 0.665615 -0.000001
989
+ </float_array>
990
+ <technique_common>
991
+ <accessor source="#drc_l_foot-Normal0-array" count="744" stride="3">
992
+ <param name="X" type="float"/>
993
+ <param name="Y" type="float"/>
994
+ <param name="Z" type="float"/>
995
+ </accessor>
996
+ </technique_common>
997
+ </source>
998
+ <source id="drc_l_foot-UV0">
999
+ <float_array id="drc_l_foot-UV0-array" count="524">
1000
+ 0.814483 0.958286
1001
+ 0.817892 0.863676
1002
+ 0.820272 0.984338
1003
+ 0.818160 0.972819
1004
+ 0.818180 0.845310
1005
+ 0.816465 0.814581
1006
+ 0.817320 0.830035
1007
+ 0.849178 0.824381
1008
+ 0.849020 0.918933
1009
+ 0.842245 0.944760
1010
+ 0.844795 0.933323
1011
+ 0.919625 0.828342
1012
+ 0.913608 0.827396
1013
+ 0.913527 0.817596
1014
+ 0.919527 0.816551
1015
+ 0.840902 0.969212
1016
+ 0.841027 0.981224
1017
+ 0.962422 0.860970
1018
+ 0.964148 0.872452
1019
+ 0.943945 0.872497
1020
+ 0.945625 0.861006
1021
+ 0.840772 0.957143
1022
+ 0.927537 0.829273
1023
+ 0.927421 0.815489
1024
+ 0.942392 0.882372
1025
+ 0.965743 0.882320
1026
+ 0.872742 0.802095
1027
+ 0.885905 0.802118
1028
+ 0.887712 0.803986
1029
+ 0.887648 0.839744
1030
+ 0.885836 0.841551
1031
+ 0.872673 0.841528
1032
+ 0.870648 0.839714
1033
+ 0.870709 0.803957
1034
+ 0.915650 0.908293
1035
+ 0.902489 0.908109
1036
+ 0.900485 0.906270
1037
+ 0.900719 0.889599
1038
+ 0.902774 0.887818
1039
+ 0.915935 0.888003
1040
+ 0.917719 0.889838
1041
+ 0.917485 0.906509
1042
+ 0.874277 0.935542
1043
+ 0.874132 0.954792
1044
+ 0.872303 0.957411
1045
+ 0.856015 0.957288
1046
+ 0.854225 0.954642
1047
+ 0.854370 0.935392
1048
+ 0.856201 0.932498
1049
+ 0.872490 0.932622
1050
+ 0.848070 0.991807
1051
+ 0.848238 0.978645
1052
+ 0.850072 0.976695
1053
+ 0.866744 0.976906
1054
+ 0.868529 0.978904
1055
+ 0.868361 0.992065
1056
+ 0.866528 0.993852
1057
+ 0.849857 0.993640
1058
+ 0.891633 0.802833
1059
+ 0.904790 0.803272
1060
+ 0.906701 0.805202
1061
+ 0.905507 0.840940
1062
+ 0.903473 0.842683
1063
+ 0.890319 0.842244
1064
+ 0.888571 0.840375
1065
+ 0.889762 0.804636
1066
+ 0.888562 0.886037
1067
+ 0.888082 0.899188
1068
+ 0.884301 0.899056
1069
+ 0.884780 0.885899
1070
+ 0.887991 0.901898
1071
+ 0.884209 0.901775
1072
+ 0.886879 0.937630
1073
+ 0.883097 0.937525
1074
+ 0.886815 0.940295
1075
+ 0.883032 0.940215
1076
+ 0.886580 0.953446
1077
+ 0.882797 0.953386
1078
+ 0.886546 0.955997
1079
+ 0.882762 0.955953
1080
+ 0.886189 0.991750
1081
+ 0.882405 0.991713
1082
+ 0.882380 0.994312
1083
+ 0.886164 0.994349
1084
+ 0.881995 0.910336
1085
+ 0.881930 0.923485
1086
+ 0.878145 0.923478
1087
+ 0.878211 0.910303
1088
+ 0.881934 0.926033
1089
+ 0.878149 0.926050
1090
+ 0.882028 0.907672
1091
+ 0.878245 0.907611
1092
+ 0.882055 0.942699
1093
+ 0.878271 0.942728
1094
+ 0.882359 0.891013
1095
+ 0.878576 0.890931
1096
+ 0.878291 0.945287
1097
+ 0.882075 0.945259
1098
+ 0.882423 0.888343
1099
+ 0.878640 0.888247
1100
+ 0.882781 0.875188
1101
+ 0.878998 0.875085
1102
+ 0.921668 0.865863
1103
+ 0.866462 0.864329
1104
+ 0.863903 0.861625
1105
+ 0.864367 0.844958
1106
+ 0.867071 0.842400
1107
+ 0.922278 0.843934
1108
+ 0.924836 0.846639
1109
+ 0.924373 0.863305
1110
+ 0.795766 0.811862
1111
+ 0.795805 0.808139
1112
+ 0.802715 0.808211
1113
+ 0.802676 0.811934
1114
+ 0.802101 0.867158
1115
+ 0.795190 0.867088
1116
+ 0.802064 0.870878
1117
+ 0.795154 0.870812
1118
+ 0.801909 0.887550
1119
+ 0.794999 0.887484
1120
+ 0.801873 0.891274
1121
+ 0.794963 0.891204
1122
+ 0.801307 0.946499
1123
+ 0.794397 0.946429
1124
+ 0.801269 0.950221
1125
+ 0.794359 0.950151
1126
+ 0.801101 0.966893
1127
+ 0.794191 0.966823
1128
+ 0.835367 0.823246
1129
+ 0.835797 0.805346
1130
+ 0.849615 0.805670
1131
+ 0.861353 0.807797
1132
+ 0.860853 0.825697
1133
+ 0.835193 0.918896
1134
+ 0.860688 0.918936
1135
+ 0.835147 0.933327
1136
+ 0.854640 0.929622
1137
+ 0.835177 0.944811
1138
+ 0.849429 0.942198
1139
+ 0.835337 0.957209
1140
+ 0.846186 0.957084
1141
+ 0.835474 0.969271
1142
+ 0.846331 0.969153
1143
+ 0.835598 0.981279
1144
+ 0.846456 0.981169
1145
+ 0.841142 0.993290
1146
+ 0.835713 0.993342
1147
+ 0.846572 0.993237
1148
+ 0.830277 0.813821
1149
+ 0.831167 0.829352
1150
+ 0.815608 0.799088
1151
+ 0.829410 0.798322
1152
+ 0.831889 0.845053
1153
+ 0.805371 0.830787
1154
+ 0.804542 0.815246
1155
+ 0.803695 0.799745
1156
+ 0.831775 0.863155
1157
+ 0.806422 0.846502
1158
+ 0.828304 0.958774
1159
+ 0.806117 0.864636
1160
+ 0.827801 0.973190
1161
+ 0.802822 0.957850
1162
+ 0.827334 0.984661
1163
+ 0.808462 0.968748
1164
+ 0.826699 0.997044
1165
+ 0.821267 0.996762
1166
+ 0.813190 0.981505
1167
+ 0.815876 0.996499
1168
+ 0.861119 0.921100
1169
+ 0.861143 0.918344
1170
+ 0.864928 0.918378
1171
+ 0.864903 0.921133
1172
+ 0.865248 0.882625
1173
+ 0.861464 0.882584
1174
+ 0.865283 0.879913
1175
+ 0.861499 0.879858
1176
+ 0.865499 0.866755
1177
+ 0.861715 0.866693
1178
+ 0.870545 0.875083
1179
+ 0.870246 0.888239
1180
+ 0.866463 0.888160
1181
+ 0.866761 0.874997
1182
+ 0.870194 0.890951
1183
+ 0.866410 0.890885
1184
+ 0.869935 0.907621
1185
+ 0.866151 0.907556
1186
+ 0.866099 0.910267
1187
+ 0.869882 0.910347
1188
+ 0.869582 0.923509
1189
+ 0.865799 0.923423
1190
+ 0.994312 0.848055
1191
+ 0.995193 0.864704
1192
+ 0.991415 0.864905
1193
+ 0.990533 0.848255
1194
+ 0.995330 0.867259
1195
+ 0.991551 0.867461
1196
+ 0.994176 0.845498
1197
+ 0.990397 0.845699
1198
+ 0.876418 0.874853
1199
+ 0.876794 0.894099
1200
+ 0.873011 0.894174
1201
+ 0.872634 0.874927
1202
+ 0.876863 0.897521
1203
+ 0.873080 0.897599
1204
+ 0.877205 0.913805
1205
+ 0.873422 0.913885
1206
+ 0.873494 0.917308
1207
+ 0.877278 0.917228
1208
+ 0.894483 0.905622
1209
+ 0.894411 0.908816
1210
+ 0.890628 0.908731
1211
+ 0.890700 0.905537
1212
+ 0.894843 0.889336
1213
+ 0.891060 0.889254
1214
+ 0.894911 0.886140
1215
+ 0.891128 0.886061
1216
+ 0.895305 0.866893
1217
+ 0.891522 0.866816
1218
+ 0.833576 0.956823
1219
+ 0.833338 0.992580
1220
+ 0.829554 0.992555
1221
+ 0.829792 0.956798
1222
+ 0.833321 0.995140
1223
+ 0.829537 0.995114
1224
+ 0.988856 0.859391
1225
+ 0.988710 0.861986
1226
+ 0.984932 0.861772
1227
+ 0.985078 0.859178
1228
+ 0.989603 0.846251
1229
+ 0.985825 0.846036
1230
+ 0.927654 0.843057
1231
+ 0.919723 0.840134
1232
+ 0.919428 0.804760
1233
+ 0.927305 0.801704
1234
+ 0.991247 0.817291
1235
+ 0.991324 0.826379
1236
+ 0.983687 0.842568
1237
+ 0.991401 0.835468
1238
+ 0.913689 0.837195
1239
+ 0.907621 0.826063
1240
+ 0.907563 0.819027
1241
+ 0.913446 0.807797
1242
+ 0.907679 0.833131
1243
+ 0.907505 0.811959
1244
+ 0.983336 0.801230
1245
+ 0.991171 0.808200
1246
+ 0.919045 0.981267
1247
+ 0.918913 0.887922
1248
+ 0.931098 0.994553
1249
+ 0.923739 0.876409
1250
+ 0.946675 0.994558
1251
+ 0.928835 0.863739
1252
+ 0.962264 0.994480
1253
+ 0.935930 0.850256
1254
+ 0.947993 0.850290
1255
+ 0.984370 0.876277
1256
+ 0.989241 0.887760
1257
+ 0.960009 0.850264
1258
+ 0.979223 0.863632
1259
+ 0.989737 0.981027
1260
+ 0.977799 0.994364
1261
+ 0.972072 0.850179
1262
+ </float_array>
1263
+ <technique_common>
1264
+ <accessor source="#drc_l_foot-UV0-array" count="262" stride="2">
1265
+ <param name="S" type="float"/>
1266
+ <param name="T" type="float"/>
1267
+ </accessor>
1268
+ </technique_common>
1269
+ </source>
1270
+ <vertices id="drc_l_foot-VERTEX">
1271
+ <input semantic="POSITION" source="#drc_l_foot-POSITION"/>
1272
+ </vertices>
1273
+ <triangles count="248" material="drc_extremities_diffuse">
1274
+ <input semantic="VERTEX" offset="0" source="#drc_l_foot-VERTEX"/>
1275
+ <input semantic="NORMAL" offset="1" source="#drc_l_foot-Normal0"/>
1276
+ <input semantic="TEXCOORD" offset="2" set="0" source="#drc_l_foot-UV0"/>
1277
+ <p> 2 0 1 1 1 0 0 2 158 0 3 158 3 4 156 2 5 1 6 6 2 5 7 162 4 8 160 4 9 160 7 10 3 6 11 2 2 12 1 9 13 4 8 14 157 8 15 157 10 16 159 2 17 1 13 18 149 12 19 148 11 20 5 11 21 5 14 22 6 13 23 149 17 24 133 16 25 8 15 26 7 15 27 7 18 28 128 17 29 133 21 30 10 20 31 9 19 32 138 19 33 138 22 34 136 21 35 10 24 36 131 23 37 130 15 38 7 15 39 7 25 40 132 24 41 131 28 42 13 27 43 12 26 44 11 26 45 11 29 46 14 28 47 13 32 48 144 31 49 142 30 50 15 30 51 15 33 52 16 32 53 144 36 54 19 35 55 18 34 56 17 34 57 17 37 58 20 36 59 19 39 60 165 38 61 164 5 62 162 5 63 162 6 64 2 39 65 165 1 66 0 41 67 161 40 68 163 40 69 163 7 70 3 1 71 0 20 72 9 43 73 21 42 74 140 42 75 140 19 76 138 20 77 9 21 78 10 16 79 8 17 80 133 17 81 133 44 82 135 21 83 10 29 84 14 26 85 11 45 86 22 45 87 22 46 88 23 29 89 14 27 90 12 28 91 13 47 92 240 47 93 240 48 94 239 27 95 12 37 96 20 34 97 17 31 98 257 31 99 257 32 100 254 37 101 20 35 102 18 36 103 19 49 104 24 49 105 24 50 106 25 35 107 18 46 108 23 45 109 22 12 110 235 12 111 235 13 112 234 46 113 23 50 114 25 49 115 24 51 116 250 51 117 250 52 118 252 50 119 25 2 120 1 10 121 159 41 122 161 41 123 161 1 124 0 2 125 1 7 126 3 40 127 163 53 128 166 53 129 166 6 130 2 7 131 3 2 132 1 3 133 156 54 134 152 54 135 152 9 136 4 2 137 1 14 138 6 11 139 5 52 140 154 52 141 154 51 142 153 14 143 6 16 144 8 55 145 134 25 146 132 25 147 132 15 148 7 16 149 8 44 150 135 56 151 137 20 152 9 20 153 9 21 154 10 44 155 135 23 156 130 57 157 129 18 158 128 18 159 128 15 160 7 23 161 130 33 162 16 30 163 15 48 164 141 48 165 141 47 166 143 33 167 16 6 168 2 53 169 166 58 170 167 58 171 167 39 172 165 6 173 2 7 174 3 4 175 160 0 176 158 0 177 158 1 178 0 7 179 3 56 180 137 59 181 139 43 182 21 43 183 21 20 184 9 56 185 137 22 186 136 55 187 134 16 188 8 16 189 8 21 190 10 22 191 136 62 192 108 61 193 107 60 194 106 60 195 106 63 196 102 62 197 108 62 198 108 63 199 102 64 200 109 66 201 104 65 202 103 63 203 102 63 204 102 60 205 106 66 206 104 67 207 105 66 208 104 60 209 106 61 210 115 69 211 114 68 212 113 68 213 113 60 214 110 61 215 115 64 216 119 71 217 118 70 218 116 70 219 116 62 220 117 64 221 119 65 222 123 73 223 122 72 224 120 72 225 120 63 226 121 65 227 123 67 228 127 75 229 126 74 230 124 74 231 124 66 232 125 67 233 127 78 234 52 77 235 51 76 236 50 76 237 50 79 238 54 78 239 52 78 240 52 79 241 54 80 242 53 82 243 56 81 244 55 79 245 54 79 246 54 76 247 50 82 248 56 83 249 57 82 250 56 76 251 50 77 252 99 85 253 98 84 254 100 84 255 100 76 256 101 77 257 99 80 258 91 87 259 90 86 260 94 86 261 94 78 262 95 80 263 91 81 264 86 89 265 85 88 266 84 88 267 84 79 268 87 81 269 86 83 270 93 91 271 92 90 272 88 90 273 88 82 274 89 83 275 93 78 276 95 86 277 94 85 278 98 85 279 98 77 280 99 78 281 95 91 282 92 83 283 93 76 284 96 76 285 96 84 286 97 91 287 92 79 288 87 88 289 84 87 290 90 87 291 90 80 292 91 79 293 87 82 294 89 90 295 88 89 296 85 89 297 85 81 298 86 82 299 89 94 300 40 93 301 39 92 302 38 92 303 38 95 304 34 94 305 40 94 306 40 95 307 34 96 308 41 98 309 36 97 310 35 95 311 34 95 312 34 92 313 38 98 314 36 99 315 37 98 316 36 92 317 38 93 318 189 101 319 188 100 320 187 100 321 187 92 322 186 93 323 189 96 324 192 103 325 191 102 326 190 102 327 190 94 328 193 96 329 192 97 330 180 105 331 179 104 332 178 104 333 178 95 334 181 97 335 180 99 336 185 107 337 184 106 338 182 106 339 182 98 340 183 99 341 185 94 342 193 102 343 190 101 344 196 101 345 196 93 346 197 94 347 193 107 348 184 99 349 185 92 350 186 92 351 186 100 352 187 107 353 184 95 354 195 104 355 194 103 356 191 103 357 191 96 358 192 95 359 195 98 360 183 106 361 182 105 362 179 105 363 179 97 364 180 98 365 183 110 366 44 109 367 43 108 368 42 108 369 42 111 370 46 110 371 44 110 372 44 111 373 46 112 374 45 114 375 48 113 376 47 111 377 46 111 378 46 108 379 42 114 380 48 115 381 49 114 382 48 108 383 42 109 384 215 117 385 214 116 386 216 116 387 216 108 388 217 109 389 215 112 390 211 119 391 208 118 392 212 118 393 212 110 394 213 112 395 211 113 396 200 121 397 199 120 398 198 120 399 198 111 400 201 113 401 200 115 402 205 123 403 204 122 404 202 122 405 202 114 406 203 115 407 205 110 408 213 118 409 212 117 410 214 117 411 214 109 412 215 110 413 213 123 414 204 115 415 205 108 416 206 108 417 206 116 418 207 123 419 204 111 420 210 120 421 209 119 422 208 119 423 208 112 424 211 111 425 210 114 426 203 122 427 202 121 428 199 121 429 199 113 430 200 114 431 203 62 432 117 70 433 116 69 434 114 69 435 114 61 436 115 62 437 117 75 438 112 67 439 111 60 440 110 60 441 110 68 442 113 75 443 112 63 444 121 72 445 120 71 446 118 71 447 118 64 448 119 63 449 121 66 450 125 74 451 124 73 452 122 73 453 122 65 454 123 66 455 125 12 456 148 57 457 151 23 458 150 23 459 150 11 460 5 12 461 148 14 462 6 9 463 4 54 464 152 54 465 152 13 466 149 14 467 6 56 468 238 44 469 231 26 470 11 26 471 11 27 472 12 56 473 238 29 474 14 4 475 232 5 476 241 5 477 241 28 478 13 29 479 14 31 480 142 42 481 140 43 482 21 43 483 21 30 484 15 31 485 142 33 486 16 39 487 145 58 488 147 58 489 147 32 490 144 33 491 16 35 492 18 22 493 255 19 494 258 19 495 258 34 496 17 35 497 18 53 498 251 40 499 249 36 500 19 36 501 19 37 502 20 53 503 251 44 504 231 17 505 230 45 506 22 45 507 22 26 508 11 44 509 231 46 510 23 0 511 233 4 512 232 4 513 232 29 514 14 46 515 23 28 516 13 5 517 241 38 518 243 38 519 243 47 520 240 28 521 13 59 522 242 56 523 238 27 524 12 27 525 12 48 526 239 59 527 242 34 528 17 19 529 258 42 530 261 42 531 261 31 532 257 34 533 17 58 534 253 53 535 251 37 536 20 37 537 20 32 538 254 58 539 253 40 540 249 41 541 247 49 542 24 49 543 24 36 544 19 40 545 249 50 546 25 55 547 256 22 548 255 22 549 255 35 550 18 50 551 25 45 552 22 17 553 230 18 554 236 18 555 236 57 556 237 45 557 22 12 558 235 45 559 22 57 560 237 13 561 234 54 562 245 3 563 244 3 564 244 0 565 233 13 566 234 46 567 23 13 568 234 0 569 233 49 570 24 41 571 247 10 572 246 10 573 246 8 574 248 49 575 24 51 576 250 49 577 24 8 578 248 52 579 252 24 580 260 25 581 259 25 582 259 55 583 256 52 584 252 50 585 25 52 586 252 55 587 256 11 588 5 23 589 150 24 590 155 24 591 155 52 592 154 11 593 5 51 594 153 8 595 157 9 596 4 9 597 4 14 598 6 51 599 153 30 600 15 43 601 21 59 602 139 59 603 139 48 604 141 30 605 15 47 606 143 38 607 146 39 608 145 39 609 145 33 610 16 47 611 143 126 612 60 125 613 59 124 614 58 124 615 58 127 616 62 126 617 60 126 618 60 127 619 62 128 620 61 130 621 64 129 622 63 127 623 62 127 624 62 124 625 58 130 626 64 131 627 65 130 628 64 124 629 58 125 630 68 133 631 67 132 632 66 132 633 66 124 634 69 125 635 68 128 636 73 135 637 72 134 638 70 134 639 70 126 640 71 128 641 73 129 642 77 137 643 76 136 644 74 136 645 74 127 646 75 129 647 77 131 648 81 139 649 80 138 650 78 138 651 78 130 652 79 131 653 81 126 654 71 134 655 70 133 656 67 133 657 67 125 658 68 126 659 71 139 660 80 131 661 81 124 662 82 124 663 82 132 664 83 139 665 80 127 666 75 136 667 74 135 668 72 135 669 72 128 670 73 127 671 75 130 672 79 138 673 78 137 674 76 137 675 76 129 676 77 130 677 79 142 678 28 141 679 27 140 680 26 140 681 26 143 682 30 142 683 28 142 684 28 143 685 30 144 686 29 146 687 32 145 688 31 143 689 30 143 690 30 140 691 26 146 692 32 147 693 33 146 694 32 140 695 26 141 696 227 149 697 224 148 698 228 148 699 228 140 700 229 141 701 227 144 702 220 151 703 219 150 704 218 150 705 218 142 706 221 144 707 220 145 708 175 153 709 174 152 710 176 152 711 176 143 712 177 145 713 175 147 714 169 155 715 170 154 716 172 154 717 172 146 718 173 147 719 169 142 720 226 150 721 225 149 722 224 149 723 224 141 724 227 142 725 226 155 726 170 147 727 169 140 728 168 140 729 168 148 730 171 155 731 170 143 732 223 152 733 222 151 734 219 151 735 219 144 736 220 143 737 223 146 738 173 154 739 172 153 740 174 153 741 174 145 742 175 146 743 173</p>
1278
+ </triangles>
1279
+ </mesh>
1280
+ </geometry>
1281
+ </library_geometries>
1282
+ <library_visual_scenes>
1283
+ <visual_scene id="l_foot" name="l_foot">
1284
+ <node name="g27" id="g27" sid="g27">
1285
+ <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>
1286
+ <extra>
1287
+ <technique profile="FCOLLADA">
1288
+ <visibility>1.000000</visibility>
1289
+ </technique>
1290
+ </extra>
1291
+ <node name="l_foot_node" id="l_foot_node" sid="l_foot_node">
1292
+ <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>
1293
+ <extra>
1294
+ <technique profile="FCOLLADA">
1295
+ <visibility>1.000000</visibility>
1296
+ </technique>
1297
+ </extra>
1298
+ <node name="drc_l_foot" id="drc_l_foot" sid="drc_l_foot">
1299
+ <matrix sid="matrix">1.000000 0.000000 0.000000 -0.014561 0.000000 1.000000 -0.000000 -0.000647 0.000000 0.000000 1.000000 -0.014387 0.000000 0.000000 0.000000 1.000000</matrix>
1300
+ <instance_geometry url="#drc_l_foot-lib">
1301
+ <bind_material>
1302
+ <technique_common>
1303
+ <instance_material symbol="drc_extremities_diffuse" target="#drc_extremities_diffuse"/>
1304
+ </technique_common>
1305
+ </bind_material>
1306
+ </instance_geometry>
1307
+ <extra>
1308
+ <technique profile="FCOLLADA">
1309
+ <visibility>1.000000</visibility>
1310
+ </technique>
1311
+ </extra>
1312
+ </node>
1313
+ </node>
1314
+ </node>
1315
+ <extra>
1316
+ <technique profile="MAX3D">
1317
+ <frame_rate>30.000000</frame_rate>
1318
+ </technique>
1319
+ <technique profile="FCOLLADA">
1320
+ <start_time>0.000000</start_time>
1321
+ <end_time>3.333333</end_time>
1322
+ </technique>
1323
+ </extra>
1324
+ </visual_scene>
1325
+ </library_visual_scenes>
1326
+ <scene>
1327
+ <instance_visual_scene url="#l_foot"></instance_visual_scene>
1328
+ </scene>
1329
+ </COLLADA>
1330
+