dartpy 7.0.0.dev0__cp313-cp313-manylinux_2_39_x86_64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of dartpy might be problematic. Click here for more details.

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-313-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-0400fc28.so.0.7.0 +0 -0
  16. dartpy.libs/libfmt-277170bf.so.11.2.0 +0 -0
  17. dartpy.libs/libfontconfig-582da43c.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-d1ae937b.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-99b67f5b.so.8.2.0 +0 -0
  25. dartpy.libs/libosg-e67375e5.so.3.6.5 +0 -0
  26. dartpy.libs/libosgDB-bcdb6be9.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-08e1e162.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:27:57Z</created>
10
+ <keywords></keywords>
11
+ <modified>2013-04-12T18:27:57Z</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_r_foot-lib" name="drc_r_footMesh">
75
+ <mesh>
76
+ <source id="drc_r_foot-POSITION">
77
+ <float_array id="drc_r_foot-POSITION-array" count="468">
78
+ -0.154400 -0.908200 0.120800
79
+ -0.154400 -0.883000 0.120800
80
+ -0.154400 -0.883000 -0.051900
81
+ -0.154400 -0.908200 -0.053600
82
+ -0.145100 -0.908200 0.145400
83
+ -0.135800 -0.908200 0.164100
84
+ -0.135800 -0.895300 0.164100
85
+ -0.145100 -0.890600 0.145400
86
+ -0.132500 -0.861700 -0.073400
87
+ -0.132500 -0.883000 -0.077800
88
+ -0.154400 -0.861700 -0.049200
89
+ -0.075900 -0.883000 -0.077800
90
+ -0.075900 -0.908200 -0.077800
91
+ -0.104200 -0.908200 -0.077800
92
+ -0.104200 -0.883000 -0.077800
93
+ -0.025700 -0.883000 -0.051600
94
+ -0.025700 -0.883000 0.120800
95
+ -0.025700 -0.908200 0.120800
96
+ -0.025700 -0.908200 -0.053600
97
+ -0.044300 -0.882400 0.158800
98
+ -0.044300 -0.895300 0.164100
99
+ -0.035000 -0.890600 0.145400
100
+ -0.035000 -0.872900 0.137900
101
+ -0.047600 -0.883000 -0.077800
102
+ -0.047600 -0.861700 -0.073400
103
+ -0.025700 -0.861700 -0.049200
104
+ -0.071700 -0.908200 0.145400
105
+ -0.074800 -0.908200 0.164100
106
+ -0.105300 -0.908200 0.164100
107
+ -0.108400 -0.908200 0.145400
108
+ -0.079100 -0.898300 0.182700
109
+ -0.079100 -0.888400 0.182700
110
+ -0.101000 -0.888400 0.182700
111
+ -0.101000 -0.898300 0.182700
112
+ -0.074800 -0.882400 0.164100
113
+ -0.071700 -0.872900 0.145400
114
+ -0.108400 -0.872900 0.145400
115
+ -0.105300 -0.882400 0.164100
116
+ -0.123000 -0.908200 0.182700
117
+ -0.123000 -0.898300 0.182700
118
+ -0.145100 -0.872900 0.137900
119
+ -0.154400 -0.861700 0.120800
120
+ -0.057100 -0.888400 0.182700
121
+ -0.057100 -0.898300 0.182700
122
+ -0.035000 -0.908200 0.145400
123
+ -0.068600 -0.908200 0.120800
124
+ -0.111500 -0.908200 0.120800
125
+ -0.101000 -0.908200 0.182700
126
+ -0.079100 -0.908200 0.182700
127
+ -0.111500 -0.861700 0.131200
128
+ -0.068600 -0.861700 0.131200
129
+ -0.104200 -0.861700 -0.073400
130
+ -0.075900 -0.861700 -0.073400
131
+ -0.135800 -0.882400 0.158800
132
+ -0.132500 -0.908200 -0.077800
133
+ -0.025700 -0.861700 0.120800
134
+ -0.044300 -0.908200 0.164100
135
+ -0.047600 -0.908200 -0.077800
136
+ -0.123000 -0.888400 0.182700
137
+ -0.057100 -0.908200 0.182700
138
+ -0.139900 -0.855300 -0.009500
139
+ -0.039200 -0.855300 -0.009500
140
+ -0.034400 -0.855300 -0.014300
141
+ -0.039200 -0.855300 -0.049500
142
+ -0.034400 -0.855300 -0.044700
143
+ -0.139900 -0.855300 -0.049500
144
+ -0.144700 -0.855300 -0.044700
145
+ -0.144700 -0.855300 -0.014300
146
+ -0.139900 -0.867900 -0.009500
147
+ -0.039200 -0.867900 -0.009500
148
+ -0.034400 -0.867900 -0.014300
149
+ -0.034400 -0.867900 -0.044700
150
+ -0.039200 -0.867900 -0.049500
151
+ -0.139900 -0.867900 -0.049500
152
+ -0.144700 -0.867900 -0.044700
153
+ -0.144700 -0.867900 -0.014300
154
+ -0.140400 -0.859600 0.110800
155
+ -0.116400 -0.859600 0.110800
156
+ -0.112800 -0.859600 0.107500
157
+ -0.116400 -0.859600 0.073800
158
+ -0.112800 -0.859600 0.077100
159
+ -0.140400 -0.859600 0.073800
160
+ -0.143700 -0.859600 0.077100
161
+ -0.143700 -0.859600 0.107500
162
+ -0.140400 -0.866500 0.110800
163
+ -0.116400 -0.866500 0.110800
164
+ -0.112800 -0.866500 0.107500
165
+ -0.112800 -0.866500 0.077100
166
+ -0.116400 -0.866500 0.073800
167
+ -0.140400 -0.866500 0.073800
168
+ -0.143700 -0.866500 0.077100
169
+ -0.143700 -0.866500 0.107500
170
+ -0.061400 -0.859600 0.110800
171
+ -0.037400 -0.859600 0.110800
172
+ -0.034100 -0.859600 0.107500
173
+ -0.037400 -0.859600 0.073800
174
+ -0.034100 -0.859600 0.077100
175
+ -0.061400 -0.859600 0.073800
176
+ -0.065100 -0.859600 0.077100
177
+ -0.065100 -0.859600 0.107500
178
+ -0.061400 -0.866500 0.110800
179
+ -0.037400 -0.866500 0.110800
180
+ -0.034100 -0.866500 0.107500
181
+ -0.034100 -0.866500 0.077100
182
+ -0.037400 -0.866500 0.073800
183
+ -0.061400 -0.866500 0.073800
184
+ -0.065100 -0.866500 0.077100
185
+ -0.065100 -0.866500 0.107500
186
+ -0.105900 -0.856300 0.120000
187
+ -0.070800 -0.856300 0.120000
188
+ -0.066000 -0.856300 0.116700
189
+ -0.070800 -0.856300 0.083700
190
+ -0.066000 -0.856300 0.087000
191
+ -0.105900 -0.856300 0.083700
192
+ -0.111200 -0.856300 0.087000
193
+ -0.111200 -0.856300 0.116700
194
+ -0.105900 -0.863200 0.120000
195
+ -0.070800 -0.863200 0.120000
196
+ -0.066000 -0.863200 0.116700
197
+ -0.066000 -0.863200 0.087000
198
+ -0.070800 -0.863200 0.083700
199
+ -0.105900 -0.863200 0.083700
200
+ -0.111200 -0.863200 0.087000
201
+ -0.111200 -0.863200 0.116700
202
+ -0.140400 -0.859600 0.069600
203
+ -0.116400 -0.859600 0.069600
204
+ -0.112800 -0.859600 0.066200
205
+ -0.116400 -0.859600 -0.002300
206
+ -0.112800 -0.859600 0.001000
207
+ -0.140400 -0.859600 -0.002300
208
+ -0.143700 -0.859600 0.001000
209
+ -0.143700 -0.859600 0.066200
210
+ -0.140400 -0.866500 0.069600
211
+ -0.116400 -0.866500 0.069600
212
+ -0.112800 -0.866500 0.066200
213
+ -0.112800 -0.866500 0.001000
214
+ -0.116400 -0.866500 -0.002300
215
+ -0.140400 -0.866500 -0.002300
216
+ -0.143700 -0.866500 0.001000
217
+ -0.143700 -0.866500 0.066200
218
+ -0.061400 -0.859600 0.069600
219
+ -0.037400 -0.859600 0.069600
220
+ -0.034100 -0.859600 0.066200
221
+ -0.037400 -0.859600 -0.002300
222
+ -0.034100 -0.859600 0.001000
223
+ -0.061400 -0.859600 -0.002300
224
+ -0.065100 -0.859600 0.001000
225
+ -0.065100 -0.859600 0.066200
226
+ -0.061400 -0.866500 0.069600
227
+ -0.037400 -0.866500 0.069600
228
+ -0.034100 -0.866500 0.066200
229
+ -0.034100 -0.866500 0.001000
230
+ -0.037400 -0.866500 -0.002300
231
+ -0.061400 -0.866500 -0.002300
232
+ -0.065100 -0.866500 0.001000
233
+ -0.065100 -0.866500 0.066200
234
+ </float_array>
235
+ <technique_common>
236
+ <accessor source="#drc_r_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_r_foot-Normal0">
244
+ <float_array id="drc_r_foot-Normal0-array" count="2232">
245
+ -0.932849 0.035882 -0.358477
246
+ -0.927612 0.025142 -0.372697
247
+ -0.983714 0.000000 0.179738
248
+ -0.983714 0.000000 0.179738
249
+ -0.977772 0.020934 0.208624
250
+ -0.932849 0.035882 -0.358477
251
+ -0.859491 0.084567 0.504107
252
+ -0.901344 0.093075 0.422984
253
+ -0.916533 0.000000 0.399960
254
+ -0.916533 0.000000 0.399960
255
+ -0.861731 0.000000 0.507366
256
+ -0.859491 0.084567 0.504107
257
+ -0.932849 0.035882 -0.358477
258
+ -0.941761 0.042289 -0.333613
259
+ -0.430792 0.172163 -0.885877
260
+ -0.430792 0.172163 -0.885877
261
+ -0.409827 0.091121 -0.907601
262
+ -0.932849 0.035882 -0.358477
263
+ 0.000000 0.000000 -1.000000
264
+ 0.000000 0.101678 -0.994817
265
+ 0.000000 0.101678 -0.994817
266
+ 0.000000 0.101678 -0.994817
267
+ 0.000000 0.000000 -1.000000
268
+ 0.000000 0.000000 -1.000000
269
+ 0.983715 0.000000 0.179738
270
+ 0.931316 0.016907 -0.363820
271
+ 0.936020 0.040107 -0.349655
272
+ 0.936020 0.040107 -0.349655
273
+ 0.977772 0.020934 0.208624
274
+ 0.983715 0.000000 0.179738
275
+ 0.901344 0.093075 0.422984
276
+ 0.888763 0.124686 0.441082
277
+ 0.852510 0.200019 0.482927
278
+ 0.852510 0.200019 0.482927
279
+ 0.859491 0.084567 0.504108
280
+ 0.901344 0.093075 0.422984
281
+ 0.432802 0.170184 -0.885279
282
+ 0.940906 0.037920 -0.336539
283
+ 0.936020 0.040107 -0.349655
284
+ 0.936020 0.040107 -0.349655
285
+ 0.406718 0.096741 -0.908417
286
+ 0.432802 0.170184 -0.885279
287
+ 0.000000 -1.000000 0.000000
288
+ 0.000000 -1.000000 0.000000
289
+ 0.000000 -1.000000 0.000000
290
+ 0.000000 -1.000000 0.000000
291
+ 0.000000 -1.000000 0.000000
292
+ 0.000000 -1.000000 0.000000
293
+ 0.000000 0.000000 1.000000
294
+ 0.000000 0.000000 1.000000
295
+ 0.000000 0.000000 1.000000
296
+ 0.000000 0.000000 1.000000
297
+ 0.000000 0.000000 1.000000
298
+ 0.000000 0.000000 1.000000
299
+ 0.000000 0.891549 0.452924
300
+ 0.000000 0.891549 0.452924
301
+ 0.000000 0.891549 0.452924
302
+ 0.000000 0.891549 0.452924
303
+ 0.000000 0.891549 0.452924
304
+ 0.000000 0.891549 0.452924
305
+ -0.465347 0.000000 0.885129
306
+ -0.859491 0.084567 0.504107
307
+ -0.861731 0.000000 0.507366
308
+ -0.861731 0.000000 0.507366
309
+ -0.465347 0.000000 0.885129
310
+ -0.465347 0.000000 0.885129
311
+ -0.977772 0.020934 0.208624
312
+ -0.901344 0.093075 0.422984
313
+ -0.888763 0.124686 0.441082
314
+ -0.888763 0.124686 0.441082
315
+ -0.980382 0.000000 0.197107
316
+ -0.977772 0.020934 0.208624
317
+ 0.859491 0.084567 0.504108
318
+ 0.852510 0.200019 0.482927
319
+ 0.503521 0.036597 0.863208
320
+ 0.503521 0.036597 0.863208
321
+ 0.465347 0.000000 0.885129
322
+ 0.859491 0.084567 0.504108
323
+ 0.901344 0.093075 0.422984
324
+ 0.916533 0.000000 0.399960
325
+ 0.983715 0.000000 0.179738
326
+ 0.983715 0.000000 0.179738
327
+ 0.977772 0.020934 0.208624
328
+ 0.901344 0.093075 0.422984
329
+ 0.000000 -1.000000 0.000000
330
+ 0.000000 -1.000000 0.000000
331
+ 0.000000 -1.000000 0.000000
332
+ 0.000000 -1.000000 0.000000
333
+ 0.000000 -1.000000 0.000000
334
+ 0.000000 -1.000000 0.000000
335
+ 0.000000 -1.000000 0.000000
336
+ 0.000000 -1.000000 0.000000
337
+ 0.000000 -1.000000 0.000000
338
+ 0.000000 -1.000000 0.000000
339
+ 0.000000 -1.000000 0.000000
340
+ 0.000000 -1.000000 0.000000
341
+ 0.000000 0.951708 0.307005
342
+ 0.000000 0.951708 0.307005
343
+ 0.000000 0.951708 0.307005
344
+ 0.000000 0.951708 0.307005
345
+ 0.000000 0.951708 0.307005
346
+ 0.000000 0.951708 0.307005
347
+ 0.000000 0.785166 0.619286
348
+ 0.000000 0.785165 0.619286
349
+ 0.000000 0.785166 0.619286
350
+ 0.000000 0.785165 0.619286
351
+ 0.000000 0.785165 0.619286
352
+ 0.000000 0.785166 0.619286
353
+ 0.000000 -1.000000 0.000000
354
+ 0.000000 -1.000000 0.000000
355
+ 0.000000 -1.000000 0.000000
356
+ 0.000000 -1.000000 0.000000
357
+ 0.000000 -1.000000 0.000000
358
+ 0.000000 -1.000000 0.000000
359
+ 0.000000 1.000000 0.000000
360
+ 0.000000 1.000000 0.000000
361
+ 0.000000 1.000000 0.000000
362
+ 0.000000 1.000000 0.000000
363
+ 0.000000 1.000000 0.000000
364
+ 0.000000 1.000000 0.000000
365
+ -0.932849 0.035882 -0.358477
366
+ -0.977772 0.020934 0.208624
367
+ -0.980382 0.000000 0.197107
368
+ -0.980382 0.000000 0.197107
369
+ -0.941761 0.042289 -0.333613
370
+ -0.932849 0.035882 -0.358477
371
+ -0.901344 0.093075 0.422984
372
+ -0.859491 0.084567 0.504107
373
+ -0.852511 0.200019 0.482927
374
+ -0.852511 0.200019 0.482927
375
+ -0.888763 0.124686 0.441082
376
+ -0.901344 0.093075 0.422984
377
+ -0.932849 0.035882 -0.358477
378
+ -0.409827 0.091121 -0.907601
379
+ -0.414653 0.010119 -0.909923
380
+ -0.414653 0.010119 -0.909923
381
+ -0.927612 0.025142 -0.372697
382
+ -0.932849 0.035882 -0.358477
383
+ 0.000000 0.101678 -0.994817
384
+ 0.000000 0.202301 -0.979323
385
+ 0.000000 0.202301 -0.979323
386
+ 0.000000 0.202301 -0.979323
387
+ 0.000000 0.101678 -0.994817
388
+ 0.000000 0.101678 -0.994817
389
+ 0.977772 0.020934 0.208624
390
+ 0.936020 0.040107 -0.349655
391
+ 0.940906 0.037920 -0.336539
392
+ 0.940906 0.037920 -0.336539
393
+ 0.980382 0.000000 0.197107
394
+ 0.977772 0.020934 0.208624
395
+ 0.916533 0.000000 0.399960
396
+ 0.901344 0.093075 0.422984
397
+ 0.859491 0.084567 0.504108
398
+ 0.859491 0.084567 0.504108
399
+ 0.861731 0.000000 0.507366
400
+ 0.916533 0.000000 0.399960
401
+ 0.406718 0.096741 -0.908417
402
+ 0.936020 0.040107 -0.349655
403
+ 0.931316 0.016907 -0.363820
404
+ 0.931316 0.016907 -0.363820
405
+ 0.405590 0.000000 -0.914055
406
+ 0.406718 0.096741 -0.908417
407
+ 0.000000 0.000000 1.000000
408
+ 0.000000 0.000000 1.000000
409
+ 0.000000 0.000000 1.000000
410
+ 0.000000 0.000000 1.000000
411
+ 0.000000 0.000000 1.000000
412
+ 0.000000 0.000000 1.000000
413
+ -0.859491 0.084567 0.504107
414
+ -0.465347 0.000000 0.885129
415
+ -0.503521 0.036597 0.863208
416
+ -0.503521 0.036597 0.863208
417
+ -0.852511 0.200019 0.482927
418
+ -0.859491 0.084567 0.504107
419
+ -0.901344 0.093075 0.422984
420
+ -0.977772 0.020934 0.208624
421
+ -0.983714 0.000000 0.179738
422
+ -0.983714 0.000000 0.179738
423
+ -0.916533 0.000000 0.399960
424
+ -0.901344 0.093075 0.422984
425
+ 0.861731 0.000000 0.507366
426
+ 0.859491 0.084567 0.504108
427
+ 0.465347 0.000000 0.885129
428
+ 0.465347 0.000000 0.885129
429
+ 0.465347 0.000000 0.885129
430
+ 0.861731 0.000000 0.507366
431
+ 0.888763 0.124686 0.441082
432
+ 0.901344 0.093075 0.422984
433
+ 0.977772 0.020934 0.208624
434
+ 0.977772 0.020934 0.208624
435
+ 0.980382 0.000000 0.197107
436
+ 0.888763 0.124686 0.441082
437
+ 0.000000 1.000000 0.000000
438
+ 0.000000 1.000000 0.000000
439
+ 0.000000 1.000000 0.000000
440
+ 0.000000 1.000000 0.000000
441
+ 0.000000 1.000000 0.000000
442
+ 0.000000 1.000000 0.000000
443
+ 0.000000 1.000000 0.000000
444
+ 0.000000 1.000000 0.000000
445
+ 0.000000 1.000000 0.000000
446
+ 0.000000 1.000000 0.000000
447
+ 0.000000 1.000000 0.000000
448
+ 0.000000 1.000000 0.000000
449
+ 0.000000 1.000000 0.000000
450
+ 0.000000 1.000000 0.000000
451
+ 0.000000 1.000000 0.000000
452
+ 0.000000 1.000000 0.000000
453
+ 0.000000 1.000000 0.000000
454
+ 0.000000 1.000000 0.000000
455
+ 0.000000 0.000000 1.000000
456
+ 0.000000 0.000000 1.000000
457
+ 0.000000 0.000000 1.000000
458
+ 0.000000 0.000000 1.000000
459
+ 0.000000 0.000000 1.000000
460
+ 0.000000 0.000000 1.000000
461
+ 1.000000 0.000000 0.000000
462
+ 1.000000 0.000000 0.000000
463
+ 1.000000 0.000000 0.000000
464
+ 1.000000 0.000000 0.000000
465
+ 1.000000 0.000000 0.000000
466
+ 1.000000 0.000000 0.000000
467
+ 0.000000 0.000000 -1.000000
468
+ 0.000000 0.000000 -1.000000
469
+ 0.000000 0.000000 -1.000000
470
+ 0.000000 0.000000 -1.000000
471
+ 0.000000 0.000000 -1.000000
472
+ 0.000000 0.000000 -1.000000
473
+ -1.000000 0.000000 0.000000
474
+ -1.000000 0.000000 0.000000
475
+ -1.000000 0.000000 0.000000
476
+ -1.000000 0.000000 0.000000
477
+ -1.000000 0.000000 0.000000
478
+ -1.000000 0.000000 0.000000
479
+ 0.000000 1.000000 0.000000
480
+ 0.000000 1.000000 0.000000
481
+ 0.000000 1.000000 0.000000
482
+ 0.000000 1.000000 0.000000
483
+ 0.000000 1.000000 0.000000
484
+ 0.000000 1.000000 0.000000
485
+ 0.000000 1.000000 0.000000
486
+ 0.000000 1.000000 0.000000
487
+ 0.000000 1.000000 0.000000
488
+ 0.000000 1.000000 0.000000
489
+ 0.000000 1.000000 0.000000
490
+ 0.000000 1.000000 0.000000
491
+ 0.000000 1.000000 0.000000
492
+ 0.000000 1.000000 0.000000
493
+ 0.000000 1.000000 0.000000
494
+ 0.000000 1.000000 0.000000
495
+ 0.000000 1.000000 0.000000
496
+ 0.000000 1.000000 0.000000
497
+ 0.000000 0.000000 1.000000
498
+ 0.000000 0.000000 1.000000
499
+ 0.000000 0.000000 1.000000
500
+ 0.000000 0.000000 1.000000
501
+ 0.000000 0.000000 1.000000
502
+ 0.000000 0.000000 1.000000
503
+ 1.000000 0.000000 0.000000
504
+ 1.000000 0.000000 0.000000
505
+ 1.000000 0.000000 0.000000
506
+ 1.000000 0.000000 0.000000
507
+ 1.000000 0.000000 0.000000
508
+ 1.000000 0.000000 0.000000
509
+ 0.000000 0.000000 -1.000000
510
+ 0.000000 0.000000 -1.000000
511
+ 0.000000 0.000000 -1.000000
512
+ 0.000000 0.000000 -1.000000
513
+ 0.000000 0.000000 -1.000000
514
+ 0.000000 0.000000 -1.000000
515
+ -1.000000 0.000000 0.000000
516
+ -1.000000 0.000000 0.000000
517
+ -1.000000 0.000000 0.000000
518
+ -1.000000 0.000000 0.000000
519
+ -1.000000 0.000000 0.000000
520
+ -1.000000 0.000000 0.000000
521
+ 0.675724 0.000000 0.737155
522
+ 0.675724 0.000000 0.737155
523
+ 0.675724 0.000000 0.737155
524
+ 0.675724 0.000000 0.737155
525
+ 0.675724 0.000000 0.737155
526
+ 0.675724 0.000000 0.737155
527
+ -0.707107 0.000000 0.707107
528
+ -0.707107 0.000000 0.707107
529
+ -0.707107 0.000000 0.707107
530
+ -0.707107 0.000000 0.707107
531
+ -0.707107 0.000000 0.707107
532
+ -0.707107 0.000000 0.707107
533
+ 0.675725 0.000000 -0.737154
534
+ 0.675725 0.000000 -0.737154
535
+ 0.675725 0.000000 -0.737154
536
+ 0.675725 0.000000 -0.737154
537
+ 0.675725 0.000000 -0.737154
538
+ 0.675725 0.000000 -0.737154
539
+ -0.707108 0.000000 -0.707106
540
+ -0.707108 0.000000 -0.707106
541
+ -0.707108 0.000000 -0.707106
542
+ -0.707108 0.000000 -0.707106
543
+ -0.707108 0.000000 -0.707106
544
+ -0.707108 0.000000 -0.707106
545
+ 0.000000 1.000000 0.000000
546
+ 0.000000 1.000000 0.000000
547
+ 0.000000 1.000000 0.000000
548
+ 0.000000 1.000000 0.000000
549
+ 0.000000 1.000000 0.000000
550
+ 0.000000 1.000000 0.000000
551
+ 0.000000 1.000000 0.000000
552
+ 0.000000 1.000000 0.000000
553
+ 0.000000 1.000000 0.000000
554
+ 0.000000 1.000000 0.000000
555
+ 0.000000 1.000000 0.000000
556
+ 0.000000 1.000000 0.000000
557
+ 0.000000 1.000000 0.000000
558
+ 0.000000 1.000000 0.000000
559
+ 0.000000 1.000000 0.000000
560
+ 0.000000 1.000000 0.000000
561
+ 0.000000 1.000000 0.000000
562
+ 0.000000 1.000000 0.000000
563
+ 0.000000 0.000000 1.000000
564
+ 0.000000 0.000000 1.000000
565
+ 0.000000 0.000000 1.000000
566
+ 0.000000 0.000000 1.000000
567
+ 0.000000 0.000000 1.000000
568
+ 0.000000 0.000000 1.000000
569
+ 1.000000 0.000000 0.000000
570
+ 1.000000 0.000000 0.000000
571
+ 1.000000 0.000000 0.000000
572
+ 1.000000 0.000000 0.000000
573
+ 1.000000 0.000000 0.000000
574
+ 1.000000 0.000000 0.000000
575
+ 0.000000 0.000000 -1.000000
576
+ 0.000000 0.000000 -1.000000
577
+ 0.000000 0.000000 -1.000000
578
+ 0.000000 0.000000 -1.000000
579
+ 0.000000 0.000000 -1.000000
580
+ 0.000000 0.000000 -1.000000
581
+ -1.000000 0.000000 0.000000
582
+ -1.000000 0.000000 0.000000
583
+ -1.000000 0.000000 0.000000
584
+ -1.000000 0.000000 0.000000
585
+ -1.000000 0.000000 0.000000
586
+ -1.000000 0.000000 0.000000
587
+ 0.707106 0.000000 0.707107
588
+ 0.707106 0.000000 0.707107
589
+ 0.707106 0.000000 0.707107
590
+ 0.707106 0.000000 0.707107
591
+ 0.707106 0.000000 0.707107
592
+ 0.707106 0.000000 0.707107
593
+ -0.665614 0.000000 0.746296
594
+ -0.665614 0.000000 0.746296
595
+ -0.665614 0.000000 0.746296
596
+ -0.665614 0.000000 0.746296
597
+ -0.665614 0.000000 0.746296
598
+ -0.665614 0.000000 0.746296
599
+ 0.707107 0.000000 -0.707106
600
+ 0.707107 0.000000 -0.707106
601
+ 0.707107 0.000000 -0.707106
602
+ 0.707107 0.000000 -0.707106
603
+ 0.707107 0.000000 -0.707106
604
+ 0.707107 0.000000 -0.707106
605
+ -0.665615 0.000000 -0.746295
606
+ -0.665615 0.000000 -0.746295
607
+ -0.665615 0.000000 -0.746295
608
+ -0.665615 0.000000 -0.746295
609
+ -0.665615 0.000000 -0.746295
610
+ -0.665615 0.000000 -0.746295
611
+ 0.000000 1.000000 0.000000
612
+ 0.000000 1.000000 0.000000
613
+ 0.000000 1.000000 0.000000
614
+ 0.000000 1.000000 0.000000
615
+ 0.000000 1.000000 0.000000
616
+ 0.000000 1.000000 0.000000
617
+ 0.000000 1.000000 0.000000
618
+ 0.000000 1.000000 0.000000
619
+ 0.000000 1.000000 0.000000
620
+ 0.000000 1.000000 0.000000
621
+ 0.000000 1.000000 0.000000
622
+ 0.000000 1.000000 0.000000
623
+ 0.000000 1.000000 0.000000
624
+ 0.000000 1.000000 0.000000
625
+ 0.000000 1.000000 0.000000
626
+ 0.000000 1.000000 0.000000
627
+ 0.000000 1.000000 0.000000
628
+ 0.000000 1.000000 0.000000
629
+ 0.000000 0.000000 1.000000
630
+ 0.000000 0.000000 1.000000
631
+ 0.000000 0.000000 1.000000
632
+ 0.000000 0.000000 1.000000
633
+ 0.000000 0.000000 1.000000
634
+ 0.000000 0.000000 1.000000
635
+ 1.000000 0.000000 0.000000
636
+ 1.000000 0.000000 0.000000
637
+ 1.000000 0.000000 0.000000
638
+ 1.000000 0.000000 0.000000
639
+ 1.000000 0.000000 0.000000
640
+ 1.000000 0.000000 0.000000
641
+ 0.000000 0.000000 -1.000000
642
+ 0.000000 0.000000 -1.000000
643
+ 0.000000 0.000000 -1.000000
644
+ 0.000000 0.000000 -1.000000
645
+ 0.000000 0.000000 -1.000000
646
+ 0.000000 0.000000 -1.000000
647
+ -1.000000 0.000000 0.000000
648
+ -1.000000 0.000000 0.000000
649
+ -1.000000 0.000000 0.000000
650
+ -1.000000 0.000000 0.000000
651
+ -1.000000 0.000000 0.000000
652
+ -1.000000 0.000000 0.000000
653
+ 0.566528 0.000000 0.824042
654
+ 0.566528 0.000000 0.824042
655
+ 0.566528 0.000000 0.824042
656
+ 0.566528 0.000000 0.824042
657
+ 0.566528 0.000000 0.824042
658
+ 0.566528 0.000000 0.824042
659
+ -0.528558 0.000000 0.848897
660
+ -0.528558 0.000000 0.848897
661
+ -0.528558 0.000000 0.848897
662
+ -0.528558 0.000000 0.848897
663
+ -0.528558 0.000000 0.848897
664
+ -0.528558 0.000000 0.848897
665
+ 0.566528 0.000000 -0.824042
666
+ 0.566528 0.000000 -0.824042
667
+ 0.566528 0.000000 -0.824042
668
+ 0.566528 0.000000 -0.824042
669
+ 0.566528 0.000000 -0.824042
670
+ 0.566528 0.000000 -0.824042
671
+ -0.528558 0.000000 -0.848897
672
+ -0.528558 0.000000 -0.848897
673
+ -0.528558 0.000000 -0.848897
674
+ -0.528558 0.000000 -0.848897
675
+ -0.528558 0.000000 -0.848897
676
+ -0.528558 0.000000 -0.848897
677
+ 0.707107 0.000000 0.707107
678
+ 0.707107 0.000000 0.707107
679
+ 0.707107 0.000000 0.707107
680
+ 0.707107 0.000000 0.707107
681
+ 0.707107 0.000000 0.707107
682
+ 0.707107 0.000000 0.707107
683
+ -0.707106 0.000000 0.707107
684
+ -0.707106 0.000000 0.707107
685
+ -0.707106 0.000000 0.707107
686
+ -0.707106 0.000000 0.707107
687
+ -0.707106 0.000000 0.707107
688
+ -0.707106 0.000000 0.707107
689
+ 0.707107 0.000000 -0.707107
690
+ 0.707107 0.000000 -0.707107
691
+ 0.707107 0.000000 -0.707107
692
+ 0.707107 0.000000 -0.707107
693
+ 0.707107 0.000000 -0.707107
694
+ 0.707107 0.000000 -0.707107
695
+ -0.707106 0.000000 -0.707107
696
+ -0.707106 0.000000 -0.707107
697
+ -0.707106 0.000000 -0.707107
698
+ -0.707106 0.000000 -0.707107
699
+ -0.707106 0.000000 -0.707107
700
+ -0.707106 0.000000 -0.707107
701
+ 0.000000 0.000000 -1.000000
702
+ 0.000000 0.101678 -0.994817
703
+ 0.406718 0.096741 -0.908417
704
+ 0.406718 0.096741 -0.908417
705
+ 0.405590 0.000000 -0.914055
706
+ 0.000000 0.000000 -1.000000
707
+ 0.000000 0.101678 -0.994817
708
+ 0.000000 0.000000 -1.000000
709
+ -0.414653 0.010119 -0.909923
710
+ -0.414653 0.010119 -0.909923
711
+ -0.409827 0.091121 -0.907601
712
+ 0.000000 0.101678 -0.994817
713
+ 0.000000 -1.000000 0.000000
714
+ 0.000000 -1.000000 0.000000
715
+ 0.000000 -1.000000 0.000000
716
+ 0.000000 -1.000000 0.000000
717
+ 0.000000 -1.000000 0.000000
718
+ 0.000000 -1.000000 0.000000
719
+ 0.000000 -1.000000 0.000000
720
+ 0.000000 -1.000000 0.000000
721
+ 0.000000 -1.000000 0.000000
722
+ 0.000000 -1.000000 0.000000
723
+ 0.000000 -1.000000 0.000000
724
+ 0.000000 -1.000000 0.000000
725
+ 0.000000 0.000000 1.000000
726
+ 0.000000 0.000000 1.000000
727
+ 0.465347 0.000000 0.885129
728
+ 0.465347 0.000000 0.885129
729
+ 0.503521 0.036597 0.863208
730
+ 0.000000 0.000000 1.000000
731
+ 0.000000 0.000000 1.000000
732
+ 0.000000 0.000000 1.000000
733
+ -0.503521 0.036597 0.863208
734
+ -0.503521 0.036597 0.863208
735
+ -0.465347 0.000000 0.885129
736
+ 0.000000 0.000000 1.000000
737
+ 0.080284 0.883234 0.462009
738
+ 0.080284 0.883234 0.462009
739
+ 0.080284 0.883234 0.462009
740
+ 0.091015 0.890710 0.445366
741
+ 0.091015 0.890710 0.445366
742
+ 0.091015 0.890711 0.445366
743
+ -0.080284 0.883234 0.462009
744
+ -0.080284 0.883234 0.462009
745
+ -0.080284 0.883234 0.462009
746
+ -0.091015 0.890710 0.445366
747
+ -0.091015 0.890710 0.445366
748
+ -0.091015 0.890710 0.445366
749
+ 0.000000 -1.000000 0.000000
750
+ 0.000000 -1.000000 0.000000
751
+ 0.000000 -1.000000 0.000000
752
+ 0.000000 -1.000000 0.000000
753
+ 0.000000 -1.000000 0.000000
754
+ 0.000000 -1.000000 0.000000
755
+ 0.000000 -1.000000 0.000000
756
+ 0.000000 -1.000000 0.000000
757
+ 0.000000 -1.000000 0.000000
758
+ 0.000000 -1.000000 0.000000
759
+ 0.000000 -1.000000 0.000000
760
+ 0.000000 -1.000000 0.000000
761
+ 0.000000 -1.000000 0.000000
762
+ 0.000000 -1.000000 0.000000
763
+ 0.000000 -1.000000 0.000000
764
+ 0.000000 -1.000000 0.000000
765
+ 0.000000 -1.000000 0.000000
766
+ 0.000000 -1.000000 0.000000
767
+ 0.000000 -1.000000 0.000000
768
+ 0.000000 -1.000000 0.000000
769
+ 0.000000 -1.000000 0.000000
770
+ 0.000000 -1.000000 0.000000
771
+ 0.000000 -1.000000 0.000000
772
+ 0.000000 -1.000000 0.000000
773
+ 0.000000 0.951708 0.307005
774
+ 0.000000 0.951708 0.307005
775
+ 0.000000 0.951708 0.307005
776
+ 0.046308 0.962724 0.266491
777
+ 0.046308 0.962724 0.266491
778
+ 0.046308 0.962724 0.266491
779
+ 0.000000 0.951708 0.307005
780
+ 0.000000 0.951708 0.307005
781
+ 0.000000 0.951708 0.307005
782
+ -0.046308 0.962724 0.266491
783
+ -0.046308 0.962724 0.266491
784
+ -0.046308 0.962724 0.266491
785
+ -0.129017 0.764714 0.631321
786
+ -0.129017 0.764714 0.631321
787
+ -0.129017 0.764714 0.631321
788
+ -0.144472 0.789920 0.595948
789
+ -0.144472 0.789920 0.595948
790
+ -0.144472 0.789920 0.595948
791
+ 0.129017 0.764715 0.631321
792
+ 0.129017 0.764715 0.631321
793
+ 0.129017 0.764714 0.631321
794
+ 0.144472 0.789920 0.595948
795
+ 0.144472 0.789920 0.595948
796
+ 0.144472 0.789920 0.595948
797
+ 0.000000 -1.000000 0.000000
798
+ 0.000000 -1.000000 0.000000
799
+ 0.000000 -1.000000 0.000000
800
+ 0.000000 -1.000000 0.000000
801
+ 0.000000 -1.000000 0.000000
802
+ 0.000000 -1.000000 0.000000
803
+ 0.000000 -1.000000 0.000000
804
+ 0.000000 -1.000000 0.000000
805
+ 0.000000 -1.000000 0.000000
806
+ 0.000000 -1.000000 0.000000
807
+ 0.000000 -1.000000 0.000000
808
+ 0.000000 -1.000000 0.000000
809
+ 0.000000 -1.000000 0.000000
810
+ 0.000000 -1.000000 0.000000
811
+ 0.000000 -1.000000 0.000000
812
+ 0.000000 -1.000000 0.000000
813
+ 0.000000 -1.000000 0.000000
814
+ 0.000000 -1.000000 0.000000
815
+ 0.000000 1.000000 0.000000
816
+ 0.000000 1.000000 0.000000
817
+ 0.000000 1.000000 0.000000
818
+ 0.000000 1.000000 0.000000
819
+ 0.000000 1.000000 0.000000
820
+ 0.000000 1.000000 0.000000
821
+ 0.000000 1.000000 0.000000
822
+ 0.000000 1.000000 0.000000
823
+ 0.000000 1.000000 0.000000
824
+ 0.000000 1.000000 0.000000
825
+ 0.000000 1.000000 0.000000
826
+ 0.000000 1.000000 0.000000
827
+ 0.000000 1.000000 0.000000
828
+ 0.000000 1.000000 0.000000
829
+ 0.000000 1.000000 0.000000
830
+ 0.000000 1.000000 0.000000
831
+ 0.000000 1.000000 0.000000
832
+ 0.000000 1.000000 0.000000
833
+ 0.000000 0.101678 -0.994817
834
+ 0.000000 0.202301 -0.979323
835
+ 0.432802 0.170184 -0.885279
836
+ 0.432802 0.170184 -0.885279
837
+ 0.406718 0.096741 -0.908417
838
+ 0.000000 0.101678 -0.994817
839
+ 0.000000 0.202301 -0.979323
840
+ 0.000000 0.101678 -0.994817
841
+ -0.409827 0.091121 -0.907601
842
+ -0.409827 0.091121 -0.907601
843
+ -0.430792 0.172163 -0.885877
844
+ 0.000000 0.202301 -0.979323
845
+ 0.000000 0.000000 1.000000
846
+ 0.000000 0.000000 1.000000
847
+ 0.465347 0.000000 0.885129
848
+ 0.465347 0.000000 0.885129
849
+ 0.465347 0.000000 0.885129
850
+ 0.000000 0.000000 1.000000
851
+ 0.000000 0.000000 1.000000
852
+ 0.000000 0.000000 1.000000
853
+ -0.465347 0.000000 0.885129
854
+ -0.465347 0.000000 0.885129
855
+ -0.465347 0.000000 0.885129
856
+ 0.000000 0.000000 1.000000
857
+ 0.000000 1.000000 0.000000
858
+ 0.000000 1.000000 0.000000
859
+ 0.000000 1.000000 0.000000
860
+ 0.000000 1.000000 0.000000
861
+ 0.000000 1.000000 0.000000
862
+ 0.000000 1.000000 0.000000
863
+ 0.000000 1.000000 0.000000
864
+ 0.000000 1.000000 0.000000
865
+ 0.000000 1.000000 0.000000
866
+ 0.000000 1.000000 0.000000
867
+ 0.000000 1.000000 0.000000
868
+ 0.000000 1.000000 0.000000
869
+ 0.000000 1.000000 0.000000
870
+ 0.000000 1.000000 0.000000
871
+ 0.000000 1.000000 0.000000
872
+ 0.000000 1.000000 0.000000
873
+ 0.000000 1.000000 0.000000
874
+ 0.000000 1.000000 0.000000
875
+ 0.000000 0.000000 1.000000
876
+ 0.000000 0.000000 1.000000
877
+ 0.000000 0.000000 1.000000
878
+ 0.000000 0.000000 1.000000
879
+ 0.000000 0.000000 1.000000
880
+ 0.000000 0.000000 1.000000
881
+ 1.000000 0.000000 0.000000
882
+ 1.000000 0.000000 0.000000
883
+ 1.000000 0.000000 0.000000
884
+ 1.000000 0.000000 0.000000
885
+ 1.000000 0.000000 0.000000
886
+ 1.000000 0.000000 0.000000
887
+ 0.000000 -0.000000 -1.000000
888
+ 0.000000 -0.000000 -1.000000
889
+ 0.000000 -0.000000 -1.000000
890
+ 0.000000 -0.000000 -1.000000
891
+ 0.000000 -0.000000 -1.000000
892
+ 0.000000 -0.000000 -1.000000
893
+ -1.000000 0.000000 0.000000
894
+ -1.000000 0.000000 0.000000
895
+ -1.000000 0.000000 0.000000
896
+ -1.000000 0.000000 0.000000
897
+ -1.000000 0.000000 0.000000
898
+ -1.000000 0.000000 0.000000
899
+ 0.686623 0.000000 0.727013
900
+ 0.686623 0.000000 0.727013
901
+ 0.686623 0.000000 0.727013
902
+ 0.686623 0.000000 0.727013
903
+ 0.686623 0.000000 0.727013
904
+ 0.686623 0.000000 0.727013
905
+ -0.717581 0.000000 0.696475
906
+ -0.717581 0.000000 0.696475
907
+ -0.717581 0.000000 0.696475
908
+ -0.717581 0.000000 0.696475
909
+ -0.717581 0.000000 0.696475
910
+ -0.717581 0.000000 0.696475
911
+ 0.675725 -0.000000 -0.737154
912
+ 0.675725 -0.000000 -0.737154
913
+ 0.675725 -0.000000 -0.737154
914
+ 0.675725 -0.000000 -0.737154
915
+ 0.675725 -0.000000 -0.737154
916
+ 0.675724 -0.000000 -0.737154
917
+ -0.707107 -0.000000 -0.707106
918
+ -0.707107 -0.000000 -0.707106
919
+ -0.707107 -0.000000 -0.707106
920
+ -0.707107 -0.000000 -0.707106
921
+ -0.707107 -0.000000 -0.707106
922
+ -0.707107 -0.000000 -0.707106
923
+ 0.000000 1.000000 0.000000
924
+ 0.000000 1.000000 0.000000
925
+ 0.000000 1.000000 0.000000
926
+ 0.000000 1.000000 0.000000
927
+ 0.000000 1.000000 0.000000
928
+ 0.000000 1.000000 0.000000
929
+ 0.000000 1.000000 0.000000
930
+ 0.000000 1.000000 0.000000
931
+ 0.000000 1.000000 0.000000
932
+ 0.000000 1.000000 0.000000
933
+ 0.000000 1.000000 0.000000
934
+ 0.000000 1.000000 0.000000
935
+ 0.000000 1.000000 0.000000
936
+ 0.000000 1.000000 0.000000
937
+ 0.000000 1.000000 0.000000
938
+ 0.000000 1.000000 0.000000
939
+ 0.000000 1.000000 0.000000
940
+ 0.000000 1.000000 0.000000
941
+ 0.000000 0.000000 1.000000
942
+ 0.000000 0.000000 1.000000
943
+ 0.000000 0.000000 1.000000
944
+ 0.000000 0.000000 1.000000
945
+ 0.000000 0.000000 1.000000
946
+ 0.000000 0.000000 1.000000
947
+ 1.000000 0.000000 0.000000
948
+ 1.000000 0.000000 0.000000
949
+ 1.000000 0.000000 0.000000
950
+ 1.000000 0.000000 0.000000
951
+ 1.000000 0.000000 0.000000
952
+ 1.000000 0.000000 0.000000
953
+ 0.000000 -0.000000 -1.000000
954
+ 0.000000 -0.000000 -1.000000
955
+ 0.000000 -0.000000 -1.000000
956
+ 0.000000 -0.000000 -1.000000
957
+ 0.000000 -0.000000 -1.000000
958
+ 0.000000 -0.000000 -1.000000
959
+ -1.000000 0.000000 0.000000
960
+ -1.000000 0.000000 0.000000
961
+ -1.000000 0.000000 0.000000
962
+ -1.000000 0.000000 0.000000
963
+ -1.000000 0.000000 0.000000
964
+ -1.000000 0.000000 0.000000
965
+ 0.717580 0.000000 0.696476
966
+ 0.717581 0.000000 0.696476
967
+ 0.717580 0.000000 0.696476
968
+ 0.717580 0.000000 0.696476
969
+ 0.717581 0.000000 0.696476
970
+ 0.717580 0.000000 0.696476
971
+ -0.676625 0.000000 0.736328
972
+ -0.676625 0.000000 0.736328
973
+ -0.676625 0.000000 0.736328
974
+ -0.676625 0.000000 0.736328
975
+ -0.676625 0.000000 0.736328
976
+ -0.676625 0.000000 0.736328
977
+ 0.707107 -0.000000 -0.707107
978
+ 0.707107 -0.000000 -0.707107
979
+ 0.707107 -0.000000 -0.707107
980
+ 0.707107 -0.000000 -0.707107
981
+ 0.707107 -0.000000 -0.707107
982
+ 0.707107 -0.000000 -0.707107
983
+ -0.665615 -0.000000 -0.746295
984
+ -0.665615 -0.000000 -0.746295
985
+ -0.665615 -0.000000 -0.746295
986
+ -0.665615 -0.000000 -0.746295
987
+ -0.665615 -0.000000 -0.746295
988
+ -0.665615 -0.000000 -0.746295
989
+ </float_array>
990
+ <technique_common>
991
+ <accessor source="#drc_r_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_r_foot-UV0">
999
+ <float_array id="drc_r_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_r_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_r_foot-VERTEX">
1271
+ <input semantic="POSITION" source="#drc_r_foot-POSITION"/>
1272
+ </vertices>
1273
+ <triangles count="248" material="drc_extremities_diffuse">
1274
+ <input semantic="VERTEX" offset="0" source="#drc_r_foot-VERTEX"/>
1275
+ <input semantic="NORMAL" offset="1" source="#drc_r_foot-Normal0"/>
1276
+ <input semantic="TEXCOORD" offset="2" set="0" source="#drc_r_foot-UV0"/>
1277
+ <p> 2 0 1 3 1 156 0 2 158 0 3 158 1 4 0 2 5 1 6 6 2 7 7 3 4 8 160 4 9 160 5 10 162 6 11 2 2 12 1 10 13 159 8 14 157 8 15 157 9 16 4 2 17 1 13 18 149 14 19 6 11 20 5 11 21 5 12 22 148 13 23 149 17 24 133 18 25 128 15 26 7 15 27 7 16 28 8 17 29 133 21 30 10 22 31 136 19 32 138 19 33 138 20 34 9 21 35 10 24 36 131 25 37 132 15 38 7 15 39 7 23 40 130 24 41 131 28 42 13 29 43 14 26 44 11 26 45 11 27 46 12 28 47 13 32 48 144 33 49 16 30 50 15 30 51 15 31 52 142 32 53 144 36 54 19 37 55 20 34 56 17 34 57 17 35 58 18 36 59 19 39 60 165 6 61 2 5 62 162 5 63 162 38 64 164 39 65 165 1 66 0 7 67 3 40 68 163 40 69 163 41 70 161 1 71 0 20 72 9 19 73 138 42 74 140 42 75 140 43 76 21 20 77 9 21 78 10 44 79 135 17 80 133 17 81 133 16 82 8 21 83 10 29 84 14 46 85 23 45 86 22 45 87 22 26 88 11 29 89 14 27 90 12 48 91 239 47 92 240 47 93 240 28 94 13 27 95 12 37 96 20 32 97 254 31 98 257 31 99 257 34 100 17 37 101 20 35 102 18 50 103 25 49 104 24 49 105 24 36 106 19 35 107 18 46 108 23 13 109 234 12 110 235 12 111 235 45 112 22 46 113 23 50 114 25 52 115 252 51 116 250 51 117 250 49 118 24 50 119 25 2 120 1 1 121 0 41 122 161 41 123 161 10 124 159 2 125 1 7 126 3 6 127 2 53 128 166 53 129 166 40 130 163 7 131 3 2 132 1 9 133 4 54 134 152 54 135 152 3 136 156 2 137 1 14 138 6 51 139 153 52 140 154 52 141 154 11 142 5 14 143 6 16 144 8 15 145 7 25 146 132 25 147 132 55 148 134 16 149 8 44 150 135 21 151 10 20 152 9 20 153 9 56 154 137 44 155 135 23 156 130 15 157 7 18 158 128 18 159 128 57 160 129 23 161 130 33 162 16 47 163 143 48 164 141 48 165 141 30 166 15 33 167 16 6 168 2 39 169 165 58 170 167 58 171 167 53 172 166 6 173 2 7 174 3 1 175 0 0 176 158 0 177 158 4 178 160 7 179 3 56 180 137 20 181 9 43 182 21 43 183 21 59 184 139 56 185 137 22 186 136 21 187 10 16 188 8 16 189 8 55 190 134 22 191 136 62 192 108 63 193 102 60 194 106 60 195 106 61 196 107 62 197 108 62 198 108 64 199 109 63 200 102 66 201 104 60 202 106 63 203 102 63 204 102 65 205 103 66 206 104 67 207 105 60 208 106 66 209 104 61 210 115 60 211 110 68 212 113 68 213 113 69 214 114 61 215 115 64 216 119 62 217 117 70 218 116 70 219 116 71 220 118 64 221 119 65 222 123 63 223 121 72 224 120 72 225 120 73 226 122 65 227 123 67 228 127 66 229 125 74 230 124 74 231 124 75 232 126 67 233 127 78 234 52 79 235 54 76 236 50 76 237 50 77 238 51 78 239 52 78 240 52 80 241 53 79 242 54 82 243 56 76 244 50 79 245 54 79 246 54 81 247 55 82 248 56 83 249 57 76 250 50 82 251 56 77 252 99 76 253 101 84 254 100 84 255 100 85 256 98 77 257 99 80 258 91 78 259 95 86 260 94 86 261 94 87 262 90 80 263 91 81 264 86 79 265 87 88 266 84 88 267 84 89 268 85 81 269 86 83 270 93 82 271 89 90 272 88 90 273 88 91 274 92 83 275 93 78 276 95 77 277 99 85 278 98 85 279 98 86 280 94 78 281 95 91 282 92 84 283 97 76 284 96 76 285 96 83 286 93 91 287 92 79 288 87 80 289 91 87 290 90 87 291 90 88 292 84 79 293 87 82 294 89 81 295 86 89 296 85 89 297 85 90 298 88 82 299 89 94 300 40 95 301 34 92 302 38 92 303 38 93 304 39 94 305 40 94 306 40 96 307 41 95 308 34 98 309 36 92 310 38 95 311 34 95 312 34 97 313 35 98 314 36 99 315 37 92 316 38 98 317 36 93 318 189 92 319 186 100 320 187 100 321 187 101 322 188 93 323 189 96 324 192 94 325 193 102 326 190 102 327 190 103 328 191 96 329 192 97 330 180 95 331 181 104 332 178 104 333 178 105 334 179 97 335 180 99 336 185 98 337 183 106 338 182 106 339 182 107 340 184 99 341 185 94 342 193 93 343 197 101 344 196 101 345 196 102 346 190 94 347 193 107 348 184 100 349 187 92 350 186 92 351 186 99 352 185 107 353 184 95 354 195 96 355 192 103 356 191 103 357 191 104 358 194 95 359 195 98 360 183 97 361 180 105 362 179 105 363 179 106 364 182 98 365 183 110 366 44 111 367 46 108 368 42 108 369 42 109 370 43 110 371 44 110 372 44 112 373 45 111 374 46 114 375 48 108 376 42 111 377 46 111 378 46 113 379 47 114 380 48 115 381 49 108 382 42 114 383 48 109 384 215 108 385 217 116 386 216 116 387 216 117 388 214 109 389 215 112 390 211 110 391 213 118 392 212 118 393 212 119 394 208 112 395 211 113 396 200 111 397 201 120 398 198 120 399 198 121 400 199 113 401 200 115 402 205 114 403 203 122 404 202 122 405 202 123 406 204 115 407 205 110 408 213 109 409 215 117 410 214 117 411 214 118 412 212 110 413 213 123 414 204 116 415 207 108 416 206 108 417 206 115 418 205 123 419 204 111 420 210 112 421 211 119 422 208 119 423 208 120 424 209 111 425 210 114 426 203 113 427 200 121 428 199 121 429 199 122 430 202 114 431 203 62 432 117 61 433 115 69 434 114 69 435 114 70 436 116 62 437 117 75 438 112 68 439 113 60 440 110 60 441 110 67 442 111 75 443 112 63 444 121 64 445 119 71 446 118 71 447 118 72 448 120 63 449 121 66 450 125 65 451 123 73 452 122 73 453 122 74 454 124 66 455 125 12 456 148 11 457 5 23 458 150 23 459 150 57 460 151 12 461 148 14 462 6 13 463 149 54 464 152 54 465 152 9 466 4 14 467 6 56 468 238 27 469 12 26 470 11 26 471 11 44 472 231 56 473 238 29 474 14 28 475 13 5 476 241 5 477 241 4 478 232 29 479 14 31 480 142 30 481 15 43 482 21 43 483 21 42 484 140 31 485 142 33 486 16 32 487 144 58 488 147 58 489 147 39 490 145 33 491 16 35 492 18 34 493 17 19 494 258 19 495 258 22 496 255 35 497 18 53 498 251 37 499 20 36 500 19 36 501 19 40 502 249 53 503 251 44 504 231 26 505 11 45 506 22 45 507 22 17 508 230 44 509 231 46 510 23 29 511 14 4 512 232 4 513 232 0 514 233 46 515 23 28 516 13 47 517 240 38 518 243 38 519 243 5 520 241 28 521 13 59 522 242 48 523 239 27 524 12 27 525 12 56 526 238 59 527 242 34 528 17 31 529 257 42 530 261 42 531 261 19 532 258 34 533 17 58 534 253 32 535 254 37 536 20 37 537 20 53 538 251 58 539 253 40 540 249 36 541 19 49 542 24 49 543 24 41 544 247 40 545 249 50 546 25 35 547 18 22 548 255 22 549 255 55 550 256 50 551 25 45 552 22 57 553 237 18 554 236 18 555 236 17 556 230 45 557 22 12 558 235 57 559 237 45 560 22 13 561 234 0 562 233 3 563 244 3 564 244 54 565 245 13 566 234 46 567 23 0 568 233 13 569 234 49 570 24 8 571 248 10 572 246 10 573 246 41 574 247 49 575 24 51 576 250 8 577 248 49 578 24 52 579 252 55 580 256 25 581 259 25 582 259 24 583 260 52 584 252 50 585 25 55 586 256 52 587 252 11 588 5 52 589 154 24 590 155 24 591 155 23 592 150 11 593 5 51 594 153 14 595 6 9 596 4 9 597 4 8 598 157 51 599 153 30 600 15 48 601 141 59 602 139 59 603 139 43 604 21 30 605 15 47 606 143 33 607 16 39 608 145 39 609 145 38 610 146 47 611 143 126 612 60 127 613 62 124 614 58 124 615 58 125 616 59 126 617 60 126 618 60 128 619 61 127 620 62 130 621 64 124 622 58 127 623 62 127 624 62 129 625 63 130 626 64 131 627 65 124 628 58 130 629 64 125 630 68 124 631 69 132 632 66 132 633 66 133 634 67 125 635 68 128 636 73 126 637 71 134 638 70 134 639 70 135 640 72 128 641 73 129 642 77 127 643 75 136 644 74 136 645 74 137 646 76 129 647 77 131 648 81 130 649 79 138 650 78 138 651 78 139 652 80 131 653 81 126 654 71 125 655 68 133 656 67 133 657 67 134 658 70 126 659 71 139 660 80 132 661 83 124 662 82 124 663 82 131 664 81 139 665 80 127 666 75 128 667 73 135 668 72 135 669 72 136 670 74 127 671 75 130 672 79 129 673 77 137 674 76 137 675 76 138 676 78 130 677 79 142 678 28 143 679 30 140 680 26 140 681 26 141 682 27 142 683 28 142 684 28 144 685 29 143 686 30 146 687 32 140 688 26 143 689 30 143 690 30 145 691 31 146 692 32 147 693 33 140 694 26 146 695 32 141 696 227 140 697 229 148 698 228 148 699 228 149 700 224 141 701 227 144 702 220 142 703 221 150 704 218 150 705 218 151 706 219 144 707 220 145 708 175 143 709 177 152 710 176 152 711 176 153 712 174 145 713 175 147 714 169 146 715 173 154 716 172 154 717 172 155 718 170 147 719 169 142 720 226 141 721 227 149 722 224 149 723 224 150 724 225 142 725 226 155 726 170 148 727 171 140 728 168 140 729 168 147 730 169 155 731 170 143 732 223 144 733 220 151 734 219 151 735 219 152 736 222 143 737 223 146 738 173 145 739 175 153 740 174 153 741 174 154 742 172 146 743 173</p>
1278
+ </triangles>
1279
+ </mesh>
1280
+ </geometry>
1281
+ </library_geometries>
1282
+ <library_visual_scenes>
1283
+ <visual_scene id="r_foot" name="r_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="r_foot_node" id="r_foot_node" sid="r_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_r_foot" id="drc_r_foot" sid="drc_r_foot">
1299
+ <matrix sid="matrix">-0.000000 0.000000 1.010853 -0.004559 1.010853 0.000000 0.000000 0.092149 0.000000 1.010853 -0.000000 0.836706 0.000000 0.000000 0.000000 1.000000</matrix>
1300
+ <instance_geometry url="#drc_r_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="#r_foot"></instance_visual_scene>
1328
+ </scene>
1329
+ </COLLADA>
1330
+