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-22T19:48:22Z</created><keywords></keywords><modified>2013-08-22T19:48:22Z</modified><revision></revision><subject></subject><title></title><unit meter="1.000000" name="centimeter"></unit><up_axis>Z_UP</up_axis></asset>
4
+ <library_images>
5
+ <image id="drc_extremities_diffuse-image" name="drc_extremities_diffuse"><init_from>../materials/textures/drc_extremities_diffuse.jpg</init_from></image>
6
+ </library_images>
7
+ <library_materials>
8
+ <material id="drc_extremities_diffuse" name="drc_extremities_diffuse">
9
+ <instance_effect url="#drc_extremities_diffuse-fx"/>
10
+ </material>
11
+ </library_materials>
12
+ <library_effects>
13
+ <effect id="drc_extremities_diffuse-fx" name="drc_extremities_diffuse">
14
+ <profile_COMMON>
15
+ <technique sid="standard">
16
+ <phong>
17
+ <emission>
18
+ <color sid="emission">0.000000 0.000000 0.000000 1.000000</color>
19
+ </emission>
20
+ <ambient>
21
+ <color sid="ambient">0.588235 0.588235 0.588235 1.000000</color>
22
+ </ambient>
23
+ <diffuse>
24
+ <texture texture="drc_extremities_diffuse-image" texcoord="CHANNEL0">
25
+ <extra>
26
+ <technique profile="MAYA">
27
+ <wrapU sid="wrapU0">TRUE</wrapU>
28
+ <wrapV sid="wrapV0">TRUE</wrapV>
29
+ <blend_mode>ADD</blend_mode>
30
+ </technique>
31
+ </extra>
32
+ </texture>
33
+ </diffuse>
34
+ <specular>
35
+ <color sid="specular">0.000000 0.000000 0.000000 1.000000</color>
36
+ </specular>
37
+ <shininess>
38
+ <float sid="shininess">2.000000</float>
39
+ </shininess>
40
+ <reflective>
41
+ <color sid="reflective">0.000000 0.000000 0.000000 1.000000</color>
42
+ </reflective>
43
+ <reflectivity>
44
+ <float sid="reflectivity">1.000000</float>
45
+ </reflectivity>
46
+ <transparent opaque="RGB_ZERO">
47
+ <color sid="transparent">1.000000 1.000000 1.000000 1.000000</color>
48
+ </transparent>
49
+ <transparency>
50
+ <float sid="transparency">0.000000</float>
51
+ </transparency>
52
+ </phong>
53
+ </technique>
54
+ </profile_COMMON>
55
+ </effect>
56
+ </library_effects>
57
+ <library_geometries>
58
+ <geometry id="drc_r_elbow_rx-lib" name="drc_r_elbow_rxMesh">
59
+ <mesh>
60
+ <source id="drc_r_elbow_rx-POSITION">
61
+ <float_array id="drc_r_elbow_rx-POSITION-array" count="444">
62
+ -0.340759 -0.343667 0.068905
63
+ -0.340759 -0.278979 0.068833
64
+ -0.243312 -0.278979 0.068833
65
+ -0.243312 -0.343667 0.068905
66
+ -0.340759 -0.343667 0.125230
67
+ -0.243312 -0.343667 0.125230
68
+ -0.243312 -0.279051 0.125230
69
+ -0.340759 -0.279051 0.125230
70
+ -0.243312 -0.279051 0.117367
71
+ -0.243312 -0.343667 0.117367
72
+ -0.243312 -0.343667 0.076767
73
+ -0.243312 -0.278979 0.076696
74
+ -0.340759 -0.279051 0.117367
75
+ -0.340759 -0.278979 0.076696
76
+ -0.352687 -0.343667 0.117367
77
+ -0.352687 -0.279051 0.117367
78
+ -0.352687 -0.278979 0.076696
79
+ -0.352687 -0.343667 0.076767
80
+ -0.340759 -0.343667 0.117367
81
+ -0.340759 -0.343667 0.076767
82
+ -0.352687 -0.343667 0.125230
83
+ -0.352687 -0.279051 0.125230
84
+ -0.352687 -0.278979 0.068833
85
+ -0.352687 -0.343667 0.068905
86
+ -0.243312 -0.358248 0.117367
87
+ -0.243312 -0.358320 0.076696
88
+ -0.340759 -0.358320 0.076696
89
+ -0.340759 -0.358248 0.117367
90
+ -0.243312 -0.387554 0.091349
91
+ -0.243312 -0.387483 0.076696
92
+ -0.340759 -0.387483 0.076696
93
+ -0.340759 -0.387554 0.091349
94
+ -0.259890 -0.401564 0.097210
95
+ -0.271212 -0.401493 0.069977
96
+ -0.271212 -0.347884 0.069977
97
+ -0.259890 -0.347884 0.097282
98
+ -0.298404 -0.401564 0.058755
99
+ -0.298404 -0.347884 0.058684
100
+ -0.325697 -0.401493 0.069977
101
+ -0.325697 -0.347884 0.069977
102
+ -0.336917 -0.401564 0.097210
103
+ -0.336917 -0.347884 0.097282
104
+ -0.325697 -0.401564 0.124515
105
+ -0.325697 -0.347884 0.124443
106
+ -0.298404 -0.401564 0.135808
107
+ -0.298404 -0.347884 0.135737
108
+ -0.271212 -0.401564 0.124515
109
+ -0.271212 -0.347884 0.124443
110
+ -0.265652 -0.341308 0.064402
111
+ -0.252107 -0.341308 0.097282
112
+ -0.298404 -0.341379 0.050892
113
+ -0.331155 -0.341308 0.064402
114
+ -0.344802 -0.341308 0.097282
115
+ -0.331155 -0.341308 0.130019
116
+ -0.298404 -0.341308 0.143600
117
+ -0.265652 -0.341308 0.130019
118
+ -0.265652 -0.278908 0.064473
119
+ -0.252107 -0.278908 0.097210
120
+ -0.298404 -0.278908 0.050892
121
+ -0.331155 -0.278908 0.064473
122
+ -0.344802 -0.278908 0.097210
123
+ -0.331155 -0.278979 0.130019
124
+ -0.298404 -0.278979 0.143600
125
+ -0.265652 -0.278979 0.130019
126
+ -0.241088 -0.185343 0.106717
127
+ -0.241088 -0.193277 0.087489
128
+ -0.294563 -0.193277 0.087489
129
+ -0.294563 -0.185343 0.106717
130
+ -0.241088 -0.212576 0.079484
131
+ -0.294563 -0.212576 0.079484
132
+ -0.241088 -0.231804 0.087418
133
+ -0.294563 -0.231804 0.087418
134
+ -0.241088 -0.239738 0.106645
135
+ -0.294563 -0.239738 0.106645
136
+ -0.241088 -0.231732 0.125944
137
+ -0.294563 -0.231732 0.125944
138
+ -0.241088 -0.212504 0.133878
139
+ -0.294563 -0.212504 0.133878
140
+ -0.241088 -0.193277 0.125944
141
+ -0.294563 -0.193277 0.125944
142
+ -0.241088 -0.179624 0.106717
143
+ -0.241088 -0.180411 0.079627
144
+ -0.241088 -0.191204 0.071264
145
+ -0.241088 -0.238880 0.072336
146
+ -0.241088 -0.247815 0.080270
147
+ -0.241088 -0.242525 0.126874
148
+ -0.241088 -0.212504 0.139597
149
+ -0.241088 -0.189274 0.129947
150
+ -0.232193 -0.179624 0.106717
151
+ -0.232193 -0.180411 0.079627
152
+ -0.232193 -0.191204 0.071264
153
+ -0.232193 -0.238880 0.072336
154
+ -0.232193 -0.247815 0.080270
155
+ -0.232193 -0.242525 0.126874
156
+ -0.232193 -0.212504 0.139597
157
+ -0.232193 -0.189274 0.129947
158
+ -0.241088 -0.272903 0.080341
159
+ -0.241088 -0.274262 0.126874
160
+ -0.232193 -0.269115 0.080270
161
+ -0.232193 -0.274262 0.126874
162
+ -0.244930 -0.280194 0.068190
163
+ -0.244930 -0.280695 0.126874
164
+ -0.232193 -0.280194 0.068190
165
+ -0.232193 -0.280695 0.126874
166
+ -0.244930 -0.304425 0.068262
167
+ -0.244930 -0.304425 0.126874
168
+ -0.232193 -0.304425 0.068262
169
+ -0.232193 -0.304425 0.126874
170
+ -0.360571 -0.240238 0.115008
171
+ -0.360571 -0.231732 0.125944
172
+ -0.360571 -0.212504 0.133878
173
+ -0.360571 -0.185343 0.106717
174
+ -0.360571 -0.193277 0.125944
175
+ -0.360571 -0.218223 0.075552
176
+ -0.360571 -0.193277 0.087489
177
+ -0.354607 -0.185343 0.106717
178
+ -0.354607 -0.193277 0.087489
179
+ -0.354607 -0.193277 0.125944
180
+ -0.354607 -0.212504 0.133878
181
+ -0.354607 -0.231732 0.125944
182
+ -0.354607 -0.240238 0.115008
183
+ -0.354607 -0.218223 0.075552
184
+ -0.365524 -0.218223 0.075552
185
+ -0.365524 -0.271188 0.075624
186
+ -0.365524 -0.268829 0.115008
187
+ -0.365524 -0.240238 0.115008
188
+ -0.360571 -0.268829 0.115008
189
+ -0.354607 -0.268829 0.115008
190
+ -0.354607 -0.271188 0.075624
191
+ -0.360571 -0.271188 0.075624
192
+ -0.365524 -0.278836 0.071550
193
+ -0.365524 -0.276406 0.120584
194
+ -0.360571 -0.276406 0.120584
195
+ -0.354607 -0.276406 0.120584
196
+ -0.354607 -0.278836 0.071550
197
+ -0.360571 -0.278836 0.071550
198
+ -0.365524 -0.279765 0.068476
199
+ -0.365524 -0.279694 0.126874
200
+ -0.360571 -0.279694 0.126874
201
+ -0.354607 -0.279694 0.126874
202
+ -0.354607 -0.279765 0.068476
203
+ -0.360571 -0.279765 0.068476
204
+ -0.365524 -0.303925 0.068476
205
+ -0.365524 -0.303853 0.126874
206
+ -0.360571 -0.303853 0.126874
207
+ -0.354607 -0.303853 0.126874
208
+ -0.354607 -0.303925 0.068476
209
+ -0.360571 -0.303925 0.068476
210
+ </float_array>
211
+ <technique_common>
212
+ <accessor source="#drc_r_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_r_elbow_rx-Normal0">
220
+ <float_array id="drc_r_elbow_rx-Normal0-array" count="2520">
221
+ 0.000000 -0.001105 -0.999999
222
+ 0.000000 -0.001105 -0.999999
223
+ 0.000000 -0.001105 -0.999999
224
+ 0.000000 -0.001105 -0.999999
225
+ 0.000000 -0.001105 -0.999999
226
+ 0.000000 -0.001105 -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.001757
240
+ 0.000000 0.999998 0.001757
241
+ 0.000000 0.999999 0.001757
242
+ 0.000000 0.999999 0.001757
243
+ 0.000000 0.999998 0.001757
244
+ 0.000000 0.999999 0.001757
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.000000
258
+ 0.000000 -1.000000 0.000000
259
+ 0.000000 -1.000000 0.000000
260
+ 0.000000 -1.000000 0.000000
261
+ 0.000000 -1.000000 0.000000
262
+ 0.000000 -1.000000 0.000000
263
+ 1.000000 0.000000 0.000000
264
+ 1.000000 0.000000 0.000000
265
+ 1.000000 0.000000 0.000000
266
+ 1.000000 0.000000 0.000000
267
+ 1.000000 0.000000 0.000000
268
+ 1.000000 0.000000 0.000000
269
+ 1.000000 0.000000 0.000000
270
+ 1.000000 0.000000 0.000000
271
+ 1.000000 0.000000 0.000000
272
+ 1.000000 0.000000 0.000000
273
+ 1.000000 0.000000 0.000000
274
+ 1.000000 0.000000 0.000000
275
+ 0.000000 1.000000 0.000000
276
+ 0.000000 1.000000 0.000000
277
+ 0.000000 1.000000 0.000000
278
+ 0.000000 1.000000 0.000000
279
+ 0.000000 1.000000 0.000000
280
+ 0.000000 1.000000 0.000000
281
+ 0.000000 1.000000 0.000000
282
+ 0.000000 1.000000 0.000000
283
+ 0.000000 1.000000 0.000000
284
+ 0.000000 1.000000 0.000000
285
+ 0.000000 1.000000 0.000000
286
+ 0.000000 1.000000 0.000000
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.004876 -0.999988
318
+ 0.000000 0.004876 -0.999988
319
+ 0.000000 0.004876 -0.999988
320
+ 0.000000 0.004876 -0.999988
321
+ 0.000000 0.004876 -0.999988
322
+ 0.000000 0.004876 -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.663911 0.747811
336
+ 0.000000 -0.663911 0.747811
337
+ 0.000000 -0.663911 0.747811
338
+ 0.000000 -0.663911 0.747811
339
+ 0.000000 -0.663911 0.747811
340
+ 0.000000 -0.663911 0.747811
341
+ 0.000000 0.000001 -1.000000
342
+ 0.000000 0.000001 -1.000000
343
+ 0.000000 0.000001 -1.000000
344
+ 0.000000 0.000001 -1.000000
345
+ 0.000000 0.000001 -1.000000
346
+ 0.000000 0.000001 -1.000000
347
+ 0.000000 -0.999988 -0.004879
348
+ 0.000000 -0.999988 -0.004879
349
+ 0.000000 -0.999988 -0.004879
350
+ 0.000000 -0.999988 -0.004879
351
+ 0.000000 -0.999988 -0.004879
352
+ 0.000000 -0.999988 -0.004879
353
+ 0.000000 -0.001105 -0.999999
354
+ 0.000000 -0.001105 -0.999999
355
+ 0.000000 -0.001105 -0.999999
356
+ 0.000000 -0.001105 -0.999999
357
+ 0.000000 -0.001105 -0.999999
358
+ 0.000000 -0.001105 -0.999999
359
+ 0.000000 -1.000000 0.000000
360
+ 0.000000 -1.000000 0.000000
361
+ 0.000000 -1.000000 0.000000
362
+ 0.000000 -1.000000 0.000000
363
+ 0.000000 -1.000000 0.000000
364
+ 0.000000 -1.000000 0.000000
365
+ 0.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.000000
384
+ 0.000000 1.000000 0.000000
385
+ 0.000000 1.000000 0.000000
386
+ 0.000000 1.000000 0.000000
387
+ 0.000000 1.000000 0.000000
388
+ 0.000000 1.000000 0.000000
389
+ 0.000000 0.999998 0.001757
390
+ 0.000000 0.999998 0.001757
391
+ 0.000000 0.999998 0.001757
392
+ 0.000000 0.999998 0.001757
393
+ 0.000000 0.999998 0.001757
394
+ 0.000000 0.999998 0.001757
395
+ 0.000000 1.000000 0.000000
396
+ 0.000000 1.000000 0.000000
397
+ 0.000000 1.000000 0.000000
398
+ 0.000000 1.000000 0.000000
399
+ 0.000000 1.000000 0.000000
400
+ 0.000000 1.000000 0.000000
401
+ 0.923385 -0.000000 -0.383876
402
+ 0.923385 -0.000000 -0.383876
403
+ 0.923385 -0.000000 -0.383876
404
+ 0.923741 0.000510 -0.383018
405
+ 0.923741 0.000510 -0.383018
406
+ 0.923741 0.000510 -0.383018
407
+ 0.381490 -0.001231 -0.924372
408
+ 0.381490 -0.001231 -0.924372
409
+ 0.381490 -0.001231 -0.924372
410
+ 0.383561 -0.000000 -0.923516
411
+ 0.383560 -0.000000 -0.923516
412
+ 0.383561 -0.000000 -0.923516
413
+ -0.380279 -0.000000 -0.924872
414
+ -0.380279 -0.000000 -0.924872
415
+ -0.380279 -0.000000 -0.924872
416
+ -0.382347 -0.001230 -0.924018
417
+ -0.382347 -0.001230 -0.924018
418
+ -0.382347 -0.001230 -0.924018
419
+ -0.924597 0.000507 -0.380946
420
+ -0.924597 0.000507 -0.380946
421
+ -0.924597 0.000507 -0.380946
422
+ -0.924948 -0.000000 -0.380094
423
+ -0.924948 -0.000000 -0.380094
424
+ -0.924948 -0.000000 -0.380094
425
+ -0.924948 0.000506 0.380094
426
+ -0.924948 0.000506 0.380094
427
+ -0.924948 0.000506 0.380094
428
+ -0.924243 -0.000508 0.381803
429
+ -0.924243 -0.000508 0.381804
430
+ -0.924243 -0.000508 0.381804
431
+ -0.382347 0.001230 0.924018
432
+ -0.382347 0.001230 0.924018
433
+ -0.382347 0.001230 0.924018
434
+ -0.382347 0.001230 0.924018
435
+ -0.382347 0.001230 0.924018
436
+ -0.382347 0.001230 0.924018
437
+ 0.383560 0.001230 0.923515
438
+ 0.383560 0.001230 0.923515
439
+ 0.383560 0.001230 0.923515
440
+ 0.383560 0.001230 0.923515
441
+ 0.383560 0.001230 0.923515
442
+ 0.383560 0.001230 0.923515
443
+ 0.923741 -0.000510 0.383018
444
+ 0.923741 -0.000510 0.383018
445
+ 0.923741 -0.000510 0.383018
446
+ 0.923026 0.000512 0.384736
447
+ 0.923026 0.000512 0.384736
448
+ 0.923027 0.000512 0.384736
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.004452 -0.999980 -0.004458
456
+ -0.004452 -0.999980 -0.004458
457
+ -0.004452 -0.999980 -0.004458
458
+ 0.000000 -1.000000 0.000000
459
+ 0.000000 -1.000000 0.000000
460
+ 0.000000 -1.000000 0.000000
461
+ 0.004480 -0.999980 -0.004487
462
+ 0.004480 -0.999980 -0.004487
463
+ 0.004480 -0.999980 -0.004487
464
+ 0.000000 -1.000000 0.000000
465
+ 0.000000 -1.000000 0.000000
466
+ 0.000000 -1.000000 0.000000
467
+ 0.619610 -0.741673 -0.256914
468
+ 0.619610 -0.741673 -0.256914
469
+ 0.619610 -0.741673 -0.256914
470
+ 0.623697 -0.738230 -0.256941
471
+ 0.623697 -0.738230 -0.256941
472
+ 0.623697 -0.738230 -0.256941
473
+ 0.257217 -0.741817 -0.619312
474
+ 0.257217 -0.741817 -0.619312
475
+ 0.257217 -0.741817 -0.619312
476
+ 0.256968 -0.742114 -0.619060
477
+ 0.256968 -0.742114 -0.619059
478
+ 0.256968 -0.742114 -0.619059
479
+ -0.257093 -0.740181 -0.621317
480
+ -0.257093 -0.740181 -0.621317
481
+ -0.257093 -0.740181 -0.621317
482
+ -0.257081 -0.741845 -0.619335
483
+ -0.257081 -0.741845 -0.619335
484
+ -0.257081 -0.741845 -0.619335
485
+ -0.619400 -0.742668 -0.254534
486
+ -0.619400 -0.742668 -0.254534
487
+ -0.619400 -0.742668 -0.254534
488
+ -0.623867 -0.737391 -0.258930
489
+ -0.623866 -0.737391 -0.258930
490
+ -0.623867 -0.737391 -0.258930
491
+ -0.624537 -0.737151 0.257995
492
+ -0.624537 -0.737152 0.257995
493
+ -0.624537 -0.737151 0.257995
494
+ -0.618818 -0.741972 0.257957
495
+ -0.618818 -0.741972 0.257957
496
+ -0.618818 -0.741972 0.257957
497
+ -0.256581 -0.741396 0.620079
498
+ -0.256581 -0.741396 0.620079
499
+ -0.256581 -0.741396 0.620079
500
+ -0.257515 -0.740279 0.621025
501
+ -0.257515 -0.740279 0.621026
502
+ -0.257515 -0.740279 0.621025
503
+ 0.257080 -0.742139 0.618983
504
+ 0.257080 -0.742139 0.618983
505
+ 0.257080 -0.742139 0.618983
506
+ 0.257087 -0.741293 0.619993
507
+ 0.257087 -0.741293 0.619993
508
+ 0.257087 -0.741293 0.619993
509
+ 0.623209 -0.737653 0.259766
510
+ 0.623209 -0.737653 0.259766
511
+ 0.623209 -0.737653 0.259766
512
+ 0.619908 -0.741568 0.256497
513
+ 0.619908 -0.741568 0.256497
514
+ 0.619908 -0.741568 0.256497
515
+ 0.924612 0.000436 -0.380909
516
+ 0.924612 0.000436 -0.380909
517
+ 0.924612 0.000436 -0.380909
518
+ 0.924026 -0.000438 -0.382330
519
+ 0.924026 -0.000438 -0.382330
520
+ 0.924026 -0.000438 -0.382330
521
+ 0.381315 0.000000 -0.924445
522
+ 0.381314 0.000000 -0.924445
523
+ 0.381314 0.000000 -0.924445
524
+ 0.383036 0.001058 -0.923733
525
+ 0.383036 0.001058 -0.923733
526
+ 0.383036 0.001058 -0.923733
527
+ -0.381312 0.001059 -0.924446
528
+ -0.381312 0.001059 -0.924446
529
+ -0.381312 0.001059 -0.924446
530
+ -0.383036 0.000000 -0.923733
531
+ -0.383036 0.000000 -0.923733
532
+ -0.383036 0.000000 -0.923733
533
+ -0.923609 -0.000439 -0.383336
534
+ -0.923609 -0.000439 -0.383336
535
+ -0.923609 -0.000439 -0.383336
536
+ -0.923015 0.000441 -0.384763
537
+ -0.923015 0.000441 -0.384763
538
+ -0.923015 0.000441 -0.384763
539
+ -0.923015 -0.000000 0.384763
540
+ -0.923015 -0.000000 0.384763
541
+ -0.923015 -0.000000 0.384763
542
+ -0.923313 0.000440 0.384049
543
+ -0.923313 0.000440 0.384049
544
+ -0.923313 0.000440 0.384049
545
+ -0.383037 0.000000 0.923733
546
+ -0.383037 0.000000 0.923733
547
+ -0.383036 0.000000 0.923733
548
+ -0.383036 -0.000000 0.923733
549
+ -0.383036 -0.000000 0.923733
550
+ -0.383036 -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.383036 0.000000 0.923733
555
+ 0.383036 0.000000 0.923733
556
+ 0.383036 0.000000 0.923733
557
+ 0.924026 0.000438 0.382330
558
+ 0.924026 0.000438 0.382330
559
+ 0.924026 0.000438 0.382330
560
+ 0.924320 -0.000000 0.381618
561
+ 0.924320 -0.000000 0.381618
562
+ 0.924320 -0.000000 0.381618
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.001092 0.999996 0.002632
570
+ -0.001092 0.999996 0.002632
571
+ -0.001092 0.999996 0.002632
572
+ 0.000000 0.999999 0.001541
573
+ 0.000000 0.999999 0.001541
574
+ 0.000000 0.999999 0.001541
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.383157 -0.923683
588
+ 0.000000 0.383157 -0.923683
589
+ 0.000000 0.383157 -0.923683
590
+ 0.000000 0.383157 -0.923683
591
+ 0.000000 0.383157 -0.923683
592
+ 0.000000 0.383157 -0.923683
593
+ 0.000000 -0.381440 -0.924394
594
+ 0.000000 -0.381440 -0.924394
595
+ 0.000000 -0.381440 -0.924394
596
+ 0.000000 -0.381440 -0.924394
597
+ 0.000000 -0.381440 -0.924394
598
+ 0.000000 -0.381440 -0.924394
599
+ 0.000000 -0.924393 -0.381441
600
+ 0.000000 -0.924393 -0.381441
601
+ 0.000000 -0.924393 -0.381441
602
+ 0.000000 -0.924393 -0.381441
603
+ 0.000000 -0.924393 -0.381441
604
+ 0.000000 -0.924393 -0.381441
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.381441 0.924393
612
+ 0.000000 -0.381441 0.924393
613
+ 0.000000 -0.381441 0.924393
614
+ 0.000000 -0.381441 0.924393
615
+ 0.000000 -0.381441 0.924393
616
+ 0.000000 -0.381441 0.924393
617
+ 0.000000 0.381441 0.924393
618
+ 0.000000 0.381441 0.924393
619
+ 0.000000 0.381441 0.924393
620
+ 0.000000 0.381441 0.924393
621
+ 0.000000 0.381441 0.924393
622
+ 0.000000 0.381441 0.924393
623
+ 0.000000 0.924394 0.381440
624
+ 0.000000 0.924394 0.381440
625
+ 0.000000 0.924394 0.381440
626
+ 0.000000 0.924394 0.381440
627
+ 0.000000 0.924394 0.381440
628
+ 0.000000 0.924394 0.381440
629
+ -1.000000 0.000000 0.000000
630
+ -1.000000 0.000000 0.000000
631
+ -1.000000 0.000000 0.000000
632
+ -1.000000 0.000000 0.000000
633
+ -1.000000 0.000000 0.000000
634
+ -1.000000 0.000000 0.000000
635
+ -1.000000 0.000000 0.000000
636
+ -1.000000 0.000000 0.000000
637
+ -1.000000 0.000000 0.000000
638
+ -1.000000 0.000000 0.000000
639
+ -1.000000 0.000000 0.000000
640
+ -1.000000 0.000000 0.000000
641
+ -1.000000 0.000000 0.000000
642
+ -1.000000 0.000000 0.000000
643
+ -1.000000 0.000000 0.000000
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.000000
654
+ -1.000000 0.000000 0.000000
655
+ -1.000000 0.000000 0.000000
656
+ -1.000000 0.000000 0.000000
657
+ -1.000000 0.000000 0.000000
658
+ -1.000000 0.000000 0.000000
659
+ 1.000000 0.000000 0.000000
660
+ 1.000000 0.000000 0.000000
661
+ 1.000000 0.000000 0.000000
662
+ -1.000000 0.000000 0.000000
663
+ -1.000000 0.000000 0.000000
664
+ -1.000000 0.000000 0.000000
665
+ -1.000000 0.000000 0.000000
666
+ -1.000000 0.000000 0.000000
667
+ -1.000000 0.000000 0.000000
668
+ -1.000000 0.000000 0.000000
669
+ -1.000000 0.000000 0.000000
670
+ -1.000000 0.000000 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.000000 0.000000
675
+ -1.000000 0.000000 0.000000
676
+ -1.000000 0.000000 0.000000
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.029012
696
+ 0.000000 0.999579 -0.029012
697
+ 0.000000 0.999579 -0.029012
698
+ 0.000000 0.999579 -0.029012
699
+ 0.000000 0.999579 -0.029012
700
+ 0.000000 0.999579 -0.029012
701
+ 0.000000 0.612490 -0.790479
702
+ 0.000000 0.612490 -0.790479
703
+ 0.000000 0.612490 -0.790479
704
+ 0.000000 0.612490 -0.790479
705
+ 0.000000 0.612490 -0.790479
706
+ 0.000000 0.612490 -0.790479
707
+ 0.000000 -0.022483 -0.999747
708
+ 0.000000 -0.022483 -0.999747
709
+ 0.000000 -0.022483 -0.999747
710
+ 0.000000 -0.022483 -0.999747
711
+ 0.000000 -0.022483 -0.999747
712
+ 0.000000 -0.022483 -0.999747
713
+ 0.000000 -0.663993 -0.747739
714
+ 0.000000 -0.663993 -0.747739
715
+ 0.000000 -0.663993 -0.747739
716
+ 0.000000 -0.663993 -0.747739
717
+ 0.000000 -0.663993 -0.747739
718
+ 0.000000 -0.663993 -0.747739
719
+ 0.000000 -0.390212 0.920725
720
+ 0.000000 -0.390212 0.920725
721
+ 0.000000 -0.390212 0.920725
722
+ 0.000000 -0.390212 0.920725
723
+ 0.000000 -0.390212 0.920725
724
+ 0.000000 -0.390212 0.920725
725
+ 0.000000 0.383606 0.923497
726
+ 0.000000 0.383606 0.923497
727
+ 0.000000 0.383606 0.923497
728
+ 0.000000 0.383606 0.923497
729
+ 0.000000 0.383606 0.923497
730
+ 0.000000 0.383606 0.923497
731
+ 0.000000 0.923497 0.383606
732
+ 0.000000 0.923497 0.383606
733
+ 0.000000 0.923497 0.383606
734
+ 0.000000 0.923497 0.383606
735
+ 0.000000 0.923497 0.383606
736
+ 0.000000 0.923497 0.383606
737
+ 1.000000 0.000000 0.000000
738
+ 1.000000 0.000000 0.000000
739
+ 1.000000 0.000000 0.000000
740
+ 1.000000 0.000000 0.000000
741
+ 1.000000 0.000000 0.000000
742
+ 1.000000 0.000000 0.000000
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.000000 0.000000
747
+ 1.000000 0.000000 0.000000
748
+ 1.000000 0.000000 0.000000
749
+ 1.000000 0.000000 0.000000
750
+ 1.000000 0.000000 0.000000
751
+ 1.000000 0.000000 0.000000
752
+ 1.000000 0.000000 0.000000
753
+ 1.000000 0.000000 0.000000
754
+ 1.000000 0.000000 0.000000
755
+ -1.000000 0.000000 0.000000
756
+ -1.000000 0.000000 0.000000
757
+ -1.000000 0.000000 0.000000
758
+ -1.000000 0.000000 0.000000
759
+ -1.000000 0.000000 0.000000
760
+ -1.000000 0.000000 0.000000
761
+ 0.000000 0.000000 -1.000000
762
+ 0.000000 0.000000 -1.000000
763
+ 0.000000 0.000000 -1.000000
764
+ -0.006821 -0.002849 -0.999973
765
+ -0.006821 -0.002849 -0.999973
766
+ -0.006821 -0.002849 -0.999973
767
+ 0.000000 0.000001 1.000000
768
+ 0.000000 0.000001 1.000000
769
+ 0.000000 0.000001 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.893482 0.448907 0.013102
780
+ -0.893482 0.448907 0.013102
781
+ -0.893482 0.448907 0.013102
782
+ -0.858576 0.512667 0.004371
783
+ -0.858576 0.512667 0.004371
784
+ -0.858576 0.512667 0.004371
785
+ -0.304160 0.702055 -0.643898
786
+ -0.304160 0.702055 -0.643898
787
+ -0.304160 0.702055 -0.643898
788
+ 0.000000 0.857492 -0.514497
789
+ 0.000000 0.857492 -0.514497
790
+ 0.000000 0.857492 -0.514497
791
+ 0.000000 0.000000 1.000000
792
+ 0.000000 0.000000 1.000000
793
+ 0.000000 0.000000 1.000000
794
+ 0.000000 0.000000 1.000000
795
+ 0.000000 0.000000 1.000000
796
+ 0.000000 0.000000 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.000000 -0.002950 -0.999996
810
+ 0.000000 -0.002950 -0.999996
811
+ 0.000000 -0.002950 -0.999996
812
+ 0.000000 -0.002950 -0.999996
813
+ 0.000000 -0.002950 -0.999996
814
+ 0.000000 -0.002950 -0.999996
815
+ 0.000000 -0.000001 1.000000
816
+ 0.000000 -0.000001 1.000000
817
+ 0.000000 -0.000001 1.000000
818
+ 0.000000 -0.000001 1.000000
819
+ 0.000000 -0.000001 1.000000
820
+ 0.000000 -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.381440
855
+ 0.000000 0.924394 0.381440
856
+ 0.000000 0.924393 0.381440
857
+ 0.000000 0.924394 0.381440
858
+ 0.000000 0.924394 0.381440
859
+ 0.000000 0.924393 0.381440
860
+ 0.000000 0.381441 0.924393
861
+ 0.000000 0.381441 0.924393
862
+ 0.000000 0.381441 0.924393
863
+ 0.000000 0.381441 0.924393
864
+ 0.000000 0.381441 0.924393
865
+ 0.000000 0.381441 0.924393
866
+ 0.000000 -0.381441 0.924393
867
+ 0.000000 -0.381441 0.924393
868
+ 0.000000 -0.381441 0.924393
869
+ 0.000000 -0.381441 0.924393
870
+ 0.000000 -0.381441 0.924393
871
+ 0.000000 -0.381441 0.924393
872
+ 0.000000 -0.789353 0.613940
873
+ 0.000000 -0.789353 0.613940
874
+ 0.000000 -0.789353 0.613940
875
+ 0.000000 -0.789353 0.613940
876
+ 0.000000 -0.789353 0.613940
877
+ 0.000000 -0.789353 0.613940
878
+ 0.000000 0.431638 -0.902047
879
+ 0.000000 0.431638 -0.902047
880
+ 0.000000 0.431638 -0.902047
881
+ 0.000000 0.431638 -0.902047
882
+ 0.000000 0.431638 -0.902047
883
+ 0.000000 0.431638 -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.000000 0.000000
900
+ -1.000000 0.000000 0.000000
901
+ -1.000000 0.000000 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.592681 0.805438
930
+ 0.000000 0.592681 0.805437
931
+ 0.000000 0.592681 0.805438
932
+ 0.000000 0.592681 0.805438
933
+ 0.000000 0.592681 0.805437
934
+ 0.000000 0.592681 0.805438
935
+ 0.000000 0.470158 -0.882582
936
+ 0.000000 0.470158 -0.882582
937
+ 0.000000 0.470158 -0.882582
938
+ 0.000000 0.470158 -0.882582
939
+ 0.000000 0.470158 -0.882582
940
+ 0.000000 0.470158 -0.882582
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.886224 0.463256
954
+ 0.000000 0.886224 0.463256
955
+ 0.000000 0.886225 0.463256
956
+ 0.000000 0.886224 0.463256
957
+ 0.000000 0.886224 0.463256
958
+ 0.000000 0.886225 0.463256
959
+ 0.000000 0.957212 -0.289387
960
+ 0.000000 0.957212 -0.289387
961
+ 0.000000 0.957212 -0.289387
962
+ 0.000000 0.957212 -0.289387
963
+ 0.000000 0.957212 -0.289387
964
+ 0.000000 0.957212 -0.289387
965
+ 1.000000 0.000000 0.000000
966
+ 1.000000 0.000000 0.000000
967
+ 1.000000 0.000000 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.000000 -1.000000
984
+ 0.000000 0.000000 -1.000000
985
+ 0.000000 0.000000 -1.000000
986
+ 0.000000 0.000000 -1.000000
987
+ 0.000000 0.000000 -1.000000
988
+ 0.000000 0.000000 -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.487254
1002
+ 0.000000 0.873260 0.487254
1003
+ 0.000000 0.873260 0.487254
1004
+ 0.000000 0.873260 0.487254
1005
+ 0.000000 0.873260 0.487254
1006
+ 0.000000 0.873260 0.487254
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.592681 0.805437
1014
+ 0.000000 0.592681 0.805437
1015
+ 0.000000 0.592681 0.805437
1016
+ 0.000000 0.592681 0.805437
1017
+ 0.000000 0.592681 0.805437
1018
+ 0.000000 0.592681 0.805437
1019
+ 0.000000 0.886225 0.463256
1020
+ 0.000000 0.886224 0.463256
1021
+ 0.000000 0.886225 0.463256
1022
+ 0.000000 0.886225 0.463256
1023
+ 0.000000 0.886224 0.463256
1024
+ 0.000000 0.886225 0.463256
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.000000 -1.000000
1038
+ 0.000000 0.000000 -1.000000
1039
+ 0.000000 0.000000 -1.000000
1040
+ 0.000000 0.000000 -1.000000
1041
+ 0.000000 0.000000 -1.000000
1042
+ 0.000000 0.000000 -1.000000
1043
+ 0.000000 0.957212 -0.289387
1044
+ 0.000000 0.957212 -0.289387
1045
+ 0.000000 0.957212 -0.289387
1046
+ 0.000000 0.957212 -0.289387
1047
+ 0.000000 0.957212 -0.289387
1048
+ 0.000000 0.957212 -0.289387
1049
+ 0.000000 0.470158 -0.882582
1050
+ 0.000000 0.470158 -0.882582
1051
+ 0.000000 0.470158 -0.882582
1052
+ 0.000000 0.470158 -0.882582
1053
+ 0.000000 0.470158 -0.882582
1054
+ 0.000000 0.470158 -0.882582
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_r_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_r_elbow_rx-UV0">
1071
+ <float_array id="drc_r_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_r_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_r_elbow_rx-VERTEX">
1363
+ <input semantic="POSITION" source="#drc_r_elbow_rx-POSITION"/>
1364
+ </vertices>
1365
+ <triangles count="280" material="drc_extremities_diffuse"><input semantic="VERTEX" offset="0" source="#drc_r_elbow_rx-VERTEX"/><input semantic="NORMAL" offset="1" source="#drc_r_elbow_rx-Normal0"/><input semantic="TEXCOORD" offset="2" set="0" source="#drc_r_elbow_rx-UV0"/><p> 0 0 0 1 1 1 2 2 116 2 3 116 3 4 118 0 5 0 4 6 2 5 7 108 6 8 110 6 9 110 7 10 3 4 11 2 8 12 73 9 13 76 10 14 79 10 15 79 11 16 72 8 17 73 12 18 4 8 19 112 11 20 114 11 21 114 13 22 5 12 23 4 14 24 87 15 25 84 16 26 85 16 27 85 17 28 86 14 29 87 5 30 108 4 31 2 18 32 106 18 33 106 9 34 107 5 35 108 0 36 0 3 37 118 10 38 120 10 39 120 19 40 121 0 41 0 6 42 74 5 43 75 9 44 76 9 45 76 8 46 73 6 47 74 3 48 80 2 49 81 11 50 72 11 51 72 10 52 79 3 53 80 7 54 3 6 55 110 8 56 112 8 57 112 12 58 4 7 59 3 2 60 116 1 61 1 13 62 5 13 63 5 11 64 114 2 65 116 20 66 88 21 67 89 15 68 84 15 69 84 14 70 87 20 71 88 22 72 90 23 73 91 17 74 86 17 75 86 16 76 85 22 77 90 10 78 79 9 79 76 24 80 77 24 81 77 25 82 78 10 83 79 18 84 70 19 85 71 26 86 66 26 87 66 27 88 69 18 89 70 9 90 102 18 91 103 27 92 100 27 93 100 24 94 101 9 95 102 19 96 92 10 97 93 25 98 94 25 99 94 26 100 95 19 101 92 25 102 78 24 103 77 28 104 82 28 105 82 29 106 83 25 107 78 27 108 69 26 109 66 30 110 67 30 111 67 31 112 68 27 113 69 24 114 101 27 115 100 31 116 98 31 117 98 28 118 99 24 119 101 26 120 95 25 121 94 29 122 96 29 123 96 30 124 97 26 125 95 31 126 98 30 127 97 29 128 96 29 129 96 28 130 99 31 131 98 1 132 1 0 133 0 23 134 117 23 135 117 22 136 115 1 137 1 0 138 0 19 139 121 17 140 119 17 141 119 23 142 117 0 143 0 19 144 121 18 145 122 14 146 123 14 147 123 17 148 119 19 149 121 18 150 106 4 151 2 20 152 104 20 153 104 14 154 105 18 155 106 4 156 2 7 157 3 21 158 109 21 159 109 20 160 104 4 161 2 7 162 3 12 163 4 15 164 111 15 165 111 21 166 109 7 167 3 12 168 4 13 169 5 16 170 113 16 171 113 15 172 111 12 173 4 13 174 5 1 175 1 22 176 115 22 177 115 16 178 113 13 179 5 32 180 60 33 181 63 34 182 6 34 183 6 35 184 7 32 185 60 33 186 63 36 187 65 37 188 64 37 189 64 34 190 6 33 191 63 36 192 49 38 193 50 39 194 8 39 195 8 37 196 47 36 197 49 38 198 50 40 199 52 41 200 9 41 201 9 39 202 8 38 203 50 40 204 52 42 205 54 43 206 10 43 207 10 41 208 9 40 209 52 42 210 54 44 211 56 45 212 11 45 213 11 43 214 10 42 215 54 44 216 56 46 217 58 47 218 12 47 219 12 45 220 11 44 221 56 46 222 58 32 223 60 35 224 7 35 225 7 47 226 12 46 227 58 44 228 33 42 229 34 40 230 28 40 231 28 32 232 32 44 233 33 40 234 28 38 235 29 36 236 30 36 237 30 32 238 32 40 239 28 36 240 30 33 241 31 32 242 32 46 243 35 44 244 33 32 245 32 35 246 7 34 247 6 48 248 13 48 249 13 49 250 14 35 251 7 34 252 6 37 253 64 50 254 61 50 255 61 48 256 13 34 257 6 37 258 47 39 259 8 51 260 15 51 261 15 50 262 46 37 263 47 39 264 8 41 265 9 52 266 16 52 267 16 51 268 15 39 269 8 41 270 9 43 271 10 53 272 17 53 273 17 52 274 16 41 275 9 43 276 10 45 277 11 54 278 18 54 279 18 53 280 17 43 281 10 45 282 11 47 283 12 55 284 19 55 285 19 54 286 18 45 287 11 47 288 12 35 289 7 49 290 14 49 291 14 55 292 19 47 293 12 49 294 14 48 295 13 56 296 59 56 297 59 57 298 57 49 299 14 48 300 13 50 301 61 58 302 62 58 303 62 56 304 59 48 305 13 50 306 46 51 307 15 59 308 44 59 309 44 58 310 45 50 311 46 51 312 15 52 313 16 60 314 48 60 315 48 59 316 44 51 317 15 52 318 16 53 319 17 61 320 51 61 321 51 60 322 48 52 323 16 53 324 17 54 325 18 62 326 53 62 327 53 61 328 51 53 329 17 54 330 18 55 331 19 63 332 55 63 333 55 62 334 53 54 335 18 55 336 19 49 337 14 57 338 57 57 339 57 63 340 55 55 341 19 58 342 36 59 343 37 60 344 38 60 345 38 57 346 42 58 347 36 60 348 38 61 349 39 62 350 40 62 351 40 57 352 42 60 353 38 62 354 40 63 355 43 57 356 42 56 357 41 58 358 36 57 359 42 64 360 136 65 361 132 66 362 135 66 363 135 67 364 137 64 365 136 65 366 132 68 367 133 69 368 134 69 369 134 66 370 135 65 371 132 68 372 148 70 373 146 71 374 147 71 375 147 69 376 149 68 377 148 70 378 146 72 379 144 73 380 145 73 381 145 71 382 147 70 383 146 72 384 144 74 385 142 75 386 143 75 387 143 73 388 145 72 389 144 74 390 142 76 391 140 77 392 141 77 393 141 75 394 143 74 395 142 76 396 140 78 397 138 79 398 139 79 399 139 77 400 141 76 401 140 78 402 138 64 403 136 67 404 137 67 405 137 79 406 139 78 407 138 69 408 129 71 409 130 73 410 124 73 411 124 67 412 128 69 413 129 73 414 124 75 415 125 77 416 126 77 417 126 67 418 128 73 419 124 77 420 126 79 421 127 67 422 128 66 423 131 69 424 129 67 425 128 65 426 168 64 427 170 80 428 171 80 429 171 81 430 169 65 431 168 68 432 164 65 433 168 81 434 169 81 435 169 82 436 165 68 437 164 70 438 158 68 439 164 82 440 165 82 441 165 83 442 159 70 443 158 72 444 155 70 445 158 83 446 159 83 447 159 84 448 150 72 449 155 74 450 154 72 451 155 84 452 150 84 453 150 85 454 153 74 455 154 76 456 160 74 457 154 85 458 153 85 459 153 86 460 161 76 461 160 78 462 166 76 463 160 86 464 161 86 465 161 87 466 167 78 467 166 64 468 170 78 469 166 87 470 167 87 471 167 80 472 171 64 473 170 81 474 200 80 475 198 88 476 199 88 477 199 89 478 201 81 479 200 82 480 202 81 481 200 89 482 201 89 483 201 90 484 203 82 485 202 83 486 204 82 487 202 90 488 203 90 489 203 91 490 205 83 491 204 84 492 206 83 493 204 91 494 205 91 495 205 92 496 207 84 497 206 86 498 194 85 499 192 93 500 193 93 501 193 94 502 195 86 503 194 87 504 196 86 505 194 94 506 195 94 507 195 95 508 197 87 509 196 80 510 198 87 511 196 95 512 197 95 513 197 88 514 199 80 515 198 95 516 172 94 517 173 93 518 174 93 519 174 91 520 176 95 521 172 93 522 174 92 523 175 91 524 176 91 525 176 90 526 177 89 527 178 89 528 178 95 529 172 91 530 176 88 531 181 95 532 172 89 533 178 85 534 153 84 535 150 96 536 151 96 537 151 97 538 152 85 539 153 84 540 206 92 541 207 98 542 208 98 543 208 96 544 209 84 545 206 93 546 193 85 547 192 97 548 190 97 549 190 99 550 191 93 551 193 92 552 175 93 553 174 99 554 179 99 555 179 98 556 180 92 557 175 97 558 152 96 559 151 100 560 156 100 561 156 101 562 157 97 563 152 96 564 209 98 565 208 102 566 210 102 567 210 100 568 211 96 569 209 99 570 191 97 571 190 101 572 186 101 573 186 103 574 189 99 575 191 98 576 180 99 577 179 103 578 182 103 579 182 102 580 183 98 581 180 101 582 157 100 583 156 104 584 162 104 585 162 105 586 163 101 587 157 100 588 211 102 589 210 106 590 212 106 591 212 104 592 213 100 593 211 103 594 189 101 595 186 105 596 187 105 597 187 107 598 188 103 599 189 102 600 183 103 601 182 107 602 184 107 603 184 106 604 185 102 605 183 106 606 212 107 607 214 105 608 215 105 609 215 104 610 213 106 611 212 108 612 234 109 613 241 110 614 242 110 615 242 111 616 237 108 617 234 110 618 242 112 619 245 111 620 237 113 621 231 108 622 234 111 623 237 111 624 237 114 625 238 113 626 231 111 627 273 115 628 272 116 629 271 116 630 271 114 631 270 111 632 273 112 633 275 117 634 274 115 635 272 115 636 272 111 637 273 112 638 275 110 639 277 118 640 276 117 641 274 117 642 274 112 643 275 110 644 277 109 645 279 119 646 278 118 647 276 118 648 276 110 649 277 109 650 279 108 651 280 120 652 281 119 653 278 119 654 278 109 655 279 108 656 280 113 657 269 114 658 270 116 659 271 116 660 271 121 661 267 113 662 269 115 663 223 117 664 226 118 665 227 118 666 227 120 667 216 115 668 223 118 669 227 119 670 230 120 671 216 116 672 222 115 673 223 120 674 216 120 675 216 121 676 219 116 677 222 122 678 232 123 679 235 124 680 236 124 681 236 125 682 233 122 683 232 108 684 250 126 685 20 127 686 248 127 687 248 120 688 249 108 689 250 121 690 267 128 691 265 129 692 21 129 693 21 113 694 269 121 695 267 120 696 216 127 697 217 128 698 218 128 699 218 121 700 219 120 701 216 123 702 235 130 703 239 131 704 240 131 705 240 124 706 236 123 707 235 126 708 20 132 709 22 133 710 253 133 711 253 127 712 248 126 713 20 128 714 265 134 715 263 135 716 23 135 717 23 129 718 21 128 719 265 127 720 217 133 721 220 134 722 221 134 723 221 128 724 218 127 725 217 130 726 239 136 727 243 137 728 244 137 729 244 131 730 240 130 731 239 132 732 22 138 733 24 139 734 255 139 735 255 133 736 253 132 737 22 134 738 263 140 739 261 141 740 25 141 741 25 135 742 23 134 743 263 133 744 220 139 745 224 140 746 225 140 747 225 134 748 221 133 749 220 136 750 243 142 751 246 143 752 247 143 753 247 137 754 244 136 755 243 138 756 24 144 757 26 145 758 257 145 759 257 139 760 255 138 761 24 140 762 261 146 763 259 147 764 27 147 765 27 141 766 25 140 767 261 139 768 224 145 769 228 146 770 229 146 771 229 140 772 225 139 773 224 145 774 257 144 775 26 147 776 27 147 777 27 146 778 259 145 779 257 113 780 231 122 781 232 125 782 233 125 783 233 108 784 234 113 785 231 108 786 250 125 787 251 124 788 252 124 789 252 126 790 20 108 791 250 126 792 20 124 793 252 131 794 254 131 795 254 132 796 22 126 797 20 132 798 22 131 799 254 137 800 256 137 801 256 138 802 24 132 803 22 138 804 24 137 805 256 143 806 258 143 807 258 144 808 26 138 809 24 144 810 26 143 811 258 142 812 260 142 813 260 147 814 27 144 815 26 147 816 27 142 817 260 136 818 262 136 819 262 141 820 25 147 821 27 141 822 25 136 823 262 130 824 264 130 825 264 135 826 23 141 827 25 135 828 23 130 829 264 123 830 266 123 831 266 129 832 21 135 833 23 129 834 21 123 835 266 122 836 268 122 837 268 113 838 269 129 839 21</p></triangles>
1366
+ </mesh>
1367
+ </geometry>
1368
+ </library_geometries>
1369
+ <library_visual_scenes>
1370
+ <visual_scene id="r_elbow_rx" name="r_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="r_elbow_rx_node" id="r_elbow_rx_node" sid="r_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_r_elbow_rx" id="drc_r_elbow_rx" sid="drc_r_elbow_rx"><matrix sid="matrix">1.000000 0.000000 0.000000 0.299068 0.000000 1.000000 0.000000 0.213870 0.000000 0.000000 1.000000 -0.106344 0.000000 0.000000 0.000000 1.000000</matrix><instance_geometry url="#drc_r_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="#r_elbow_rx"></instance_visual_scene>
1377
+ </scene>
1378
+ </COLLADA>