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,1378 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <COLLADA xmlns="http://www.collada.org/2005/11/COLLADASchema" version="1.4.1">
3
+ <asset><contributor><author></author><authoring_tool>FBX COLLADA exporter</authoring_tool><comments></comments></contributor><created>2013-08-22T20:07:25Z</created><keywords></keywords><modified>2013-08-22T20:07:25Z</modified><revision></revision><subject></subject><title></title><unit meter="1.000000" name="centimeter"></unit><up_axis>Z_UP</up_axis></asset>
4
+ <library_images>
5
+ <image id="drc_extremities_diffuse-image" name="drc_extremities_diffuse"><init_from>../materials/textures/drc_extremities_diffuse.jpg</init_from></image>
6
+ </library_images>
7
+ <library_materials>
8
+ <material id="drc_extremities_diffuse" name="drc_extremities_diffuse">
9
+ <instance_effect url="#drc_extremities_diffuse-fx"/>
10
+ </material>
11
+ </library_materials>
12
+ <library_effects>
13
+ <effect id="drc_extremities_diffuse-fx" name="drc_extremities_diffuse">
14
+ <profile_COMMON>
15
+ <technique sid="standard">
16
+ <phong>
17
+ <emission>
18
+ <color sid="emission">0.000000 0.000000 0.000000 1.000000</color>
19
+ </emission>
20
+ <ambient>
21
+ <color sid="ambient">0.588235 0.588235 0.588235 1.000000</color>
22
+ </ambient>
23
+ <diffuse>
24
+ <texture texture="drc_extremities_diffuse-image" texcoord="CHANNEL0">
25
+ <extra>
26
+ <technique profile="MAYA">
27
+ <wrapU sid="wrapU0">TRUE</wrapU>
28
+ <wrapV sid="wrapV0">TRUE</wrapV>
29
+ <blend_mode>ADD</blend_mode>
30
+ </technique>
31
+ </extra>
32
+ </texture>
33
+ </diffuse>
34
+ <specular>
35
+ <color sid="specular">0.000000 0.000000 0.000000 1.000000</color>
36
+ </specular>
37
+ <shininess>
38
+ <float sid="shininess">2.000000</float>
39
+ </shininess>
40
+ <reflective>
41
+ <color sid="reflective">0.000000 0.000000 0.000000 1.000000</color>
42
+ </reflective>
43
+ <reflectivity>
44
+ <float sid="reflectivity">1.000000</float>
45
+ </reflectivity>
46
+ <transparent opaque="RGB_ZERO">
47
+ <color sid="transparent">1.000000 1.000000 1.000000 1.000000</color>
48
+ </transparent>
49
+ <transparency>
50
+ <float sid="transparency">0.000000</float>
51
+ </transparency>
52
+ </phong>
53
+ </technique>
54
+ </profile_COMMON>
55
+ </effect>
56
+ </library_effects>
57
+ <library_geometries>
58
+ <geometry id="drc_l_elbow_rx-lib" name="drc_l_elbow_rxMesh">
59
+ <mesh>
60
+ <source id="drc_l_elbow_rx-POSITION">
61
+ <float_array id="drc_l_elbow_rx-POSITION-array" count="444">
62
+ -0.026473 0.130768 -0.026431
63
+ -0.026473 0.066080 -0.026503
64
+ 0.070974 0.066080 -0.026503
65
+ 0.070974 0.130768 -0.026431
66
+ -0.026473 0.130768 0.029894
67
+ 0.070974 0.130768 0.029894
68
+ 0.070974 0.066151 0.029894
69
+ -0.026473 0.066151 0.029894
70
+ 0.070974 0.066151 0.022031
71
+ 0.070974 0.130768 0.022031
72
+ 0.070974 0.130768 -0.018568
73
+ 0.070974 0.066080 -0.018640
74
+ -0.026473 0.066151 0.022031
75
+ -0.026473 0.066080 -0.018640
76
+ -0.038401 0.130768 0.022031
77
+ -0.038401 0.066151 0.022031
78
+ -0.038401 0.066080 -0.018640
79
+ -0.038401 0.130768 -0.018569
80
+ -0.026473 0.130768 0.022031
81
+ -0.026473 0.130768 -0.018569
82
+ -0.038401 0.130768 0.029894
83
+ -0.038401 0.066151 0.029894
84
+ -0.038401 0.066080 -0.026503
85
+ -0.038401 0.130768 -0.026431
86
+ 0.070974 0.145349 0.022031
87
+ 0.070974 0.145421 -0.018640
88
+ -0.026473 0.145421 -0.018640
89
+ -0.026473 0.145349 0.022031
90
+ 0.070974 0.174655 -0.003987
91
+ 0.070974 0.174584 -0.018640
92
+ -0.026473 0.174584 -0.018640
93
+ -0.026473 0.174655 -0.003987
94
+ 0.054396 0.188665 0.001874
95
+ 0.043074 0.188593 -0.025359
96
+ 0.043074 0.134985 -0.025359
97
+ 0.054396 0.134985 0.001946
98
+ 0.015882 0.188665 -0.036581
99
+ 0.015882 0.134985 -0.036652
100
+ -0.011411 0.188593 -0.025359
101
+ -0.011411 0.134985 -0.025359
102
+ -0.022631 0.188665 0.001874
103
+ -0.022631 0.134985 0.001946
104
+ -0.011411 0.188665 0.029179
105
+ -0.011411 0.134985 0.029107
106
+ 0.015882 0.188665 0.040472
107
+ 0.015882 0.134985 0.040401
108
+ 0.043074 0.188665 0.029179
109
+ 0.043074 0.134985 0.029107
110
+ 0.048634 0.128409 -0.030934
111
+ 0.062179 0.128409 0.001946
112
+ 0.015882 0.128480 -0.044444
113
+ -0.016870 0.128409 -0.030934
114
+ -0.030516 0.128409 0.001946
115
+ -0.016870 0.128409 0.034683
116
+ 0.015882 0.128409 0.048264
117
+ 0.048634 0.128409 0.034683
118
+ 0.048634 0.066009 -0.030863
119
+ 0.062179 0.066009 0.001874
120
+ 0.015882 0.066009 -0.044444
121
+ -0.016870 0.066009 -0.030863
122
+ -0.030516 0.066009 0.001874
123
+ -0.016870 0.066080 0.034683
124
+ 0.015882 0.066080 0.048264
125
+ 0.048634 0.066080 0.034683
126
+ 0.073197 -0.027556 0.011381
127
+ 0.073197 -0.019622 -0.007847
128
+ 0.019723 -0.019622 -0.007847
129
+ 0.019723 -0.027556 0.011381
130
+ 0.073197 -0.000323 -0.015852
131
+ 0.019723 -0.000323 -0.015852
132
+ 0.073197 0.018904 -0.007918
133
+ 0.019723 0.018904 -0.007918
134
+ 0.073197 0.026839 0.011309
135
+ 0.019723 0.026839 0.011309
136
+ 0.073197 0.018833 0.030608
137
+ 0.019723 0.018833 0.030608
138
+ 0.073197 -0.000395 0.038542
139
+ 0.019723 -0.000395 0.038542
140
+ 0.073197 -0.019622 0.030608
141
+ 0.019723 -0.019622 0.030608
142
+ 0.073197 -0.033275 0.011381
143
+ 0.073197 -0.032488 -0.015709
144
+ 0.073197 -0.021695 -0.024072
145
+ 0.073197 0.025981 -0.023000
146
+ 0.073197 0.034915 -0.015066
147
+ 0.073197 0.029626 0.031538
148
+ 0.073197 -0.000395 0.044261
149
+ 0.073197 -0.023625 0.034611
150
+ 0.082093 -0.033275 0.011381
151
+ 0.082093 -0.032488 -0.015709
152
+ 0.082093 -0.021695 -0.024072
153
+ 0.082093 0.025981 -0.023000
154
+ 0.082093 0.034915 -0.015066
155
+ 0.082093 0.029626 0.031538
156
+ 0.082093 -0.000395 0.044261
157
+ 0.082093 -0.023625 0.034611
158
+ 0.073197 0.060004 -0.014995
159
+ 0.073197 0.061362 0.031538
160
+ 0.082093 0.056216 -0.015066
161
+ 0.082093 0.061362 0.031538
162
+ 0.069356 0.067295 -0.027146
163
+ 0.069356 0.067795 0.031538
164
+ 0.082093 0.067295 -0.027146
165
+ 0.082093 0.067795 0.031538
166
+ 0.069356 0.091526 -0.027074
167
+ 0.069356 0.091526 0.031538
168
+ 0.082093 0.091526 -0.027074
169
+ 0.082093 0.091526 0.031538
170
+ -0.046285 0.027339 0.019672
171
+ -0.046285 0.018833 0.030608
172
+ -0.046285 -0.000395 0.038542
173
+ -0.046285 -0.027556 0.011381
174
+ -0.046285 -0.019622 0.030608
175
+ -0.046285 0.005324 -0.019784
176
+ -0.046285 -0.019622 -0.007847
177
+ -0.040321 -0.027556 0.011381
178
+ -0.040321 -0.019622 -0.007847
179
+ -0.040321 -0.019622 0.030608
180
+ -0.040321 -0.000395 0.038542
181
+ -0.040321 0.018833 0.030608
182
+ -0.040321 0.027339 0.019672
183
+ -0.040321 0.005324 -0.019784
184
+ -0.051239 0.005324 -0.019784
185
+ -0.051239 0.058289 -0.019712
186
+ -0.051239 0.055930 0.019672
187
+ -0.051239 0.027339 0.019672
188
+ -0.046285 0.055930 0.019672
189
+ -0.040321 0.055930 0.019672
190
+ -0.040321 0.058289 -0.019712
191
+ -0.046285 0.058289 -0.019712
192
+ -0.051239 0.065937 -0.023786
193
+ -0.051239 0.063507 0.025248
194
+ -0.046285 0.063507 0.025248
195
+ -0.040321 0.063507 0.025248
196
+ -0.040321 0.065937 -0.023786
197
+ -0.046285 0.065937 -0.023786
198
+ -0.051239 0.066866 -0.026860
199
+ -0.051239 0.066795 0.031538
200
+ -0.046285 0.066795 0.031538
201
+ -0.040321 0.066795 0.031538
202
+ -0.040321 0.066866 -0.026860
203
+ -0.046285 0.066866 -0.026860
204
+ -0.051239 0.091026 -0.026860
205
+ -0.051239 0.090954 0.031538
206
+ -0.046285 0.090954 0.031538
207
+ -0.040321 0.090954 0.031538
208
+ -0.040321 0.091026 -0.026860
209
+ -0.046285 0.091026 -0.026860
210
+ </float_array>
211
+ <technique_common>
212
+ <accessor source="#drc_l_elbow_rx-POSITION-array" count="148" stride="3">
213
+ <param name="X" type="float"/>
214
+ <param name="Y" type="float"/>
215
+ <param name="Z" type="float"/>
216
+ </accessor>
217
+ </technique_common>
218
+ </source>
219
+ <source id="drc_l_elbow_rx-Normal0">
220
+ <float_array id="drc_l_elbow_rx-Normal0-array" count="2520">
221
+ 0.000000 0.001104 -0.999999
222
+ 0.000000 0.001104 -0.999999
223
+ 0.000000 0.001104 -0.999999
224
+ 0.000000 0.001104 -0.999999
225
+ 0.000000 0.001104 -0.999999
226
+ 0.000000 0.001104 -0.999999
227
+ -0.000000 0.000000 1.000000
228
+ -0.000000 0.000000 1.000000
229
+ -0.000000 0.000000 1.000000
230
+ -0.000000 0.000000 1.000000
231
+ -0.000000 0.000000 1.000000
232
+ -0.000000 0.000000 1.000000
233
+ 1.000000 0.000000 -0.000000
234
+ 1.000000 0.000000 -0.000000
235
+ 1.000000 0.000000 -0.000000
236
+ 1.000000 0.000000 0.000000
237
+ 1.000000 0.000000 0.000000
238
+ 1.000000 0.000000 0.000000
239
+ -0.000000 -0.999999 0.001756
240
+ -0.000000 -0.999998 0.001756
241
+ -0.000000 -0.999999 0.001756
242
+ -0.000000 -0.999999 0.001756
243
+ -0.000000 -0.999999 0.001756
244
+ -0.000000 -0.999999 0.001756
245
+ -1.000000 -0.000000 -0.000000
246
+ -1.000000 -0.000000 -0.000000
247
+ -1.000000 -0.000000 -0.000000
248
+ -1.000000 -0.000000 -0.000000
249
+ -1.000000 -0.000000 -0.000000
250
+ -1.000000 -0.000000 -0.000000
251
+ 0.000000 1.000000 0.000000
252
+ 0.000000 1.000000 0.000000
253
+ 0.000000 1.000000 0.000000
254
+ 0.000000 1.000000 0.000000
255
+ 0.000000 1.000000 0.000000
256
+ 0.000000 1.000000 0.000000
257
+ -0.000000 1.000000 0.000004
258
+ -0.000000 1.000000 0.000004
259
+ -0.000000 1.000000 0.000004
260
+ -0.000000 1.000000 0.000004
261
+ -0.000000 1.000000 0.000004
262
+ -0.000000 1.000000 0.000004
263
+ 1.000000 0.000000 0.000001
264
+ 1.000000 0.000000 0.000001
265
+ 1.000000 0.000000 0.000001
266
+ 1.000000 0.000000 0.000001
267
+ 1.000000 0.000000 0.000001
268
+ 1.000000 0.000000 0.000001
269
+ 1.000000 0.000000 0.000001
270
+ 1.000000 0.000000 0.000001
271
+ 1.000000 0.000000 0.000001
272
+ 1.000000 0.000000 0.000001
273
+ 1.000000 0.000000 0.000001
274
+ 1.000000 0.000000 0.000001
275
+ 0.000000 -1.000000 -0.000004
276
+ 0.000000 -1.000000 -0.000004
277
+ 0.000000 -1.000000 -0.000004
278
+ 0.000000 -1.000000 -0.000004
279
+ 0.000000 -1.000000 -0.000004
280
+ 0.000000 -1.000000 -0.000004
281
+ 0.000000 -1.000000 -0.000004
282
+ 0.000000 -1.000000 -0.000004
283
+ 0.000000 -1.000000 -0.000004
284
+ 0.000000 -1.000000 -0.000004
285
+ 0.000000 -1.000000 -0.000004
286
+ 0.000000 -1.000000 -0.000004
287
+ -1.000000 -0.000000 0.000000
288
+ -1.000000 -0.000000 0.000000
289
+ -1.000000 -0.000000 0.000000
290
+ -1.000000 -0.000000 -0.000000
291
+ -1.000000 -0.000000 -0.000000
292
+ -1.000000 -0.000000 -0.000000
293
+ -1.000000 -0.000000 -0.000000
294
+ -1.000000 -0.000000 -0.000000
295
+ -1.000000 -0.000000 -0.000000
296
+ -1.000000 -0.000000 -0.000000
297
+ -1.000000 -0.000000 -0.000000
298
+ -1.000000 -0.000000 -0.000000
299
+ 1.000000 0.000000 0.000000
300
+ 1.000000 0.000000 0.000000
301
+ 1.000000 0.000000 0.000000
302
+ 1.000000 0.000000 0.000000
303
+ 1.000000 0.000000 0.000000
304
+ 1.000000 0.000000 0.000000
305
+ -1.000000 0.000000 -0.000000
306
+ -1.000000 0.000000 -0.000000
307
+ -1.000000 0.000000 -0.000000
308
+ -1.000000 -0.000000 -0.000000
309
+ -1.000000 -0.000000 -0.000000
310
+ -1.000000 -0.000000 -0.000000
311
+ -0.000000 -0.000002 1.000000
312
+ -0.000000 -0.000002 1.000000
313
+ -0.000000 -0.000002 1.000000
314
+ -0.000000 -0.000002 1.000000
315
+ -0.000000 -0.000002 1.000000
316
+ -0.000000 -0.000002 1.000000
317
+ 0.000000 -0.004880 -0.999988
318
+ 0.000000 -0.004880 -0.999988
319
+ 0.000000 -0.004880 -0.999988
320
+ 0.000000 -0.004880 -0.999988
321
+ 0.000000 -0.004880 -0.999988
322
+ 0.000000 -0.004880 -0.999988
323
+ 1.000000 0.000000 0.000000
324
+ 1.000000 0.000000 0.000000
325
+ 1.000000 0.000000 0.000000
326
+ 1.000000 0.000000 0.000000
327
+ 1.000000 0.000000 0.000000
328
+ 1.000000 0.000000 0.000000
329
+ -1.000000 -0.000000 -0.000000
330
+ -1.000000 -0.000000 -0.000000
331
+ -1.000000 -0.000000 -0.000000
332
+ -1.000000 -0.000000 -0.000000
333
+ -1.000000 -0.000000 -0.000000
334
+ -1.000000 -0.000000 -0.000000
335
+ -0.000000 0.663910 0.747813
336
+ -0.000000 0.663910 0.747813
337
+ -0.000000 0.663910 0.747813
338
+ -0.000000 0.663910 0.747813
339
+ -0.000000 0.663910 0.747813
340
+ -0.000000 0.663910 0.747813
341
+ 0.000000 0.000000 -1.000000
342
+ 0.000000 0.000000 -1.000000
343
+ 0.000000 0.000000 -1.000000
344
+ 0.000000 0.000000 -1.000000
345
+ 0.000000 0.000000 -1.000000
346
+ 0.000000 0.000000 -1.000000
347
+ 0.000000 0.999988 -0.004880
348
+ 0.000000 0.999988 -0.004880
349
+ 0.000000 0.999988 -0.004880
350
+ 0.000000 0.999988 -0.004880
351
+ 0.000000 0.999988 -0.004880
352
+ 0.000000 0.999988 -0.004880
353
+ 0.000000 0.001104 -0.999999
354
+ 0.000000 0.001104 -0.999999
355
+ 0.000000 0.001104 -0.999999
356
+ 0.000000 0.001104 -0.999999
357
+ 0.000000 0.001104 -0.999999
358
+ 0.000000 0.001104 -0.999999
359
+ -0.000000 1.000000 0.000004
360
+ -0.000000 1.000000 0.000004
361
+ -0.000000 1.000000 0.000004
362
+ -0.000000 1.000000 0.000004
363
+ -0.000000 1.000000 0.000004
364
+ -0.000000 1.000000 0.000004
365
+ 0.000000 1.000000 0.000000
366
+ 0.000000 1.000000 0.000000
367
+ 0.000000 1.000000 0.000000
368
+ 0.000000 1.000000 0.000000
369
+ 0.000000 1.000000 0.000000
370
+ 0.000000 1.000000 0.000000
371
+ 0.000000 1.000000 0.000000
372
+ 0.000000 1.000000 0.000000
373
+ 0.000000 1.000000 0.000000
374
+ 0.000000 1.000000 0.000000
375
+ 0.000000 1.000000 0.000000
376
+ 0.000000 1.000000 0.000000
377
+ -0.000000 0.000000 1.000000
378
+ -0.000000 0.000000 1.000000
379
+ -0.000000 0.000000 1.000000
380
+ -0.000000 0.000000 1.000000
381
+ -0.000000 0.000000 1.000000
382
+ -0.000000 0.000000 1.000000
383
+ 0.000000 -1.000000 -0.000004
384
+ 0.000000 -1.000000 -0.000004
385
+ 0.000000 -1.000000 -0.000004
386
+ 0.000000 -1.000000 -0.000004
387
+ 0.000000 -1.000000 -0.000004
388
+ 0.000000 -1.000000 -0.000004
389
+ -0.000000 -0.999998 0.001756
390
+ -0.000000 -0.999999 0.001756
391
+ -0.000000 -0.999998 0.001756
392
+ -0.000000 -0.999998 0.001756
393
+ -0.000000 -0.999999 0.001756
394
+ -0.000000 -0.999998 0.001756
395
+ 0.000000 -1.000000 -0.000004
396
+ 0.000000 -1.000000 -0.000004
397
+ 0.000000 -1.000000 -0.000004
398
+ 0.000000 -1.000000 -0.000004
399
+ 0.000000 -1.000000 -0.000004
400
+ 0.000000 -1.000000 -0.000004
401
+ 0.923740 -0.000510 -0.383019
402
+ 0.923740 -0.000510 -0.383019
403
+ 0.923740 -0.000510 -0.383019
404
+ 0.923385 -0.000000 -0.383876
405
+ 0.923385 -0.000000 -0.383876
406
+ 0.923385 -0.000000 -0.383876
407
+ 0.383561 -0.000001 -0.923516
408
+ 0.383561 -0.000001 -0.923516
409
+ 0.383561 -0.000001 -0.923516
410
+ 0.381489 0.001231 -0.924372
411
+ 0.381489 0.001231 -0.924372
412
+ 0.381489 0.001231 -0.924372
413
+ -0.382347 0.001230 -0.924018
414
+ -0.382347 0.001230 -0.924018
415
+ -0.382347 0.001230 -0.924018
416
+ -0.380278 -0.000000 -0.924872
417
+ -0.380278 -0.000000 -0.924872
418
+ -0.380278 -0.000000 -0.924872
419
+ -0.924948 -0.000000 -0.380095
420
+ -0.924948 -0.000000 -0.380095
421
+ -0.924948 -0.000000 -0.380095
422
+ -0.924597 -0.000508 -0.380947
423
+ -0.924597 -0.000508 -0.380947
424
+ -0.924597 -0.000508 -0.380947
425
+ -0.924243 0.000509 0.381804
426
+ -0.924243 0.000509 0.381804
427
+ -0.924243 0.000509 0.381803
428
+ -0.924948 -0.000506 0.380094
429
+ -0.924948 -0.000506 0.380094
430
+ -0.924948 -0.000506 0.380094
431
+ -0.382347 -0.001230 0.924018
432
+ -0.382347 -0.001230 0.924018
433
+ -0.382347 -0.001230 0.924018
434
+ -0.382349 -0.001231 0.924017
435
+ -0.382349 -0.001231 0.924017
436
+ -0.382349 -0.001231 0.924017
437
+ 0.383560 -0.001231 0.923515
438
+ 0.383560 -0.001231 0.923515
439
+ 0.383560 -0.001231 0.923515
440
+ 0.383562 -0.001229 0.923514
441
+ 0.383562 -0.001229 0.923514
442
+ 0.383562 -0.001229 0.923514
443
+ 0.923026 -0.000512 0.384737
444
+ 0.923026 -0.000512 0.384737
445
+ 0.923026 -0.000512 0.384737
446
+ 0.923741 0.000510 0.383018
447
+ 0.923741 0.000510 0.383018
448
+ 0.923741 0.000510 0.383018
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 1.000000 0.000000
456
+ 0.000000 1.000000 0.000000
457
+ 0.000000 1.000000 0.000000
458
+ -0.004451 0.999980 -0.004457
459
+ -0.004451 0.999980 -0.004457
460
+ -0.004451 0.999980 -0.004457
461
+ 0.004479 0.999980 -0.004486
462
+ 0.004479 0.999980 -0.004486
463
+ 0.004479 0.999980 -0.004486
464
+ 0.000000 1.000000 0.000000
465
+ 0.000000 1.000000 0.000000
466
+ 0.000000 1.000000 0.000000
467
+ 0.623697 0.738230 -0.256942
468
+ 0.623697 0.738230 -0.256942
469
+ 0.623697 0.738230 -0.256942
470
+ 0.619611 0.741672 -0.256915
471
+ 0.619611 0.741672 -0.256915
472
+ 0.619611 0.741672 -0.256915
473
+ 0.256969 0.742112 -0.619061
474
+ 0.256969 0.742112 -0.619061
475
+ 0.256969 0.742112 -0.619061
476
+ 0.257215 0.741818 -0.619311
477
+ 0.257215 0.741818 -0.619312
478
+ 0.257215 0.741818 -0.619311
479
+ -0.257080 0.741845 -0.619335
480
+ -0.257080 0.741845 -0.619335
481
+ -0.257080 0.741845 -0.619335
482
+ -0.257093 0.740179 -0.621320
483
+ -0.257093 0.740179 -0.621320
484
+ -0.257093 0.740179 -0.621320
485
+ -0.623867 0.737390 -0.258932
486
+ -0.623867 0.737390 -0.258932
487
+ -0.623867 0.737390 -0.258932
488
+ -0.619399 0.742669 -0.254534
489
+ -0.619399 0.742669 -0.254533
490
+ -0.619399 0.742669 -0.254534
491
+ -0.618818 0.741972 0.257957
492
+ -0.618818 0.741972 0.257957
493
+ -0.618818 0.741972 0.257957
494
+ -0.624538 0.737151 0.257996
495
+ -0.624538 0.737151 0.257996
496
+ -0.624538 0.737151 0.257996
497
+ -0.257516 0.740280 0.621024
498
+ -0.257516 0.740280 0.621024
499
+ -0.257516 0.740280 0.621024
500
+ -0.256576 0.741404 0.620071
501
+ -0.256576 0.741404 0.620071
502
+ -0.256576 0.741404 0.620071
503
+ 0.257085 0.741300 0.619985
504
+ 0.257085 0.741300 0.619985
505
+ 0.257085 0.741300 0.619985
506
+ 0.257078 0.742139 0.618984
507
+ 0.257078 0.742139 0.618984
508
+ 0.257078 0.742138 0.618984
509
+ 0.619909 0.741567 0.256498
510
+ 0.619909 0.741567 0.256498
511
+ 0.619909 0.741567 0.256498
512
+ 0.623209 0.737653 0.259767
513
+ 0.623209 0.737653 0.259767
514
+ 0.623209 0.737653 0.259767
515
+ 0.924026 0.000438 -0.382330
516
+ 0.924026 0.000438 -0.382330
517
+ 0.924026 0.000438 -0.382330
518
+ 0.924612 -0.000436 -0.380910
519
+ 0.924612 -0.000436 -0.380910
520
+ 0.924612 -0.000436 -0.380910
521
+ 0.383037 -0.001058 -0.923733
522
+ 0.383037 -0.001058 -0.923732
523
+ 0.383037 -0.001058 -0.923733
524
+ 0.381315 0.000001 -0.924445
525
+ 0.381315 0.000001 -0.924445
526
+ 0.381315 0.000001 -0.924445
527
+ -0.383036 0.000001 -0.923733
528
+ -0.383036 0.000001 -0.923733
529
+ -0.383036 0.000001 -0.923733
530
+ -0.381311 -0.001058 -0.924446
531
+ -0.381311 -0.001058 -0.924446
532
+ -0.381311 -0.001058 -0.924446
533
+ -0.923015 -0.000441 -0.384764
534
+ -0.923015 -0.000441 -0.384764
535
+ -0.923015 -0.000441 -0.384764
536
+ -0.923608 0.000440 -0.383337
537
+ -0.923608 0.000440 -0.383337
538
+ -0.923608 0.000440 -0.383337
539
+ -0.923312 -0.000440 0.384049
540
+ -0.923312 -0.000440 0.384049
541
+ -0.923312 -0.000440 0.384049
542
+ -0.923016 0.000000 0.384763
543
+ -0.923015 0.000000 0.384763
544
+ -0.923016 0.000000 0.384763
545
+ -0.383037 0.000000 0.923733
546
+ -0.383037 0.000000 0.923733
547
+ -0.383037 0.000000 0.923733
548
+ -0.383037 0.000000 0.923733
549
+ -0.383037 0.000000 0.923733
550
+ -0.383037 0.000000 0.923733
551
+ 0.383037 0.000000 0.923733
552
+ 0.383037 0.000000 0.923733
553
+ 0.383037 0.000000 0.923733
554
+ 0.383037 0.000000 0.923733
555
+ 0.383037 0.000000 0.923733
556
+ 0.383037 0.000000 0.923733
557
+ 0.924320 0.000000 0.381618
558
+ 0.924320 0.000000 0.381618
559
+ 0.924320 0.000000 0.381618
560
+ 0.924026 -0.000438 0.382330
561
+ 0.924026 -0.000438 0.382330
562
+ 0.924026 -0.000438 0.382330
563
+ 0.000000 -1.000000 0.000000
564
+ 0.000000 -1.000000 0.000000
565
+ 0.000000 -1.000000 0.000000
566
+ 0.000000 -1.000000 0.000000
567
+ 0.000000 -1.000000 0.000000
568
+ 0.000000 -1.000000 0.000000
569
+ -0.000000 -0.999999 0.001541
570
+ -0.000000 -0.999999 0.001541
571
+ -0.000000 -0.999999 0.001541
572
+ -0.001092 -0.999996 0.002633
573
+ -0.001092 -0.999996 0.002633
574
+ -0.001092 -0.999996 0.002633
575
+ 0.001090 -0.999996 0.002628
576
+ 0.001090 -0.999996 0.002628
577
+ 0.001090 -0.999996 0.002628
578
+ 0.000000 -1.000000 0.000000
579
+ 0.000000 -1.000000 0.000000
580
+ 0.000000 -1.000000 0.000000
581
+ 0.000000 -0.924393 -0.381441
582
+ 0.000000 -0.924393 -0.381441
583
+ 0.000000 -0.924393 -0.381441
584
+ 0.000000 -0.924393 -0.381441
585
+ 0.000000 -0.924393 -0.381441
586
+ 0.000000 -0.924393 -0.381441
587
+ 0.000000 -0.383156 -0.923684
588
+ 0.000000 -0.383156 -0.923684
589
+ 0.000000 -0.383156 -0.923684
590
+ 0.000000 -0.383156 -0.923683
591
+ 0.000000 -0.383156 -0.923683
592
+ 0.000000 -0.383156 -0.923683
593
+ 0.000000 0.381444 -0.924392
594
+ 0.000000 0.381444 -0.924392
595
+ 0.000000 0.381445 -0.924392
596
+ 0.000000 0.381445 -0.924392
597
+ 0.000000 0.381445 -0.924392
598
+ 0.000000 0.381445 -0.924392
599
+ 0.000000 0.924393 -0.381443
600
+ 0.000000 0.924393 -0.381443
601
+ 0.000000 0.924393 -0.381443
602
+ 0.000000 0.924393 -0.381443
603
+ 0.000000 0.924393 -0.381443
604
+ 0.000000 0.924393 -0.381443
605
+ -0.000000 0.923683 0.383157
606
+ -0.000000 0.923683 0.383157
607
+ -0.000000 0.923683 0.383157
608
+ -0.000000 0.923683 0.383157
609
+ -0.000000 0.923683 0.383157
610
+ -0.000000 0.923683 0.383157
611
+ -0.000000 0.381440 0.924394
612
+ -0.000000 0.381440 0.924394
613
+ -0.000000 0.381440 0.924394
614
+ -0.000000 0.381440 0.924393
615
+ -0.000000 0.381440 0.924393
616
+ -0.000000 0.381440 0.924394
617
+ 0.000000 -0.381440 0.924394
618
+ 0.000000 -0.381440 0.924394
619
+ 0.000000 -0.381440 0.924394
620
+ -0.000000 -0.381439 0.924394
621
+ -0.000000 -0.381439 0.924394
622
+ -0.000000 -0.381439 0.924394
623
+ 0.000000 -0.924394 0.381438
624
+ 0.000000 -0.924394 0.381438
625
+ 0.000000 -0.924394 0.381438
626
+ -0.000000 -0.924394 0.381438
627
+ -0.000000 -0.924394 0.381438
628
+ -0.000000 -0.924394 0.381438
629
+ -1.000000 0.000000 0.000000
630
+ -1.000000 0.000000 0.000000
631
+ -1.000000 0.000000 0.000000
632
+ -1.000000 0.000001 -0.000001
633
+ -1.000000 0.000001 -0.000001
634
+ -1.000000 0.000001 -0.000001
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.000001 0.000000
639
+ -1.000000 0.000001 0.000000
640
+ -1.000000 0.000001 0.000000
641
+ -1.000000 0.000001 -0.000001
642
+ -1.000000 0.000001 -0.000001
643
+ -1.000000 0.000001 -0.000001
644
+ -1.000000 0.000000 0.000000
645
+ -1.000000 0.000000 0.000000
646
+ -1.000000 0.000000 0.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
+ -1.000000 -0.000000 -0.000001
654
+ -1.000000 -0.000000 -0.000001
655
+ -1.000000 -0.000000 -0.000001
656
+ -1.000000 0.000000 0.000000
657
+ -1.000000 0.000000 0.000000
658
+ -1.000000 0.000000 0.000000
659
+ -1.000000 0.000000 -0.000000
660
+ -1.000000 0.000000 -0.000000
661
+ -1.000000 0.000000 -0.000000
662
+ 1.000000 0.000005 -0.000012
663
+ 1.000000 0.000005 -0.000012
664
+ 1.000000 0.000005 -0.000012
665
+ -1.000000 -0.000001 -0.000000
666
+ -1.000000 -0.000001 -0.000000
667
+ -1.000000 -0.000001 -0.000000
668
+ -1.000000 0.000001 -0.000000
669
+ -1.000000 0.000001 -0.000000
670
+ -1.000000 0.000001 -0.000000
671
+ -1.000000 0.000000 -0.000000
672
+ -1.000000 0.000000 -0.000000
673
+ -1.000000 0.000000 -0.000000
674
+ 1.000000 -0.000004 -0.000001
675
+ 1.000000 -0.000004 -0.000001
676
+ 1.000000 -0.000004 -0.000001
677
+ -1.000000 0.000000 0.000000
678
+ -1.000000 0.000000 0.000000
679
+ -1.000000 0.000000 0.000000
680
+ -1.000000 0.000000 0.000000
681
+ -1.000000 0.000000 0.000000
682
+ -1.000000 0.000000 0.000000
683
+ -1.000000 0.000000 0.000000
684
+ -1.000000 0.000000 0.000000
685
+ -1.000000 0.000000 0.000000
686
+ -1.000000 0.000000 0.000000
687
+ -1.000000 0.000000 0.000000
688
+ -1.000000 0.000000 0.000000
689
+ -1.000000 0.000000 -0.000000
690
+ -1.000000 0.000000 -0.000000
691
+ -1.000000 0.000000 -0.000000
692
+ -1.000000 -0.000000 -0.000000
693
+ -1.000000 -0.000000 -0.000000
694
+ -1.000000 -0.000000 -0.000000
695
+ 0.000000 -0.999579 -0.029010
696
+ 0.000000 -0.999579 -0.029010
697
+ 0.000000 -0.999579 -0.029010
698
+ -0.000000 -0.999579 -0.029010
699
+ -0.000000 -0.999579 -0.029010
700
+ -0.000000 -0.999579 -0.029010
701
+ 0.000001 -0.612490 -0.790478
702
+ 0.000001 -0.612490 -0.790478
703
+ 0.000001 -0.612490 -0.790478
704
+ 0.000000 -0.612491 -0.790478
705
+ 0.000000 -0.612491 -0.790478
706
+ 0.000000 -0.612491 -0.790478
707
+ -0.000002 0.022482 -0.999747
708
+ -0.000002 0.022482 -0.999747
709
+ -0.000002 0.022482 -0.999747
710
+ 0.000002 0.022483 -0.999747
711
+ 0.000002 0.022483 -0.999747
712
+ 0.000002 0.022483 -0.999747
713
+ 0.000000 0.663997 -0.747735
714
+ 0.000000 0.663998 -0.747735
715
+ 0.000000 0.663997 -0.747735
716
+ -0.000001 0.663997 -0.747735
717
+ -0.000001 0.663997 -0.747735
718
+ -0.000001 0.663997 -0.747735
719
+ 0.000003 0.390210 0.920726
720
+ 0.000003 0.390210 0.920726
721
+ 0.000003 0.390210 0.920726
722
+ -0.000002 0.390211 0.920725
723
+ -0.000002 0.390211 0.920725
724
+ -0.000002 0.390211 0.920725
725
+ -0.000000 -0.383605 0.923497
726
+ -0.000000 -0.383605 0.923497
727
+ -0.000000 -0.383605 0.923497
728
+ 0.000003 -0.383606 0.923497
729
+ 0.000003 -0.383606 0.923497
730
+ 0.000003 -0.383606 0.923497
731
+ 0.000001 -0.923498 0.383604
732
+ 0.000001 -0.923498 0.383604
733
+ 0.000001 -0.923498 0.383604
734
+ -0.000000 -0.923498 0.383604
735
+ -0.000000 -0.923498 0.383604
736
+ -0.000000 -0.923498 0.383604
737
+ 1.000000 -0.000001 0.000000
738
+ 1.000000 -0.000001 0.000000
739
+ 1.000000 -0.000001 0.000000
740
+ 1.000000 -0.000001 -0.000002
741
+ 1.000000 -0.000001 -0.000002
742
+ 1.000000 -0.000001 -0.000002
743
+ 1.000000 -0.000000 0.000000
744
+ 1.000000 -0.000000 0.000000
745
+ 1.000000 -0.000000 0.000000
746
+ 1.000000 -0.000001 0.000000
747
+ 1.000000 -0.000001 0.000000
748
+ 1.000000 -0.000001 0.000000
749
+ 1.000000 -0.000001 -0.000000
750
+ 1.000000 -0.000001 -0.000000
751
+ 1.000000 -0.000001 -0.000000
752
+ 1.000000 0.000001 0.000000
753
+ 1.000000 0.000001 0.000000
754
+ 1.000000 0.000001 0.000000
755
+ -1.000000 0.000000 -0.000000
756
+ -1.000000 0.000000 -0.000000
757
+ -1.000000 0.000000 -0.000000
758
+ -1.000000 0.000000 -0.000000
759
+ -1.000000 0.000000 -0.000000
760
+ -1.000000 0.000000 -0.000000
761
+ -0.006817 0.002847 -0.999973
762
+ -0.006817 0.002847 -0.999973
763
+ -0.006817 0.002847 -0.999973
764
+ 0.000000 0.000000 -1.000000
765
+ 0.000000 0.000000 -1.000000
766
+ 0.000000 0.000000 -1.000000
767
+ 0.000003 -0.000000 1.000000
768
+ 0.000003 -0.000000 1.000000
769
+ 0.000003 -0.000000 1.000000
770
+ -0.000000 -0.000001 1.000000
771
+ -0.000000 -0.000001 1.000000
772
+ -0.000000 -0.000001 1.000000
773
+ 1.000000 0.000000 0.000000
774
+ 1.000000 0.000000 0.000000
775
+ 1.000000 0.000000 0.000000
776
+ 1.000000 -0.000000 0.000000
777
+ 1.000000 -0.000000 0.000000
778
+ 1.000000 -0.000000 0.000000
779
+ -0.858575 -0.512670 0.004371
780
+ -0.858575 -0.512670 0.004371
781
+ -0.858575 -0.512670 0.004371
782
+ -0.893481 -0.448911 0.013102
783
+ -0.893481 -0.448911 0.013102
784
+ -0.893481 -0.448911 0.013102
785
+ 0.000000 -0.857494 -0.514494
786
+ 0.000000 -0.857494 -0.514494
787
+ 0.000000 -0.857494 -0.514494
788
+ -0.304157 -0.702059 -0.643896
789
+ -0.304157 -0.702059 -0.643896
790
+ -0.304157 -0.702059 -0.643896
791
+ 0.000002 0.000000 1.000000
792
+ 0.000002 0.000000 1.000000
793
+ 0.000002 0.000000 1.000000
794
+ 0.000003 0.000002 1.000000
795
+ 0.000003 0.000002 1.000000
796
+ 0.000003 0.000002 1.000000
797
+ 1.000000 -0.000000 0.000000
798
+ 1.000000 -0.000000 0.000000
799
+ 1.000000 -0.000000 0.000000
800
+ 1.000000 0.000000 0.000000
801
+ 1.000000 0.000000 0.000000
802
+ 1.000000 0.000000 0.000000
803
+ -1.000000 -0.000000 -0.000000
804
+ -1.000000 -0.000000 -0.000000
805
+ -1.000000 -0.000000 -0.000000
806
+ -1.000000 -0.000000 -0.000000
807
+ -1.000000 -0.000000 -0.000000
808
+ -1.000000 -0.000000 -0.000000
809
+ 0.000001 0.002950 -0.999996
810
+ 0.000001 0.002950 -0.999996
811
+ 0.000001 0.002950 -0.999996
812
+ -0.000004 0.002953 -0.999996
813
+ -0.000004 0.002953 -0.999996
814
+ -0.000004 0.002953 -0.999996
815
+ -0.000000 0.000000 1.000000
816
+ -0.000000 0.000000 1.000000
817
+ -0.000000 0.000000 1.000000
818
+ 0.000002 0.000001 1.000000
819
+ 0.000002 0.000001 1.000000
820
+ 0.000002 0.000001 1.000000
821
+ 1.000000 0.000000 0.000000
822
+ 1.000000 0.000000 0.000000
823
+ 1.000000 0.000000 0.000000
824
+ 1.000000 0.000000 0.000000
825
+ 1.000000 0.000000 0.000000
826
+ 1.000000 0.000000 0.000000
827
+ 0.000000 1.000000 -0.000001
828
+ 0.000000 1.000000 -0.000001
829
+ 0.000000 1.000000 -0.000001
830
+ 0.000000 1.000000 -0.000001
831
+ 0.000000 1.000000 -0.000001
832
+ 0.000000 1.000000 -0.000001
833
+ -1.000000 -0.000000 -0.000000
834
+ -1.000000 -0.000000 -0.000000
835
+ -1.000000 -0.000000 -0.000000
836
+ -1.000000 0.000000 0.000000
837
+ -1.000000 0.000000 0.000000
838
+ -1.000000 0.000000 0.000000
839
+ -1.000000 -0.000000 -0.000000
840
+ -1.000000 -0.000000 -0.000000
841
+ -1.000000 -0.000000 -0.000000
842
+ -1.000000 0.000000 0.000000
843
+ -1.000000 0.000000 0.000000
844
+ -1.000000 0.000000 0.000000
845
+ -1.000000 -0.000000 -0.000000
846
+ -1.000000 -0.000000 -0.000000
847
+ -1.000000 -0.000000 -0.000000
848
+ 0.000000 -0.924393 -0.381441
849
+ 0.000000 -0.924393 -0.381441
850
+ 0.000000 -0.924393 -0.381441
851
+ 0.000000 -0.924393 -0.381441
852
+ 0.000000 -0.924393 -0.381441
853
+ 0.000000 -0.924393 -0.381441
854
+ -0.000000 -0.924394 0.381438
855
+ -0.000000 -0.924394 0.381438
856
+ -0.000000 -0.924394 0.381438
857
+ 0.000000 -0.924394 0.381438
858
+ 0.000000 -0.924394 0.381438
859
+ 0.000000 -0.924394 0.381438
860
+ 0.000000 -0.381440 0.924394
861
+ 0.000000 -0.381440 0.924394
862
+ 0.000000 -0.381440 0.924394
863
+ 0.000000 -0.381440 0.924394
864
+ 0.000000 -0.381440 0.924394
865
+ 0.000000 -0.381440 0.924394
866
+ -0.000000 0.381439 0.924394
867
+ -0.000000 0.381439 0.924394
868
+ -0.000000 0.381439 0.924394
869
+ 0.000000 0.381439 0.924394
870
+ 0.000000 0.381439 0.924394
871
+ 0.000000 0.381439 0.924394
872
+ 0.000000 0.789354 0.613939
873
+ 0.000000 0.789354 0.613939
874
+ 0.000000 0.789354 0.613939
875
+ 0.000000 0.789354 0.613939
876
+ 0.000000 0.789354 0.613939
877
+ 0.000000 0.789354 0.613939
878
+ 0.000000 -0.431637 -0.902047
879
+ 0.000000 -0.431637 -0.902047
880
+ 0.000000 -0.431637 -0.902047
881
+ 0.000000 -0.431637 -0.902047
882
+ 0.000000 -0.431637 -0.902047
883
+ 0.000000 -0.431637 -0.902047
884
+ 1.000000 0.000000 0.000000
885
+ 1.000000 0.000000 0.000000
886
+ 1.000000 0.000000 0.000000
887
+ 1.000000 0.000000 0.000000
888
+ 1.000000 0.000000 0.000000
889
+ 1.000000 0.000000 0.000000
890
+ 1.000000 -0.000000 -0.000000
891
+ 1.000000 -0.000000 -0.000000
892
+ 1.000000 -0.000000 -0.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
+ -1.000000 -0.000001 0.000000
900
+ -1.000000 -0.000001 0.000000
901
+ -1.000000 -0.000001 0.000000
902
+ -1.000000 -0.000000 -0.000000
903
+ -1.000000 -0.000000 -0.000000
904
+ -1.000000 -0.000000 -0.000000
905
+ 0.000000 0.000000 1.000000
906
+ 0.000000 0.000000 1.000000
907
+ 0.000000 0.000000 1.000000
908
+ 0.000000 0.000000 1.000000
909
+ 0.000000 0.000000 1.000000
910
+ 0.000000 0.000000 1.000000
911
+ 0.000000 0.001349 -0.999999
912
+ 0.000000 0.001349 -0.999999
913
+ 0.000000 0.001349 -0.999999
914
+ -0.000000 0.001349 -0.999999
915
+ -0.000000 0.001349 -0.999999
916
+ -0.000000 0.001349 -0.999999
917
+ 1.000000 0.000000 0.000000
918
+ 1.000000 0.000000 0.000000
919
+ 1.000000 0.000000 0.000000
920
+ 1.000000 0.000000 0.000000
921
+ 1.000000 0.000000 0.000000
922
+ 1.000000 0.000000 0.000000
923
+ -1.000000 0.000000 -0.000000
924
+ -1.000000 0.000000 -0.000000
925
+ -1.000000 0.000000 -0.000000
926
+ -1.000000 -0.000000 -0.000000
927
+ -1.000000 -0.000000 -0.000000
928
+ -1.000000 -0.000000 -0.000000
929
+ 0.000000 -0.592684 0.805435
930
+ 0.000000 -0.592684 0.805435
931
+ 0.000000 -0.592685 0.805435
932
+ 0.000000 -0.592684 0.805435
933
+ 0.000000 -0.592684 0.805435
934
+ 0.000000 -0.592684 0.805435
935
+ 0.000000 -0.470161 -0.882581
936
+ 0.000000 -0.470161 -0.882581
937
+ 0.000000 -0.470161 -0.882581
938
+ 0.000000 -0.470161 -0.882581
939
+ 0.000000 -0.470161 -0.882581
940
+ 0.000000 -0.470161 -0.882581
941
+ 1.000000 0.000000 0.000000
942
+ 1.000000 0.000000 0.000000
943
+ 1.000000 0.000000 0.000000
944
+ 1.000000 -0.000000 0.000000
945
+ 1.000000 -0.000000 0.000000
946
+ 1.000000 -0.000000 0.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.886226 0.463253
954
+ 0.000000 -0.886226 0.463253
955
+ 0.000000 -0.886226 0.463253
956
+ 0.000000 -0.886226 0.463253
957
+ 0.000000 -0.886226 0.463253
958
+ 0.000000 -0.886226 0.463253
959
+ 0.000000 -0.957214 -0.289382
960
+ 0.000000 -0.957214 -0.289382
961
+ 0.000000 -0.957214 -0.289382
962
+ 0.000000 -0.957214 -0.289382
963
+ 0.000000 -0.957214 -0.289382
964
+ 0.000000 -0.957214 -0.289382
965
+ 1.000000 0.000001 0.000000
966
+ 1.000000 0.000001 0.000000
967
+ 1.000000 0.000001 0.000000
968
+ 1.000000 -0.000000 0.000000
969
+ 1.000000 -0.000000 0.000000
970
+ 1.000000 -0.000000 0.000000
971
+ -1.000000 -0.000000 -0.000000
972
+ -1.000000 -0.000000 -0.000000
973
+ -1.000000 -0.000000 -0.000000
974
+ -1.000000 0.000000 -0.000000
975
+ -1.000000 0.000000 -0.000000
976
+ -1.000000 0.000000 -0.000000
977
+ 0.000000 0.000000 1.000000
978
+ 0.000000 0.000000 1.000000
979
+ 0.000000 0.000000 1.000000
980
+ 0.000000 0.000000 1.000000
981
+ 0.000000 0.000000 1.000000
982
+ 0.000000 0.000000 1.000000
983
+ 0.000000 0.000002 -1.000000
984
+ 0.000000 0.000002 -1.000000
985
+ 0.000000 0.000002 -1.000000
986
+ 0.000000 0.000002 -1.000000
987
+ 0.000000 0.000002 -1.000000
988
+ 0.000000 0.000002 -1.000000
989
+ 1.000000 -0.000000 0.000000
990
+ 1.000000 -0.000000 0.000000
991
+ 1.000000 -0.000000 0.000000
992
+ 1.000000 0.000000 0.000000
993
+ 1.000000 0.000000 0.000000
994
+ 1.000000 0.000000 0.000000
995
+ 0.000000 0.999999 0.001224
996
+ 0.000000 0.999999 0.001224
997
+ 0.000000 0.999999 0.001224
998
+ 0.000000 0.999999 0.001224
999
+ 0.000000 0.999999 0.001224
1000
+ 0.000000 0.999999 0.001224
1001
+ 0.000000 -0.873260 0.487255
1002
+ 0.000000 -0.873260 0.487255
1003
+ 0.000000 -0.873260 0.487255
1004
+ 0.000000 -0.873260 0.487255
1005
+ 0.000000 -0.873260 0.487255
1006
+ 0.000000 -0.873260 0.487255
1007
+ 0.000000 0.000000 1.000000
1008
+ 0.000000 0.000000 1.000000
1009
+ 0.000000 0.000000 1.000000
1010
+ 0.000000 0.000000 1.000000
1011
+ 0.000000 0.000000 1.000000
1012
+ 0.000000 0.000000 1.000000
1013
+ 0.000000 -0.592684 0.805435
1014
+ 0.000000 -0.592684 0.805435
1015
+ 0.000000 -0.592684 0.805435
1016
+ 0.000000 -0.592684 0.805435
1017
+ 0.000000 -0.592684 0.805435
1018
+ 0.000000 -0.592684 0.805435
1019
+ 0.000000 -0.886226 0.463253
1020
+ 0.000000 -0.886226 0.463253
1021
+ 0.000000 -0.886226 0.463253
1022
+ 0.000000 -0.886226 0.463253
1023
+ 0.000000 -0.886226 0.463253
1024
+ 0.000000 -0.886226 0.463253
1025
+ 0.000000 0.000000 1.000000
1026
+ 0.000000 0.000000 1.000000
1027
+ 0.000000 0.000000 1.000000
1028
+ 0.000000 0.000000 1.000000
1029
+ 0.000000 0.000000 1.000000
1030
+ 0.000000 0.000000 1.000000
1031
+ 0.000000 0.999999 0.001224
1032
+ 0.000000 0.999999 0.001224
1033
+ 0.000000 0.999999 0.001224
1034
+ 0.000000 0.999999 0.001224
1035
+ 0.000000 0.999999 0.001224
1036
+ 0.000000 0.999999 0.001224
1037
+ 0.000000 0.000002 -1.000000
1038
+ 0.000000 0.000002 -1.000000
1039
+ 0.000000 0.000002 -1.000000
1040
+ 0.000000 0.000002 -1.000000
1041
+ 0.000000 0.000002 -1.000000
1042
+ 0.000000 0.000002 -1.000000
1043
+ 0.000000 -0.957214 -0.289382
1044
+ 0.000000 -0.957214 -0.289382
1045
+ 0.000000 -0.957214 -0.289382
1046
+ 0.000000 -0.957214 -0.289382
1047
+ 0.000000 -0.957214 -0.289382
1048
+ 0.000000 -0.957214 -0.289382
1049
+ 0.000000 -0.470161 -0.882581
1050
+ 0.000000 -0.470161 -0.882581
1051
+ 0.000000 -0.470161 -0.882581
1052
+ 0.000000 -0.470161 -0.882581
1053
+ 0.000000 -0.470161 -0.882581
1054
+ 0.000000 -0.470161 -0.882581
1055
+ -0.000000 0.001349 -0.999999
1056
+ -0.000000 0.001349 -0.999999
1057
+ -0.000000 0.001349 -0.999999
1058
+ 0.000000 0.001349 -0.999999
1059
+ 0.000000 0.001349 -0.999999
1060
+ 0.000000 0.001349 -0.999999
1061
+ </float_array>
1062
+ <technique_common>
1063
+ <accessor source="#drc_l_elbow_rx-Normal0-array" count="840" stride="3">
1064
+ <param name="X" type="float"/>
1065
+ <param name="Y" type="float"/>
1066
+ <param name="Z" type="float"/>
1067
+ </accessor>
1068
+ </technique_common>
1069
+ </source>
1070
+ <source id="drc_l_elbow_rx-UV0">
1071
+ <float_array id="drc_l_elbow_rx-UV0-array" count="564">
1072
+ 0.657139 0.358224
1073
+ 0.656968 0.389682
1074
+ 0.656688 0.448525
1075
+ 0.656831 0.417103
1076
+ 0.656850 0.413281
1077
+ 0.656948 0.393504
1078
+ 0.538624 0.367530
1079
+ 0.523653 0.369569
1080
+ 0.448165 0.367475
1081
+ 0.463119 0.369521
1082
+ 0.478194 0.370782
1083
+ 0.493397 0.371209
1084
+ 0.508559 0.370800
1085
+ 0.539684 0.372233
1086
+ 0.524201 0.374335
1087
+ 0.447071 0.372156
1088
+ 0.462562 0.374306
1089
+ 0.477966 0.375589
1090
+ 0.493391 0.376036
1091
+ 0.508813 0.375619
1092
+ 0.641066 0.347815
1093
+ 0.577723 0.339998
1094
+ 0.636660 0.347232
1095
+ 0.581801 0.340337
1096
+ 0.633335 0.346796
1097
+ 0.583309 0.340484
1098
+ 0.622013 0.345323
1099
+ 0.594650 0.341762
1100
+ 0.572537 0.433364
1101
+ 0.577821 0.420112
1102
+ 0.590705 0.414638
1103
+ 0.603555 0.420079
1104
+ 0.608918 0.433317
1105
+ 0.590751 0.452112
1106
+ 0.577853 0.446637
1107
+ 0.603588 0.446603
1108
+ 0.550604 0.411278
1109
+ 0.566068 0.417894
1110
+ 0.572503 0.433820
1111
+ 0.566046 0.449771
1112
+ 0.550573 0.456364
1113
+ 0.535131 0.417871
1114
+ 0.528722 0.433787
1115
+ 0.535109 0.449748
1116
+ 0.442558 0.402079
1117
+ 0.425960 0.399104
1118
+ 0.431172 0.369010
1119
+ 0.433944 0.364703
1120
+ 0.459378 0.404456
1121
+ 0.438524 0.339148
1122
+ 0.452178 0.341671
1123
+ 0.476365 0.405859
1124
+ 0.465834 0.343557
1125
+ 0.493370 0.406348
1126
+ 0.479598 0.344710
1127
+ 0.510378 0.405884
1128
+ 0.493414 0.345098
1129
+ 0.527346 0.404501
1130
+ 0.507188 0.344729
1131
+ 0.544150 0.402156
1132
+ 0.520971 0.343596
1133
+ 0.555581 0.369101
1134
+ 0.560754 0.399207
1135
+ 0.534645 0.341723
1136
+ 0.552808 0.364789
1137
+ 0.548260 0.339226
1138
+ 0.520656 0.408887
1139
+ 0.534430 0.409087
1140
+ 0.534366 0.416212
1141
+ 0.520353 0.428665
1142
+ 0.513468 0.428565
1143
+ 0.513734 0.408822
1144
+ 0.427438 0.407989
1145
+ 0.446648 0.407950
1146
+ 0.450362 0.407935
1147
+ 0.450471 0.439360
1148
+ 0.446759 0.439373
1149
+ 0.446787 0.446461
1150
+ 0.427578 0.446579
1151
+ 0.427583 0.439450
1152
+ 0.423868 0.439462
1153
+ 0.423726 0.408003
1154
+ 0.434560 0.460767
1155
+ 0.427639 0.460764
1156
+ 0.506488 0.437248
1157
+ 0.525696 0.437538
1158
+ 0.525160 0.468993
1159
+ 0.505987 0.468669
1160
+ 0.502274 0.468605
1161
+ 0.502776 0.437185
1162
+ 0.529409 0.437601
1163
+ 0.528874 0.469056
1164
+ 0.561901 0.356761
1165
+ 0.607926 0.356859
1166
+ 0.607912 0.363987
1167
+ 0.561887 0.363886
1168
+ 0.607881 0.378173
1169
+ 0.561856 0.378065
1170
+ 0.561840 0.385189
1171
+ 0.607865 0.385303
1172
+ 0.561794 0.404246
1173
+ 0.607819 0.404362
1174
+ 0.607802 0.411454
1175
+ 0.561777 0.411338
1176
+ 0.662323 0.448554
1177
+ 0.662304 0.452377
1178
+ 0.656670 0.452347
1179
+ 0.610646 0.452129
1180
+ 0.610663 0.448303
1181
+ 0.662464 0.417131
1182
+ 0.610807 0.416873
1183
+ 0.662483 0.413311
1184
+ 0.610825 0.413042
1185
+ 0.662582 0.393535
1186
+ 0.610924 0.393256
1187
+ 0.662601 0.389714
1188
+ 0.610945 0.389427
1189
+ 0.662774 0.358259
1190
+ 0.611114 0.357965
1191
+ 0.662796 0.354441
1192
+ 0.611135 0.354140
1193
+ 0.657162 0.354398
1194
+ 0.657326 0.334651
1195
+ 0.662959 0.334700
1196
+ 0.499546 0.445871
1197
+ 0.495757 0.455253
1198
+ 0.486673 0.459104
1199
+ 0.477595 0.455239
1200
+ 0.473854 0.445885
1201
+ 0.486728 0.432651
1202
+ 0.495806 0.436517
1203
+ 0.477609 0.436537
1204
+ 0.666354 0.413775
1205
+ 0.666354 0.403614
1206
+ 0.691611 0.403614
1207
+ 0.691611 0.413775
1208
+ 0.666354 0.423891
1209
+ 0.691610 0.423891
1210
+ 0.666354 0.434007
1211
+ 0.691610 0.434008
1212
+ 0.666354 0.444123
1213
+ 0.691610 0.444124
1214
+ 0.666353 0.454239
1215
+ 0.691610 0.454240
1216
+ 0.666353 0.464401
1217
+ 0.691610 0.464401
1218
+ 0.666354 0.474517
1219
+ 0.691610 0.474517
1220
+ 0.666354 0.484633
1221
+ 0.691610 0.484633
1222
+ 0.565321 0.479914
1223
+ 0.553469 0.479848
1224
+ 0.552887 0.457216
1225
+ 0.567873 0.457255
1226
+ 0.572969 0.457720
1227
+ 0.569167 0.467096
1228
+ 0.549580 0.485760
1229
+ 0.549353 0.457220
1230
+ 0.572893 0.476456
1231
+ 0.569534 0.483783
1232
+ 0.582059 0.453882
1233
+ 0.582065 0.451101
1234
+ 0.538135 0.485721
1235
+ 0.538145 0.457217
1236
+ 0.581966 0.480335
1237
+ 0.592051 0.484357
1238
+ 0.591132 0.457762
1239
+ 0.593026 0.455820
1240
+ 0.591090 0.476464
1241
+ 0.597159 0.480302
1242
+ 0.594858 0.467121
1243
+ 0.597559 0.467128
1244
+ 0.659088 0.480447
1245
+ 0.648196 0.484809
1246
+ 0.634036 0.479252
1247
+ 0.631384 0.458562
1248
+ 0.635562 0.455006
1249
+ 0.657984 0.454378
1250
+ 0.663088 0.458060
1251
+ 0.619112 0.479360
1252
+ 0.621363 0.458634
1253
+ 0.663549 0.470095
1254
+ 0.616090 0.479383
1255
+ 0.616105 0.453306
1256
+ 0.604930 0.479468
1257
+ 0.604707 0.453424
1258
+ 0.698618 0.809763
1259
+ 0.697655 0.820935
1260
+ 0.691484 0.820433
1261
+ 0.692446 0.809263
1262
+ 0.697016 0.806579
1263
+ 0.692705 0.806235
1264
+ 0.698268 0.791629
1265
+ 0.693956 0.791296
1266
+ 0.699500 0.776259
1267
+ 0.695186 0.775945
1268
+ 0.700382 0.764389
1269
+ 0.696066 0.764102
1270
+ 0.701179 0.752510
1271
+ 0.696861 0.752253
1272
+ 0.701938 0.739707
1273
+ 0.697617 0.739481
1274
+ 0.702272 0.733244
1275
+ 0.697950 0.733048
1276
+ 0.703266 0.710719
1277
+ 0.698943 0.710553
1278
+ 0.703475 0.705058
1279
+ 0.699152 0.704920
1280
+ 0.699481 0.694870
1281
+ 0.703811 0.693194
1282
+ 0.698398 0.687259
1283
+ 0.704485 0.686326
1284
+ 0.696524 0.675970
1285
+ 0.702638 0.675007
1286
+ 0.691901 0.648658
1287
+ 0.698013 0.647682
1288
+ 0.672059 0.376312
1289
+ 0.671870 0.362404
1290
+ 0.690455 0.360992
1291
+ 0.690842 0.386744
1292
+ 0.669188 0.358753
1293
+ 0.692330 0.357250
1294
+ 0.685375 0.398956
1295
+ 0.676350 0.402949
1296
+ 0.666197 0.357190
1297
+ 0.693776 0.356782
1298
+ 0.667215 0.399226
1299
+ 0.663338 0.389932
1300
+ 0.666049 0.345439
1301
+ 0.693628 0.345035
1302
+ 0.666952 0.380526
1303
+ 0.466547 0.412132
1304
+ 0.468575 0.410940
1305
+ 0.479157 0.430022
1306
+ 0.477121 0.431219
1307
+ 0.493587 0.410715
1308
+ 0.492663 0.429880
1309
+ 0.451157 0.427434
1310
+ 0.454819 0.418048
1311
+ 0.497177 0.408695
1312
+ 0.496271 0.432553
1313
+ 0.473150 0.436577
1314
+ 0.464103 0.440522
1315
+ 0.497598 0.407195
1316
+ 0.497857 0.435595
1317
+ 0.454987 0.436749
1318
+ 0.509008 0.407070
1319
+ 0.509269 0.435469
1320
+ 0.641426 0.344939
1321
+ 0.654819 0.346722
1322
+ 0.654459 0.349599
1323
+ 0.654159 0.351988
1324
+ 0.640767 0.350205
1325
+ 0.637016 0.344355
1326
+ 0.636362 0.349622
1327
+ 0.633688 0.343918
1328
+ 0.633040 0.349185
1329
+ 0.622362 0.342443
1330
+ 0.621724 0.347713
1331
+ 0.594976 0.338882
1332
+ 0.594380 0.344154
1333
+ 0.583596 0.337599
1334
+ 0.583071 0.342880
1335
+ 0.582048 0.337447
1336
+ 0.581596 0.342736
1337
+ 0.577931 0.337105
1338
+ 0.577550 0.342401
1339
+ 0.552928 0.335408
1340
+ 0.552605 0.340702
1341
+ 0.552774 0.338302
1342
+ 0.539760 0.337778
1343
+ 0.539838 0.334879
1344
+ 0.529987 0.334719
1345
+ 0.529966 0.337620
1346
+ 0.520144 0.334726
1347
+ 0.520160 0.337627
1348
+ 0.510308 0.334843
1349
+ 0.510348 0.337743
1350
+ 0.500480 0.335021
1351
+ 0.500531 0.337921
1352
+ 0.493989 0.338049
1353
+ 0.493936 0.335149
1354
+ </float_array>
1355
+ <technique_common>
1356
+ <accessor source="#drc_l_elbow_rx-UV0-array" count="282" stride="2">
1357
+ <param name="S" type="float"/>
1358
+ <param name="T" type="float"/>
1359
+ </accessor>
1360
+ </technique_common>
1361
+ </source>
1362
+ <vertices id="drc_l_elbow_rx-VERTEX">
1363
+ <input semantic="POSITION" source="#drc_l_elbow_rx-POSITION"/>
1364
+ </vertices>
1365
+ <triangles count="280" material="drc_extremities_diffuse"><input semantic="VERTEX" offset="0" source="#drc_l_elbow_rx-VERTEX"/><input semantic="NORMAL" offset="1" source="#drc_l_elbow_rx-Normal0"/><input semantic="TEXCOORD" offset="2" set="0" source="#drc_l_elbow_rx-UV0"/><p> 0 0 0 3 1 118 2 2 116 2 3 116 1 4 1 0 5 0 4 6 2 7 7 3 6 8 110 6 9 110 5 10 108 4 11 2 8 12 73 11 13 72 10 14 79 10 15 79 9 16 76 8 17 73 12 18 4 13 19 5 11 20 114 11 21 114 8 22 112 12 23 4 14 24 87 17 25 86 16 26 85 16 27 85 15 28 84 14 29 87 5 30 108 9 31 107 18 32 106 18 33 106 4 34 2 5 35 108 0 36 0 19 37 121 10 38 120 10 39 120 3 40 118 0 41 0 6 42 74 8 43 73 9 44 76 9 45 76 5 46 75 6 47 74 3 48 80 10 49 79 11 50 72 11 51 72 2 52 81 3 53 80 7 54 3 12 55 4 8 56 112 8 57 112 6 58 110 7 59 3 2 60 116 11 61 114 13 62 5 13 63 5 1 64 1 2 65 116 20 66 88 14 67 87 15 68 84 15 69 84 21 70 89 20 71 88 22 72 90 16 73 85 17 74 86 17 75 86 23 76 91 22 77 90 10 78 79 25 79 78 24 80 77 24 81 77 9 82 76 10 83 79 18 84 70 27 85 69 26 86 66 26 87 66 19 88 71 18 89 70 9 90 102 24 91 101 27 92 100 27 93 100 18 94 103 9 95 102 19 96 92 26 97 95 25 98 94 25 99 94 10 100 93 19 101 92 25 102 78 29 103 83 28 104 82 28 105 82 24 106 77 25 107 78 27 108 69 31 109 68 30 110 67 30 111 67 26 112 66 27 113 69 24 114 101 28 115 99 31 116 98 31 117 98 27 118 100 24 119 101 26 120 95 30 121 97 29 122 96 29 123 96 25 124 94 26 125 95 31 126 98 28 127 99 29 128 96 29 129 96 30 130 97 31 131 98 1 132 1 22 133 115 23 134 117 23 135 117 0 136 0 1 137 1 0 138 0 23 139 117 17 140 119 17 141 119 19 142 121 0 143 0 19 144 121 17 145 119 14 146 123 14 147 123 18 148 122 19 149 121 18 150 106 14 151 105 20 152 104 20 153 104 4 154 2 18 155 106 4 156 2 20 157 104 21 158 109 21 159 109 7 160 3 4 161 2 7 162 3 21 163 109 15 164 111 15 165 111 12 166 4 7 167 3 12 168 4 15 169 111 16 170 113 16 171 113 13 172 5 12 173 4 13 174 5 16 175 113 22 176 115 22 177 115 1 178 1 13 179 5 32 180 60 35 181 7 34 182 6 34 183 6 33 184 63 32 185 60 33 186 63 34 187 6 37 188 64 37 189 64 36 190 65 33 191 63 36 192 49 37 193 47 39 194 8 39 195 8 38 196 50 36 197 49 38 198 50 39 199 8 41 200 9 41 201 9 40 202 52 38 203 50 40 204 52 41 205 9 43 206 10 43 207 10 42 208 54 40 209 52 42 210 54 43 211 10 45 212 11 45 213 11 44 214 56 42 215 54 44 216 56 45 217 11 47 218 12 47 219 12 46 220 58 44 221 56 46 222 58 47 223 12 35 224 7 35 225 7 32 226 60 46 227 58 44 228 33 32 229 32 40 230 28 40 231 28 42 232 34 44 233 33 40 234 28 32 235 32 36 236 30 36 237 30 38 238 29 40 239 28 36 240 30 32 241 32 33 242 31 46 243 35 32 244 32 44 245 33 35 246 7 49 247 14 48 248 13 48 249 13 34 250 6 35 251 7 34 252 6 48 253 13 50 254 61 50 255 61 37 256 64 34 257 6 37 258 47 50 259 46 51 260 15 51 261 15 39 262 8 37 263 47 39 264 8 51 265 15 52 266 16 52 267 16 41 268 9 39 269 8 41 270 9 52 271 16 53 272 17 53 273 17 43 274 10 41 275 9 43 276 10 53 277 17 54 278 18 54 279 18 45 280 11 43 281 10 45 282 11 54 283 18 55 284 19 55 285 19 47 286 12 45 287 11 47 288 12 55 289 19 49 290 14 49 291 14 35 292 7 47 293 12 49 294 14 57 295 57 56 296 59 56 297 59 48 298 13 49 299 14 48 300 13 56 301 59 58 302 62 58 303 62 50 304 61 48 305 13 50 306 46 58 307 45 59 308 44 59 309 44 51 310 15 50 311 46 51 312 15 59 313 44 60 314 48 60 315 48 52 316 16 51 317 15 52 318 16 60 319 48 61 320 51 61 321 51 53 322 17 52 323 16 53 324 17 61 325 51 62 326 53 62 327 53 54 328 18 53 329 17 54 330 18 62 331 53 63 332 55 63 333 55 55 334 19 54 335 18 55 336 19 63 337 55 57 338 57 57 339 57 49 340 14 55 341 19 58 342 36 57 343 42 60 344 38 60 345 38 59 346 37 58 347 36 60 348 38 57 349 42 62 350 40 62 351 40 61 352 39 60 353 38 62 354 40 57 355 42 63 356 43 56 357 41 57 358 42 58 359 36 64 360 136 67 361 137 66 362 135 66 363 135 65 364 132 64 365 136 65 366 132 66 367 135 69 368 134 69 369 134 68 370 133 65 371 132 68 372 148 69 373 149 71 374 147 71 375 147 70 376 146 68 377 148 70 378 146 71 379 147 73 380 145 73 381 145 72 382 144 70 383 146 72 384 144 73 385 145 75 386 143 75 387 143 74 388 142 72 389 144 74 390 142 75 391 143 77 392 141 77 393 141 76 394 140 74 395 142 76 396 140 77 397 141 79 398 139 79 399 139 78 400 138 76 401 140 78 402 138 79 403 139 67 404 137 67 405 137 64 406 136 78 407 138 69 408 129 67 409 128 73 410 124 73 411 124 71 412 130 69 413 129 73 414 124 67 415 128 77 416 126 77 417 126 75 418 125 73 419 124 77 420 126 67 421 128 79 422 127 66 423 131 67 424 128 69 425 129 65 426 168 81 427 169 80 428 171 80 429 171 64 430 170 65 431 168 68 432 164 82 433 165 81 434 169 81 435 169 65 436 168 68 437 164 70 438 158 83 439 159 82 440 165 82 441 165 68 442 164 70 443 158 72 444 155 84 445 150 83 446 159 83 447 159 70 448 158 72 449 155 74 450 154 85 451 153 84 452 150 84 453 150 72 454 155 74 455 154 76 456 160 86 457 161 85 458 153 85 459 153 74 460 154 76 461 160 78 462 166 87 463 167 86 464 161 86 465 161 76 466 160 78 467 166 64 468 170 80 469 171 87 470 167 87 471 167 78 472 166 64 473 170 81 474 200 89 475 201 88 476 199 88 477 199 80 478 198 81 479 200 82 480 202 90 481 203 89 482 201 89 483 201 81 484 200 82 485 202 83 486 204 91 487 205 90 488 203 90 489 203 82 490 202 83 491 204 84 492 206 92 493 207 91 494 205 91 495 205 83 496 204 84 497 206 86 498 194 94 499 195 93 500 193 93 501 193 85 502 192 86 503 194 87 504 196 95 505 197 94 506 195 94 507 195 86 508 194 87 509 196 80 510 198 88 511 199 95 512 197 95 513 197 87 514 196 80 515 198 95 516 172 91 517 176 93 518 174 93 519 174 94 520 173 95 521 172 93 522 174 91 523 176 92 524 175 91 525 176 95 526 172 89 527 178 89 528 178 90 529 177 91 530 176 88 531 181 89 532 178 95 533 172 85 534 153 97 535 152 96 536 151 96 537 151 84 538 150 85 539 153 84 540 206 96 541 209 98 542 208 98 543 208 92 544 207 84 545 206 93 546 193 99 547 191 97 548 190 97 549 190 85 550 192 93 551 193 92 552 175 98 553 180 99 554 179 99 555 179 93 556 174 92 557 175 97 558 152 101 559 157 100 560 156 100 561 156 96 562 151 97 563 152 96 564 209 100 565 211 102 566 210 102 567 210 98 568 208 96 569 209 99 570 191 103 571 189 101 572 186 101 573 186 97 574 190 99 575 191 98 576 180 102 577 183 103 578 182 103 579 182 99 580 179 98 581 180 101 582 157 105 583 163 104 584 162 104 585 162 100 586 156 101 587 157 100 588 211 104 589 213 106 590 212 106 591 212 102 592 210 100 593 211 103 594 189 107 595 188 105 596 187 105 597 187 101 598 186 103 599 189 102 600 183 106 601 185 107 602 184 107 603 184 103 604 182 102 605 183 106 606 212 104 607 213 105 608 215 105 609 215 107 610 214 106 611 212 108 612 234 111 613 237 110 614 242 110 615 242 109 616 241 108 617 234 110 618 242 111 619 237 112 620 245 113 621 231 114 622 238 111 623 237 111 624 237 108 625 234 113 626 231 111 627 273 114 628 270 116 629 271 116 630 271 115 631 272 111 632 273 112 633 275 111 634 273 115 635 272 115 636 272 117 637 274 112 638 275 110 639 277 112 640 275 117 641 274 117 642 274 118 643 276 110 644 277 109 645 279 110 646 277 118 647 276 118 648 276 119 649 278 109 650 279 108 651 280 109 652 279 119 653 278 119 654 278 120 655 281 108 656 280 113 657 269 121 658 267 116 659 271 116 660 271 114 661 270 113 662 269 115 663 223 120 664 216 118 665 227 118 666 227 117 667 226 115 668 223 118 669 227 120 670 216 119 671 230 116 672 222 121 673 219 120 674 216 120 675 216 115 676 223 116 677 222 122 678 232 125 679 233 124 680 236 124 681 236 123 682 235 122 683 232 108 684 250 120 685 249 127 686 248 127 687 248 126 688 20 108 689 250 121 690 267 113 691 269 129 692 21 129 693 21 128 694 265 121 695 267 120 696 216 121 697 219 128 698 218 128 699 218 127 700 217 120 701 216 123 702 235 124 703 236 131 704 240 131 705 240 130 706 239 123 707 235 126 708 20 127 709 248 133 710 253 133 711 253 132 712 22 126 713 20 128 714 265 129 715 21 135 716 23 135 717 23 134 718 263 128 719 265 127 720 217 128 721 218 134 722 221 134 723 221 133 724 220 127 725 217 130 726 239 131 727 240 137 728 244 137 729 244 136 730 243 130 731 239 132 732 22 133 733 253 139 734 255 139 735 255 138 736 24 132 737 22 134 738 263 135 739 23 141 740 25 141 741 25 140 742 261 134 743 263 133 744 220 134 745 221 140 746 225 140 747 225 139 748 224 133 749 220 136 750 243 137 751 244 143 752 247 143 753 247 142 754 246 136 755 243 138 756 24 139 757 255 145 758 257 145 759 257 144 760 26 138 761 24 140 762 261 141 763 25 147 764 27 147 765 27 146 766 259 140 767 261 139 768 224 140 769 225 146 770 229 146 771 229 145 772 228 139 773 224 145 774 257 146 775 259 147 776 27 147 777 27 144 778 26 145 779 257 113 780 231 108 781 234 125 782 233 125 783 233 122 784 232 113 785 231 108 786 250 126 787 20 124 788 252 124 789 252 125 790 251 108 791 250 126 792 20 132 793 22 131 794 254 131 795 254 124 796 252 126 797 20 132 798 22 138 799 24 137 800 256 137 801 256 131 802 254 132 803 22 138 804 24 144 805 26 143 806 258 143 807 258 137 808 256 138 809 24 144 810 26 147 811 27 142 812 260 142 813 260 143 814 258 144 815 26 147 816 27 141 817 25 136 818 262 136 819 262 142 820 260 147 821 27 141 822 25 135 823 23 130 824 264 130 825 264 136 826 262 141 827 25 135 828 23 129 829 21 123 830 266 123 831 266 130 832 264 135 833 23 129 834 21 113 835 269 122 836 268 122 837 268 123 838 266 129 839 21</p></triangles>
1366
+ </mesh>
1367
+ </geometry>
1368
+ </library_geometries>
1369
+ <library_visual_scenes>
1370
+ <visual_scene id="l_elbow_rx" name="l_elbow_rx">
1371
+ <node name="g27" id="g27" sid="g27"><matrix sid="matrix">1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000</matrix><extra><technique profile="FCOLLADA"><visibility>1.000000</visibility></technique></extra><node name="l_elbow_rx_node" id="l_elbow_rx_node" sid="l_elbow_rx_node"><matrix sid="matrix">1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000</matrix><extra><technique profile="FCOLLADA"><visibility>1.000000</visibility></technique></extra><node name="drc_l_elbow_rx" id="drc_l_elbow_rx" sid="drc_l_elbow_rx"><matrix sid="matrix">1.000000 0.000000 0.000000 -0.015722 0.000000 1.000000 -0.000000 -0.000528 0.000000 0.000000 1.000000 -0.002416 0.000000 0.000000 0.000000 1.000000</matrix><instance_geometry url="#drc_l_elbow_rx-lib"><bind_material><technique_common><instance_material symbol="drc_extremities_diffuse" target="#drc_extremities_diffuse"/></technique_common></bind_material></instance_geometry><extra><technique profile="FCOLLADA"><visibility>1.000000</visibility></technique></extra></node></node></node>
1372
+ <extra><technique profile="MAX3D"><frame_rate>30.000000</frame_rate></technique><technique profile="FCOLLADA"><start_time>0.000000</start_time><end_time>3.333333</end_time></technique></extra>
1373
+ </visual_scene>
1374
+ </library_visual_scenes>
1375
+ <scene>
1376
+ <instance_visual_scene url="#l_elbow_rx"></instance_visual_scene>
1377
+ </scene>
1378
+ </COLLADA>