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,1531 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <COLLADA xmlns="http://www.collada.org/2005/11/COLLADASchema" version="1.4.1">
3
+ <asset><contributor><author></author><authoring_tool>FBX COLLADA exporter</authoring_tool><comments></comments></contributor><created>2013-08-22T20:06:25Z</created><keywords></keywords><modified>2013-08-22T20:06:25Z</modified><revision></revision><subject></subject><title></title><unit meter="1.000000" name="centimeter"></unit><up_axis>Z_UP</up_axis></asset>
4
+ <library_images>
5
+ <image id="drc_extremities_diffuse-image" name="drc_extremities_diffuse"><init_from>../materials/textures/drc_extremities_diffuse.jpg</init_from></image>
6
+ </library_images>
7
+ <library_materials>
8
+ <material id="drc_extremities_diffuse" name="drc_extremities_diffuse">
9
+ <instance_effect url="#drc_extremities_diffuse-fx"/>
10
+ </material>
11
+ </library_materials>
12
+ <library_effects>
13
+ <effect id="drc_extremities_diffuse-fx" name="drc_extremities_diffuse">
14
+ <profile_COMMON>
15
+ <technique sid="standard">
16
+ <phong>
17
+ <emission>
18
+ <color sid="emission">0.000000 0.000000 0.000000 1.000000</color>
19
+ </emission>
20
+ <ambient>
21
+ <color sid="ambient">0.588235 0.588235 0.588235 1.000000</color>
22
+ </ambient>
23
+ <diffuse>
24
+ <texture texture="drc_extremities_diffuse-image" texcoord="CHANNEL0">
25
+ <extra>
26
+ <technique profile="MAYA">
27
+ <wrapU sid="wrapU0">TRUE</wrapU>
28
+ <wrapV sid="wrapV0">TRUE</wrapV>
29
+ <blend_mode>ADD</blend_mode>
30
+ </technique>
31
+ </extra>
32
+ </texture>
33
+ </diffuse>
34
+ <specular>
35
+ <color sid="specular">0.000000 0.000000 0.000000 1.000000</color>
36
+ </specular>
37
+ <shininess>
38
+ <float sid="shininess">2.000000</float>
39
+ </shininess>
40
+ <reflective>
41
+ <color sid="reflective">0.000000 0.000000 0.000000 1.000000</color>
42
+ </reflective>
43
+ <reflectivity>
44
+ <float sid="reflectivity">1.000000</float>
45
+ </reflectivity>
46
+ <transparent opaque="RGB_ZERO">
47
+ <color sid="transparent">1.000000 1.000000 1.000000 1.000000</color>
48
+ </transparent>
49
+ <transparency>
50
+ <float sid="transparency">0.000000</float>
51
+ </transparency>
52
+ </phong>
53
+ </technique>
54
+ </profile_COMMON>
55
+ </effect>
56
+ </library_effects>
57
+ <library_geometries>
58
+ <geometry id="drc_l_sh_rx-lib" name="drc_l_sh_rxMesh">
59
+ <mesh>
60
+ <source id="drc_l_sh_rx-POSITION">
61
+ <float_array id="drc_l_sh_rx-POSITION-array" count="489">
62
+ -0.029690 0.129941 -0.015114
63
+ -0.029691 0.065254 -0.015186
64
+ 0.067756 0.065254 -0.015186
65
+ 0.067756 0.129941 -0.015114
66
+ -0.029691 0.129941 0.041211
67
+ 0.067756 0.129941 0.041211
68
+ 0.067756 0.065325 0.041211
69
+ -0.029691 0.065325 0.041211
70
+ 0.067756 0.065325 0.033348
71
+ 0.067756 0.129941 0.033348
72
+ 0.067756 0.129941 -0.007252
73
+ 0.067756 0.065254 -0.007322
74
+ -0.029691 0.065325 0.033348
75
+ -0.029691 0.065254 -0.007322
76
+ -0.041619 0.129941 0.033348
77
+ -0.041619 0.065325 0.033348
78
+ -0.041619 0.065254 -0.007322
79
+ -0.041619 0.129941 -0.007252
80
+ -0.029691 0.129941 0.033348
81
+ -0.029690 0.129941 -0.007252
82
+ -0.041619 0.129941 0.041211
83
+ -0.041619 0.065325 0.041211
84
+ -0.041619 0.065254 -0.015186
85
+ -0.041619 0.129941 -0.015114
86
+ 0.067756 0.144523 0.033348
87
+ 0.067756 0.144595 -0.007322
88
+ -0.029691 0.144595 -0.007322
89
+ -0.029691 0.144523 0.033348
90
+ 0.067756 0.173829 0.007330
91
+ 0.067756 0.173758 -0.007322
92
+ -0.029691 0.173758 -0.007322
93
+ -0.029691 0.173829 0.007330
94
+ 0.051178 0.187839 0.013191
95
+ 0.039856 0.187767 -0.014042
96
+ 0.039856 0.134158 -0.014042
97
+ 0.051178 0.134158 0.013263
98
+ 0.012664 0.187839 -0.025264
99
+ 0.012664 0.134158 -0.025336
100
+ -0.014629 0.187767 -0.014042
101
+ -0.014629 0.134158 -0.014042
102
+ -0.025849 0.187839 0.013191
103
+ -0.025849 0.134158 0.013263
104
+ -0.014629 0.187839 0.040496
105
+ -0.014629 0.134158 0.040424
106
+ 0.012664 0.187839 0.051789
107
+ 0.012664 0.134158 0.051718
108
+ 0.039856 0.187839 0.040496
109
+ 0.039856 0.134158 0.040424
110
+ 0.045416 0.127583 -0.019617
111
+ 0.058961 0.127583 0.013263
112
+ 0.012664 0.127655 -0.033126
113
+ -0.020087 0.127583 -0.019617
114
+ -0.033734 0.127583 0.013263
115
+ -0.020087 0.127583 0.046000
116
+ 0.012664 0.127583 0.059581
117
+ 0.045416 0.127583 0.046000
118
+ 0.045416 0.065183 -0.019546
119
+ 0.058961 0.065183 0.013191
120
+ 0.012664 0.065183 -0.033126
121
+ -0.020087 0.065183 -0.019546
122
+ -0.033734 0.065183 0.013191
123
+ -0.020087 0.065254 0.046000
124
+ 0.012664 0.065254 0.059581
125
+ 0.045416 0.065254 0.046000
126
+ -0.046116 -0.028383 -0.003057
127
+ -0.046116 -0.020449 0.016171
128
+ 0.007830 -0.020449 0.016171
129
+ 0.007830 -0.028383 -0.003057
130
+ -0.046116 -0.001149 0.024177
131
+ 0.007830 -0.001149 0.024177
132
+ -0.046116 0.018078 0.016243
133
+ 0.007830 0.018078 0.016243
134
+ -0.046116 0.026012 -0.002985
135
+ 0.007830 0.026012 -0.002985
136
+ -0.046116 0.018007 -0.022284
137
+ 0.007830 0.018007 -0.022284
138
+ -0.046116 -0.001221 -0.030218
139
+ 0.007830 -0.001221 -0.030218
140
+ -0.046116 -0.020449 -0.022284
141
+ 0.007830 -0.020449 -0.022284
142
+ -0.046116 -0.036322 -0.003057
143
+ -0.046116 -0.026898 0.023540
144
+ -0.046116 -0.013636 0.043379
145
+ -0.046116 0.025155 0.042801
146
+ -0.046116 0.034089 0.043010
147
+ -0.046116 0.018824 -0.029826
148
+ -0.046116 -0.001221 -0.035937
149
+ -0.046116 -0.026009 -0.028138
150
+ -0.059362 -0.036322 -0.003057
151
+ -0.059362 -0.026898 0.023540
152
+ -0.059362 -0.013636 0.043379
153
+ -0.059362 0.025155 0.042801
154
+ -0.059362 0.034089 0.043010
155
+ -0.059362 0.018824 -0.029826
156
+ -0.059362 -0.001221 -0.035937
157
+ -0.059362 -0.026009 -0.028138
158
+ -0.046116 0.059178 0.042939
159
+ -0.046116 0.035275 -0.016531
160
+ -0.059362 0.055390 0.043010
161
+ -0.059362 0.035275 -0.016531
162
+ -0.040396 0.066469 0.043491
163
+ -0.040396 0.066969 -0.016360
164
+ -0.059362 0.066469 0.043491
165
+ -0.059362 0.066969 -0.016360
166
+ -0.040396 0.089562 0.043419
167
+ -0.040396 0.089562 -0.016360
168
+ -0.051218 0.089562 0.043419
169
+ -0.051218 0.089562 -0.016360
170
+ 0.080062 0.026513 -0.004057
171
+ 0.080062 0.018007 -0.022808
172
+ 0.080062 -0.001221 -0.030742
173
+ 0.080062 -0.029409 -0.003580
174
+ 0.080062 -0.020449 -0.022808
175
+ 0.080062 0.035123 0.043366
176
+ 0.080062 -0.018934 0.018902
177
+ 0.072383 -0.029409 -0.003580
178
+ 0.072383 -0.018934 0.018902
179
+ 0.072383 -0.020449 -0.022808
180
+ 0.072383 -0.001221 -0.030742
181
+ 0.072383 0.018007 -0.022808
182
+ 0.072383 0.026513 -0.004057
183
+ 0.072383 0.035123 0.043366
184
+ 0.086438 0.057463 0.043366
185
+ 0.086438 0.055104 -0.004057
186
+ 0.080062 0.055104 -0.004057
187
+ 0.072383 0.055104 -0.004057
188
+ 0.072383 0.057463 0.043366
189
+ 0.080062 0.057463 0.043366
190
+ 0.086438 0.065111 0.043366
191
+ 0.086438 0.062681 -0.009632
192
+ 0.080062 0.062681 -0.009632
193
+ 0.070550 0.062681 -0.009632
194
+ 0.070550 0.065111 0.043366
195
+ 0.080062 0.065111 0.043366
196
+ 0.086438 0.066040 0.043366
197
+ 0.086438 0.065968 -0.015923
198
+ 0.080062 0.065968 -0.015923
199
+ 0.066477 0.065968 -0.015923
200
+ 0.066478 0.066040 0.043366
201
+ 0.080062 0.066040 0.043366
202
+ 0.078163 0.090199 0.043366
203
+ 0.078163 0.090129 -0.015923
204
+ 0.071786 0.090129 -0.015923
205
+ 0.066477 0.090129 -0.015923
206
+ 0.066478 0.090199 0.043366
207
+ 0.071786 0.090199 0.043366
208
+ 0.086438 0.073892 0.043366
209
+ 0.086438 0.073821 -0.015923
210
+ 0.080062 0.073821 -0.015923
211
+ 0.066477 0.073821 -0.015923
212
+ 0.066478 0.073892 0.043366
213
+ 0.080062 0.073892 0.043366
214
+ 0.080062 -0.002252 0.026451
215
+ 0.072383 -0.001965 0.026582
216
+ 0.080062 0.026375 -0.004361
217
+ 0.086459 0.026513 -0.004057
218
+ 0.086458 0.035123 0.043366
219
+ 0.086478 -0.002252 0.026451
220
+ -0.045730 0.058296 -0.016421
221
+ -0.040396 0.073282 0.043470
222
+ -0.040396 0.073635 -0.016360
223
+ -0.059362 0.073282 0.043470
224
+ -0.059362 0.073635 -0.016360
225
+ </float_array>
226
+ <technique_common>
227
+ <accessor source="#drc_l_sh_rx-POSITION-array" count="163" stride="3">
228
+ <param name="X" type="float"/>
229
+ <param name="Y" type="float"/>
230
+ <param name="Z" type="float"/>
231
+ </accessor>
232
+ </technique_common>
233
+ </source>
234
+ <source id="drc_l_sh_rx-Normal0">
235
+ <float_array id="drc_l_sh_rx-Normal0-array" count="2790">
236
+ 0.000000 0.001109 -0.999999
237
+ 0.000000 0.001109 -0.999999
238
+ 0.000000 0.001109 -0.999999
239
+ 0.000000 0.001109 -0.999999
240
+ 0.000000 0.001109 -0.999999
241
+ 0.000000 0.001109 -0.999999
242
+ -0.000000 0.000000 1.000000
243
+ -0.000000 0.000000 1.000000
244
+ -0.000000 0.000000 1.000000
245
+ -0.000000 0.000000 1.000000
246
+ -0.000000 0.000000 1.000000
247
+ -0.000000 0.000000 1.000000
248
+ 1.000000 -0.000000 0.000000
249
+ 1.000000 -0.000000 0.000000
250
+ 1.000000 -0.000000 0.000000
251
+ 1.000000 -0.000000 0.000000
252
+ 1.000000 -0.000000 0.000000
253
+ 1.000000 -0.000000 0.000000
254
+ -0.000000 -0.999999 0.001765
255
+ -0.000000 -0.999998 0.001765
256
+ -0.000000 -0.999998 0.001765
257
+ -0.000000 -0.999999 0.001765
258
+ -0.000000 -0.999998 0.001765
259
+ -0.000000 -0.999998 0.001765
260
+ -1.000000 -0.000000 -0.000000
261
+ -1.000000 -0.000000 -0.000000
262
+ -1.000000 -0.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
+ 0.000000 1.000000 0.000000
267
+ 0.000000 1.000000 0.000000
268
+ 0.000000 1.000000 0.000000
269
+ 0.000000 1.000000 0.000000
270
+ 0.000000 1.000000 0.000000
271
+ 0.000000 1.000000 0.000000
272
+ 0.000000 1.000000 0.000000
273
+ 0.000000 1.000000 0.000000
274
+ 0.000000 1.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
+ 1.000000 -0.000000 0.000000
279
+ 1.000000 -0.000000 0.000000
280
+ 1.000000 -0.000000 0.000000
281
+ 1.000000 -0.000000 0.000000
282
+ 1.000000 -0.000000 0.000000
283
+ 1.000000 -0.000000 0.000000
284
+ 1.000000 -0.000000 0.000000
285
+ 1.000000 -0.000000 0.000000
286
+ 1.000000 -0.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
+ -0.000000 -1.000000 0.000000
291
+ -0.000000 -1.000000 0.000000
292
+ -0.000000 -1.000000 0.000000
293
+ -0.000000 -1.000000 -0.000000
294
+ -0.000000 -1.000000 -0.000000
295
+ -0.000000 -1.000000 -0.000000
296
+ -0.000000 -1.000000 0.000000
297
+ -0.000000 -1.000000 0.000000
298
+ -0.000000 -1.000000 0.000000
299
+ -0.000000 -1.000000 0.000000
300
+ -0.000000 -1.000000 0.000000
301
+ -0.000000 -1.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
+ -1.000000 -0.000000 -0.000000
312
+ -1.000000 -0.000000 -0.000000
313
+ -1.000000 -0.000000 -0.000000
314
+ 1.000000 0.000000 0.000000
315
+ 1.000000 0.000000 0.000000
316
+ 1.000000 0.000000 0.000000
317
+ 1.000000 0.000000 0.000000
318
+ 1.000000 0.000000 0.000000
319
+ 1.000000 0.000000 0.000000
320
+ -1.000000 -0.000001 -0.000000
321
+ -1.000000 -0.000001 -0.000000
322
+ -1.000000 -0.000001 -0.000000
323
+ -1.000000 -0.000001 -0.000000
324
+ -1.000000 -0.000001 -0.000000
325
+ -1.000000 -0.000001 -0.000000
326
+ -0.000000 -0.000000 1.000000
327
+ -0.000000 -0.000000 1.000000
328
+ -0.000000 -0.000000 1.000000
329
+ -0.000000 0.000000 1.000000
330
+ -0.000000 0.000000 1.000000
331
+ -0.000000 0.000000 1.000000
332
+ 0.000000 -0.004827 -0.999988
333
+ 0.000000 -0.004827 -0.999988
334
+ 0.000000 -0.004827 -0.999988
335
+ 0.000000 -0.004827 -0.999988
336
+ 0.000000 -0.004827 -0.999988
337
+ 0.000000 -0.004827 -0.999988
338
+ 1.000000 -0.000000 0.000000
339
+ 1.000000 -0.000000 0.000000
340
+ 1.000000 -0.000000 0.000000
341
+ 1.000000 0.000000 0.000000
342
+ 1.000000 0.000000 0.000000
343
+ 1.000000 0.000000 0.000000
344
+ -1.000000 0.000000 -0.000000
345
+ -1.000000 0.000000 -0.000000
346
+ -1.000000 0.000000 -0.000000
347
+ -1.000000 -0.000000 -0.000000
348
+ -1.000000 -0.000000 -0.000000
349
+ -1.000000 -0.000000 -0.000000
350
+ -0.000000 0.663909 0.747814
351
+ -0.000000 0.663909 0.747814
352
+ -0.000000 0.663909 0.747814
353
+ -0.000000 0.663909 0.747814
354
+ -0.000000 0.663909 0.747814
355
+ -0.000000 0.663909 0.747814
356
+ 0.000000 -0.000000 -1.000000
357
+ 0.000000 -0.000000 -1.000000
358
+ 0.000000 -0.000000 -1.000000
359
+ 0.000000 -0.000000 -1.000000
360
+ 0.000000 -0.000000 -1.000000
361
+ 0.000000 -0.000000 -1.000000
362
+ 0.000000 0.999988 -0.004897
363
+ 0.000000 0.999988 -0.004897
364
+ 0.000000 0.999988 -0.004897
365
+ 0.000000 0.999988 -0.004897
366
+ 0.000000 0.999988 -0.004897
367
+ 0.000000 0.999988 -0.004897
368
+ 0.000000 0.001109 -0.999999
369
+ 0.000000 0.001109 -0.999999
370
+ 0.000000 0.001109 -0.999999
371
+ 0.000000 0.001109 -0.999999
372
+ 0.000000 0.001109 -0.999999
373
+ 0.000000 0.001109 -0.999999
374
+ 0.000000 1.000000 0.000000
375
+ 0.000000 1.000000 0.000000
376
+ 0.000000 1.000000 0.000000
377
+ 0.000000 1.000000 0.000000
378
+ 0.000000 1.000000 0.000000
379
+ 0.000000 1.000000 0.000000
380
+ 0.000000 1.000000 0.000000
381
+ 0.000000 1.000000 0.000000
382
+ 0.000000 1.000000 0.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 1.000000 0.000000
390
+ 0.000000 1.000000 0.000000
391
+ 0.000000 1.000000 0.000000
392
+ -0.000000 0.000000 1.000000
393
+ -0.000000 0.000000 1.000000
394
+ -0.000000 0.000000 1.000000
395
+ -0.000000 0.000000 1.000000
396
+ -0.000000 0.000000 1.000000
397
+ -0.000000 0.000000 1.000000
398
+ 0.000000 -1.000000 0.000000
399
+ 0.000000 -1.000000 0.000000
400
+ 0.000000 -1.000000 0.000000
401
+ 0.000000 -1.000000 0.000000
402
+ 0.000000 -1.000000 0.000000
403
+ 0.000000 -1.000000 0.000000
404
+ -0.000000 -0.999998 0.001765
405
+ -0.000000 -0.999998 0.001765
406
+ -0.000000 -0.999998 0.001765
407
+ -0.000000 -0.999998 0.001765
408
+ -0.000000 -0.999998 0.001765
409
+ -0.000000 -0.999998 0.001765
410
+ 0.000000 -1.000000 0.000000
411
+ 0.000000 -1.000000 0.000000
412
+ 0.000000 -1.000000 0.000000
413
+ 0.000000 -1.000000 0.000000
414
+ 0.000000 -1.000000 0.000000
415
+ 0.000000 -1.000000 0.000000
416
+ 0.923381 -0.000000 -0.383884
417
+ 0.923381 -0.000000 -0.383884
418
+ 0.923381 -0.000000 -0.383884
419
+ 0.923738 -0.000512 -0.383024
420
+ 0.923738 -0.000512 -0.383024
421
+ 0.923738 -0.000512 -0.383024
422
+ 0.381503 0.001235 -0.924367
423
+ 0.381503 0.001235 -0.924367
424
+ 0.381503 0.001235 -0.924367
425
+ 0.383581 -0.000000 -0.923507
426
+ 0.383581 -0.000000 -0.923507
427
+ 0.383581 -0.000000 -0.923507
428
+ -0.380292 0.000000 -0.924866
429
+ -0.380292 0.000000 -0.924866
430
+ -0.380292 0.000000 -0.924866
431
+ -0.382368 0.001235 -0.924009
432
+ -0.382368 0.001235 -0.924009
433
+ -0.382368 0.001235 -0.924009
434
+ -0.924593 -0.000509 -0.380955
435
+ -0.924593 -0.000509 -0.380955
436
+ -0.924593 -0.000509 -0.380955
437
+ -0.924945 0.000000 -0.380100
438
+ -0.924945 0.000000 -0.380100
439
+ -0.924945 0.000000 -0.380100
440
+ -0.924950 -0.000508 0.380089
441
+ -0.924950 -0.000508 0.380089
442
+ -0.924950 -0.000508 0.380089
443
+ -0.924243 0.000510 0.381805
444
+ -0.924243 0.000510 0.381805
445
+ -0.924243 0.000510 0.381805
446
+ -0.382338 -0.001217 0.924022
447
+ -0.382338 -0.001217 0.924022
448
+ -0.382338 -0.001217 0.924022
449
+ -0.382369 -0.001235 0.924009
450
+ -0.382369 -0.001235 0.924009
451
+ -0.382369 -0.001235 0.924009
452
+ 0.383550 -0.001235 0.923519
453
+ 0.383550 -0.001235 0.923519
454
+ 0.383550 -0.001235 0.923519
455
+ 0.383581 -0.001216 0.923506
456
+ 0.383582 -0.001216 0.923506
457
+ 0.383582 -0.001216 0.923506
458
+ 0.923743 0.000512 0.383012
459
+ 0.923743 0.000512 0.383012
460
+ 0.923743 0.000512 0.383012
461
+ 0.923026 -0.000515 0.384738
462
+ 0.923026 -0.000515 0.384738
463
+ 0.923026 -0.000515 0.384738
464
+ 0.000000 1.000000 0.000000
465
+ 0.000000 1.000000 0.000000
466
+ 0.000000 1.000000 0.000000
467
+ 0.000000 1.000000 0.000000
468
+ 0.000000 1.000000 0.000000
469
+ 0.000000 1.000000 0.000000
470
+ -0.004469 0.999980 -0.004476
471
+ -0.004469 0.999980 -0.004476
472
+ -0.004469 0.999980 -0.004476
473
+ 0.000000 1.000000 0.000000
474
+ 0.000000 1.000000 0.000000
475
+ 0.000000 1.000000 0.000000
476
+ 0.004498 0.999980 -0.004504
477
+ 0.004498 0.999980 -0.004504
478
+ 0.004498 0.999980 -0.004504
479
+ 0.000000 1.000000 0.000000
480
+ 0.000000 1.000000 0.000000
481
+ 0.000000 1.000000 0.000000
482
+ 0.619578 0.741702 -0.256905
483
+ 0.619578 0.741702 -0.256905
484
+ 0.619578 0.741702 -0.256905
485
+ 0.623677 0.738249 -0.256933
486
+ 0.623677 0.738250 -0.256933
487
+ 0.623677 0.738250 -0.256933
488
+ 0.257228 0.741824 -0.619298
489
+ 0.257228 0.741824 -0.619298
490
+ 0.257228 0.741824 -0.619298
491
+ 0.256951 0.742155 -0.619016
492
+ 0.256951 0.742155 -0.619016
493
+ 0.256951 0.742156 -0.619017
494
+ -0.257089 0.740225 -0.621267
495
+ -0.257089 0.740225 -0.621267
496
+ -0.257089 0.740225 -0.621267
497
+ -0.257077 0.741855 -0.619324
498
+ -0.257077 0.741855 -0.619324
499
+ -0.257077 0.741855 -0.619324
500
+ -0.619382 0.742684 -0.254531
501
+ -0.619382 0.742685 -0.254531
502
+ -0.619382 0.742685 -0.254531
503
+ -0.623840 0.737418 -0.258919
504
+ -0.623840 0.737418 -0.258919
505
+ -0.623840 0.737418 -0.258919
506
+ -0.624508 0.737180 0.257984
507
+ -0.624508 0.737180 0.257984
508
+ -0.624508 0.737180 0.257984
509
+ -0.618802 0.741989 0.257946
510
+ -0.618802 0.741989 0.257946
511
+ -0.618802 0.741989 0.257946
512
+ -0.256593 0.741403 0.620066
513
+ -0.256593 0.741403 0.620066
514
+ -0.256593 0.741403 0.620066
515
+ -0.257497 0.740321 0.620983
516
+ -0.257497 0.740321 0.620983
517
+ -0.257497 0.740321 0.620983
518
+ 0.257075 0.742185 0.618930
519
+ 0.257075 0.742185 0.618930
520
+ 0.257075 0.742185 0.618930
521
+ 0.257082 0.741303 0.619983
522
+ 0.257082 0.741303 0.619983
523
+ 0.257082 0.741303 0.619983
524
+ 0.623189 0.737672 0.259759
525
+ 0.623189 0.737672 0.259759
526
+ 0.623189 0.737672 0.259759
527
+ 0.619880 0.741597 0.256481
528
+ 0.619880 0.741597 0.256481
529
+ 0.619880 0.741597 0.256481
530
+ 0.924613 -0.000439 -0.380908
531
+ 0.924613 -0.000439 -0.380908
532
+ 0.924613 -0.000439 -0.380908
533
+ 0.924024 0.000439 -0.382335
534
+ 0.924024 0.000439 -0.382335
535
+ 0.924024 0.000439 -0.382335
536
+ 0.381306 -0.000000 -0.924449
537
+ 0.381306 -0.000000 -0.924449
538
+ 0.381306 -0.000000 -0.924449
539
+ 0.383035 -0.001063 -0.923733
540
+ 0.383035 -0.001063 -0.923733
541
+ 0.383035 -0.001063 -0.923733
542
+ -0.381303 -0.001064 -0.924450
543
+ -0.381303 -0.001064 -0.924450
544
+ -0.381303 -0.001064 -0.924450
545
+ -0.383035 -0.000000 -0.923734
546
+ -0.383035 -0.000000 -0.923734
547
+ -0.383035 -0.000000 -0.923734
548
+ -0.923609 0.000441 -0.383335
549
+ -0.923609 0.000441 -0.383335
550
+ -0.923609 0.000441 -0.383335
551
+ -0.923014 -0.000443 -0.384767
552
+ -0.923014 -0.000443 -0.384767
553
+ -0.923014 -0.000443 -0.384767
554
+ -0.923018 0.000000 0.384757
555
+ -0.923018 0.000000 0.384757
556
+ -0.923018 0.000000 0.384757
557
+ -0.923316 -0.000441 0.384041
558
+ -0.923316 -0.000441 0.384041
559
+ -0.923316 -0.000441 0.384041
560
+ -0.383036 0.000000 0.923733
561
+ -0.383036 0.000000 0.923733
562
+ -0.383036 0.000000 0.923733
563
+ -0.383036 0.000000 0.923734
564
+ -0.383036 0.000000 0.923734
565
+ -0.383036 0.000000 0.923734
566
+ 0.383036 0.000000 0.923734
567
+ 0.383036 0.000000 0.923734
568
+ 0.383036 0.000000 0.923734
569
+ 0.383035 -0.000000 0.923734
570
+ 0.383035 -0.000000 0.923734
571
+ 0.383035 -0.000000 0.923734
572
+ 0.924028 -0.000440 0.382325
573
+ 0.924028 -0.000440 0.382325
574
+ 0.924028 -0.000440 0.382325
575
+ 0.924323 -0.000000 0.381611
576
+ 0.924323 -0.000000 0.381611
577
+ 0.924323 -0.000000 0.381611
578
+ 0.000000 -1.000000 0.000000
579
+ 0.000000 -1.000000 0.000000
580
+ 0.000000 -1.000000 0.000000
581
+ -0.000000 -1.000000 -0.000000
582
+ -0.000000 -1.000000 -0.000000
583
+ -0.000000 -1.000000 -0.000000
584
+ -0.001080 -0.999996 0.002604
585
+ -0.001080 -0.999996 0.002604
586
+ -0.001080 -0.999996 0.002604
587
+ -0.000000 -0.999999 0.001524
588
+ -0.000000 -0.999999 0.001524
589
+ -0.000000 -0.999999 0.001524
590
+ 0.001078 -0.999996 0.002600
591
+ 0.001078 -0.999996 0.002600
592
+ 0.001078 -0.999996 0.002600
593
+ -0.000000 -1.000000 0.000000
594
+ -0.000000 -1.000000 0.000000
595
+ -0.000000 -1.000000 0.000000
596
+ -0.000000 -0.924390 0.381448
597
+ -0.000000 -0.924390 0.381448
598
+ -0.000000 -0.924390 0.381448
599
+ -0.000000 -0.924390 0.381448
600
+ -0.000000 -0.924390 0.381448
601
+ -0.000000 -0.924390 0.381448
602
+ -0.000000 -0.383171 0.923677
603
+ -0.000000 -0.383171 0.923677
604
+ -0.000000 -0.383171 0.923677
605
+ -0.000000 -0.383172 0.923677
606
+ -0.000000 -0.383172 0.923677
607
+ -0.000000 -0.383172 0.923677
608
+ -0.000000 0.381448 0.924390
609
+ -0.000000 0.381448 0.924390
610
+ -0.000000 0.381448 0.924390
611
+ 0.000000 0.381448 0.924390
612
+ 0.000000 0.381448 0.924390
613
+ 0.000000 0.381448 0.924390
614
+ -0.000000 0.924389 0.381450
615
+ -0.000000 0.924389 0.381450
616
+ -0.000000 0.924389 0.381450
617
+ -0.000000 0.924389 0.381450
618
+ -0.000000 0.924389 0.381450
619
+ -0.000000 0.924389 0.381450
620
+ 0.000001 0.923694 -0.383132
621
+ 0.000001 0.923694 -0.383132
622
+ 0.000001 0.923694 -0.383132
623
+ 0.000000 0.923693 -0.383133
624
+ 0.000000 0.923693 -0.383133
625
+ 0.000000 0.923693 -0.383133
626
+ 0.000000 0.381435 -0.924396
627
+ 0.000000 0.381435 -0.924396
628
+ 0.000000 0.381435 -0.924396
629
+ 0.000000 0.381435 -0.924396
630
+ 0.000000 0.381435 -0.924396
631
+ 0.000000 0.381435 -0.924396
632
+ 0.000000 -0.381448 -0.924390
633
+ 0.000000 -0.381448 -0.924390
634
+ 0.000000 -0.381448 -0.924390
635
+ 0.000000 -0.381448 -0.924390
636
+ 0.000000 -0.381448 -0.924390
637
+ 0.000000 -0.381448 -0.924390
638
+ 0.000000 -0.924390 -0.381448
639
+ 0.000000 -0.924390 -0.381448
640
+ 0.000000 -0.924390 -0.381448
641
+ 0.000000 -0.924390 -0.381448
642
+ 0.000000 -0.924390 -0.381448
643
+ 0.000000 -0.924390 -0.381448
644
+ 1.000000 0.000000 0.000001
645
+ 1.000000 0.000000 0.000001
646
+ 1.000000 0.000000 0.000001
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.000001
657
+ 1.000000 0.000000 0.000001
658
+ 1.000000 0.000000 0.000001
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.000001 -0.000000
669
+ 1.000000 -0.000001 -0.000000
670
+ 1.000000 -0.000001 -0.000000
671
+ 1.000000 -0.000001 0.000001
672
+ 1.000000 -0.000001 0.000001
673
+ 1.000000 -0.000001 0.000001
674
+ 1.000000 0.000001 0.000001
675
+ 1.000000 0.000001 0.000001
676
+ 1.000000 0.000001 0.000001
677
+ 1.000000 -0.000000 0.000000
678
+ 1.000000 -0.000000 0.000000
679
+ 1.000000 -0.000000 0.000000
680
+ 1.000000 -0.000000 0.000000
681
+ 1.000000 -0.000000 0.000000
682
+ 1.000000 -0.000000 0.000000
683
+ 1.000000 -0.000000 0.000000
684
+ 1.000000 -0.000000 0.000000
685
+ 1.000000 -0.000000 0.000000
686
+ -1.000000 -0.000000 -0.000000
687
+ -1.000000 -0.000000 -0.000000
688
+ -1.000000 -0.000000 -0.000000
689
+ 1.000000 0.000000 0.000000
690
+ 1.000000 0.000000 0.000000
691
+ 1.000000 0.000000 0.000000
692
+ 1.000000 0.000000 0.000000
693
+ 1.000000 0.000000 0.000000
694
+ 1.000000 0.000000 0.000000
695
+ 1.000000 -0.000000 0.000001
696
+ 1.000000 -0.000000 0.000001
697
+ 1.000000 -0.000000 0.000001
698
+ 1.000000 -0.000001 0.000001
699
+ 1.000000 -0.000001 0.000001
700
+ 1.000000 -0.000001 0.000001
701
+ 1.000000 -0.000001 0.000001
702
+ 1.000000 -0.000001 0.000001
703
+ 1.000000 -0.000001 0.000001
704
+ 1.000000 -0.000000 0.000000
705
+ 1.000000 -0.000000 0.000000
706
+ 1.000000 -0.000000 0.000000
707
+ 1.000000 0.000000 0.000000
708
+ 1.000000 0.000000 0.000000
709
+ 1.000000 0.000000 0.000000
710
+ -0.000000 -0.942576 0.333991
711
+ -0.000000 -0.942576 0.333991
712
+ -0.000000 -0.942576 0.333991
713
+ -0.000000 -0.942576 0.333991
714
+ -0.000000 -0.942576 0.333991
715
+ -0.000000 -0.942576 0.333991
716
+ -0.000000 -0.831367 0.555725
717
+ -0.000000 -0.831367 0.555725
718
+ -0.000000 -0.831367 0.555725
719
+ -0.000000 -0.831366 0.555725
720
+ -0.000000 -0.831366 0.555725
721
+ -0.000000 -0.831366 0.555725
722
+ -0.000000 0.014904 0.999889
723
+ -0.000000 0.014904 0.999889
724
+ -0.000000 0.014904 0.999889
725
+ -0.000000 0.014904 0.999889
726
+ -0.000000 0.014904 0.999889
727
+ -0.000000 0.014904 0.999889
728
+ -0.000000 -0.023420 0.999726
729
+ -0.000000 -0.023420 0.999726
730
+ -0.000000 -0.023420 0.999726
731
+ -0.000000 -0.023420 0.999726
732
+ -0.000000 -0.023420 0.999726
733
+ -0.000000 -0.023420 0.999726
734
+ 0.000000 0.291596 -0.956541
735
+ 0.000000 0.291596 -0.956542
736
+ 0.000000 0.291596 -0.956541
737
+ 0.000000 0.291596 -0.956541
738
+ 0.000000 0.291596 -0.956541
739
+ 0.000000 0.291596 -0.956541
740
+ 0.000000 -0.300114 -0.953903
741
+ 0.000000 -0.300114 -0.953903
742
+ 0.000000 -0.300114 -0.953903
743
+ 0.000000 -0.300114 -0.953903
744
+ 0.000000 -0.300114 -0.953903
745
+ 0.000000 -0.300114 -0.953903
746
+ 0.000000 -0.924870 -0.380283
747
+ 0.000000 -0.924870 -0.380283
748
+ 0.000000 -0.924870 -0.380283
749
+ 0.000000 -0.924870 -0.380283
750
+ 0.000000 -0.924870 -0.380283
751
+ 0.000000 -0.924870 -0.380283
752
+ -1.000000 0.000001 -0.000002
753
+ -1.000000 0.000001 -0.000002
754
+ -1.000000 0.000001 -0.000002
755
+ -1.000000 0.000001 -0.000000
756
+ -1.000000 0.000001 -0.000000
757
+ -1.000000 0.000001 -0.000000
758
+ -1.000000 0.000000 -0.000000
759
+ -1.000000 0.000000 -0.000000
760
+ -1.000000 0.000000 -0.000000
761
+ -1.000000 0.000000 -0.000000
762
+ -1.000000 0.000000 -0.000000
763
+ -1.000000 0.000000 -0.000000
764
+ -1.000000 0.000000 -0.000000
765
+ -1.000000 0.000000 -0.000000
766
+ -1.000000 0.000000 -0.000000
767
+ -1.000000 0.000000 -0.000000
768
+ -1.000000 0.000000 -0.000000
769
+ -1.000000 0.000000 -0.000000
770
+ 1.000000 0.000000 0.000000
771
+ 1.000000 0.000000 0.000000
772
+ 1.000000 0.000000 0.000000
773
+ 1.000000 -0.000001 0.000001
774
+ 1.000000 -0.000001 0.000001
775
+ 1.000000 -0.000001 0.000001
776
+ -0.000000 -0.000000 1.000000
777
+ -0.000000 -0.000000 1.000000
778
+ -0.000000 -0.000000 1.000000
779
+ 0.004533 0.002819 0.999986
780
+ 0.004533 0.002819 0.999986
781
+ 0.004533 0.002819 0.999986
782
+ 0.000000 0.628556 -0.777764
783
+ 0.000000 0.628556 -0.777765
784
+ 0.000000 0.628556 -0.777765
785
+ -0.000000 0.628556 -0.777764
786
+ -0.000000 0.628556 -0.777764
787
+ -0.000000 0.628556 -0.777764
788
+ -1.000000 -0.000000 -0.000000
789
+ -1.000000 -0.000000 -0.000000
790
+ -1.000000 -0.000000 -0.000000
791
+ -1.000000 -0.000000 -0.000000
792
+ -1.000000 -0.000000 -0.000000
793
+ -1.000000 -0.000000 -0.000000
794
+ 0.851717 -0.523833 0.013328
795
+ 0.851717 -0.523833 0.013328
796
+ 0.851717 -0.523833 0.013328
797
+ 0.786949 -0.616996 -0.005158
798
+ 0.786949 -0.616996 -0.005158
799
+ 0.786949 -0.616996 -0.005158
800
+ 0.017743 -0.043385 0.998901
801
+ 0.017743 -0.043385 0.998901
802
+ 0.017743 -0.043385 0.998901
803
+ -0.000000 -0.075491 0.997146
804
+ -0.000000 -0.075491 0.997146
805
+ -0.000000 -0.075491 0.997146
806
+ -0.001020 0.005392 -0.999985
807
+ -0.001020 0.005392 -0.999985
808
+ -0.001020 0.005392 -0.999985
809
+ 0.000000 0.004788 -0.999989
810
+ 0.000000 0.004788 -0.999989
811
+ 0.000000 0.004788 -0.999989
812
+ -1.000000 -0.000000 -0.000000
813
+ -1.000000 -0.000000 -0.000000
814
+ -1.000000 -0.000000 -0.000000
815
+ -1.000000 0.000000 -0.000000
816
+ -1.000000 0.000000 -0.000000
817
+ -1.000000 0.000000 -0.000000
818
+ 1.000000 0.000000 0.000000
819
+ 1.000000 0.000000 0.000000
820
+ 1.000000 0.000000 0.000000
821
+ 1.000000 0.000000 0.000000
822
+ 1.000000 0.000000 0.000000
823
+ 1.000000 0.000000 0.000000
824
+ -0.000000 0.003121 0.999995
825
+ -0.000000 0.003121 0.999995
826
+ -0.000000 0.003121 0.999995
827
+ -0.000000 0.003121 0.999995
828
+ -0.000000 0.003121 0.999995
829
+ -0.000000 0.003121 0.999995
830
+ 0.000000 0.000000 -1.000000
831
+ 0.000000 0.000000 -1.000000
832
+ 0.000000 0.000000 -1.000000
833
+ 0.000000 0.000000 -1.000000
834
+ 0.000000 0.000000 -1.000000
835
+ 0.000000 0.000000 -1.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
+ 0.000000 1.000000 0.000000
843
+ 0.000000 1.000000 0.000000
844
+ 0.000000 1.000000 0.000000
845
+ 0.000000 1.000000 0.000000
846
+ 0.000000 1.000000 0.000000
847
+ 0.000000 1.000000 0.000000
848
+ 1.000000 -0.000001 0.000001
849
+ 1.000000 -0.000001 0.000001
850
+ 1.000000 -0.000001 0.000001
851
+ 1.000000 -0.000001 0.000001
852
+ 1.000000 -0.000001 0.000001
853
+ 1.000000 -0.000001 0.000001
854
+ 1.000000 -0.000001 -0.000000
855
+ 1.000000 -0.000001 -0.000000
856
+ 1.000000 -0.000001 -0.000000
857
+ 1.000000 -0.000000 -0.000000
858
+ 1.000000 -0.000000 -0.000000
859
+ 1.000000 -0.000000 -0.000000
860
+ -0.000000 -0.906449 0.422315
861
+ -0.000000 -0.906449 0.422315
862
+ -0.000000 -0.906449 0.422315
863
+ 0.000000 -0.906449 0.422315
864
+ 0.000000 -0.906449 0.422315
865
+ 0.000000 -0.906449 0.422315
866
+ 0.000000 -0.906411 -0.422396
867
+ 0.000000 -0.906411 -0.422396
868
+ 0.000000 -0.906411 -0.422396
869
+ 0.000000 -0.906411 -0.422396
870
+ 0.000000 -0.906411 -0.422396
871
+ 0.000000 -0.906411 -0.422396
872
+ -0.000000 -0.381444 -0.924392
873
+ -0.000000 -0.381444 -0.924392
874
+ -0.000000 -0.381444 -0.924392
875
+ 0.000000 -0.381445 -0.924392
876
+ 0.000000 -0.381445 -0.924392
877
+ 0.000000 -0.381445 -0.924392
878
+ -0.000000 0.381431 -0.924397
879
+ -0.000000 0.381431 -0.924397
880
+ -0.000000 0.381431 -0.924397
881
+ -0.000000 0.381431 -0.924397
882
+ -0.000000 0.381431 -0.924397
883
+ -0.000000 0.381431 -0.924397
884
+ -0.000455 0.910758 -0.412941
885
+ -0.000455 0.910758 -0.412941
886
+ -0.000455 0.910758 -0.412941
887
+ 0.000000 0.910688 -0.413096
888
+ 0.000000 0.910688 -0.413096
889
+ 0.000000 0.910688 -0.413096
890
+ -0.000000 0.910687 -0.413098
891
+ -0.000000 0.910687 -0.413098
892
+ -0.000000 0.910687 -0.413098
893
+ -0.000000 -0.412294 0.911051
894
+ -0.000000 -0.412294 0.911051
895
+ -0.000000 -0.412294 0.911051
896
+ 0.000056 -0.412304 0.911046
897
+ 0.000056 -0.412304 0.911046
898
+ 0.000056 -0.412304 0.911046
899
+ -1.000000 0.000001 0.000001
900
+ -1.000000 0.000001 0.000001
901
+ -1.000000 0.000001 0.000001
902
+ -1.000000 0.000000 -0.000001
903
+ -1.000000 0.000000 -0.000001
904
+ -1.000000 0.000000 -0.000001
905
+ -1.000000 -0.000002 0.000002
906
+ -1.000000 -0.000002 0.000002
907
+ -1.000000 -0.000002 0.000002
908
+ -1.000000 0.000001 -0.000000
909
+ -1.000000 0.000001 -0.000000
910
+ -1.000000 0.000001 -0.000000
911
+ 1.000000 0.000904 -0.000045
912
+ 1.000000 0.000904 -0.000045
913
+ 1.000000 0.000904 -0.000045
914
+ 1.000000 0.000706 -0.000128
915
+ 1.000000 0.000706 -0.000128
916
+ 1.000000 0.000706 -0.000128
917
+ 0.000000 0.000000 -1.000000
918
+ 0.000000 0.000000 -1.000000
919
+ 0.000000 0.000000 -1.000000
920
+ 0.000000 0.000000 -1.000000
921
+ 0.000000 0.000000 -1.000000
922
+ 0.000000 0.000000 -1.000000
923
+ -0.000000 -0.000000 1.000000
924
+ -0.000000 -0.000000 1.000000
925
+ -0.000000 -0.000000 1.000000
926
+ -0.000000 -0.000000 1.000000
927
+ -0.000000 -0.000000 1.000000
928
+ -0.000000 -0.000000 1.000000
929
+ -1.000000 0.000000 -0.000000
930
+ -1.000000 0.000000 -0.000000
931
+ -1.000000 0.000000 -0.000000
932
+ -1.000000 0.000000 -0.000000
933
+ -1.000000 0.000000 -0.000000
934
+ -1.000000 0.000000 -0.000000
935
+ 1.000000 0.000000 0.000000
936
+ 1.000000 0.000000 0.000000
937
+ 1.000000 0.000000 0.000000
938
+ 1.000000 0.000000 0.000000
939
+ 1.000000 0.000000 0.000000
940
+ 1.000000 0.000000 0.000000
941
+ 0.000000 -0.592616 -0.805485
942
+ 0.000000 -0.592616 -0.805485
943
+ 0.000000 -0.592616 -0.805485
944
+ 0.000000 -0.592616 -0.805485
945
+ 0.000000 -0.592616 -0.805485
946
+ 0.000000 -0.592616 -0.805485
947
+ -0.000000 -0.000000 1.000000
948
+ -0.000000 -0.000000 1.000000
949
+ -0.000000 -0.000000 1.000000
950
+ -0.000000 0.000000 1.000000
951
+ -0.000000 0.000000 1.000000
952
+ -0.000000 0.000000 1.000000
953
+ -0.973622 -0.227926 0.010451
954
+ -0.973622 -0.227926 0.010451
955
+ -0.973622 -0.227926 0.010451
956
+ -0.972375 -0.233137 0.011599
957
+ -0.972375 -0.233137 0.011599
958
+ -0.972375 -0.233137 0.011599
959
+ 1.000000 0.000000 0.000000
960
+ 1.000000 0.000000 0.000000
961
+ 1.000000 0.000000 0.000000
962
+ 1.000000 0.000000 0.000000
963
+ 1.000000 0.000000 0.000000
964
+ 1.000000 0.000000 0.000000
965
+ 0.000000 -0.886280 -0.463151
966
+ 0.000000 -0.886280 -0.463151
967
+ 0.000000 -0.886280 -0.463151
968
+ 0.000000 -0.886280 -0.463151
969
+ 0.000000 -0.886280 -0.463151
970
+ 0.000000 -0.886280 -0.463151
971
+ -0.000000 -0.000001 1.000000
972
+ -0.000000 -0.000001 1.000000
973
+ -0.000000 -0.000001 1.000000
974
+ -0.000000 0.000000 1.000000
975
+ -0.000000 0.000000 1.000000
976
+ -0.000000 0.000000 1.000000
977
+ -0.628973 -0.777427 0.000952
978
+ -0.628973 -0.777427 0.000952
979
+ -0.628973 -0.777427 0.000952
980
+ -0.222222 -0.973973 0.044659
981
+ -0.222222 -0.973973 0.044659
982
+ -0.222222 -0.973973 0.044659
983
+ 1.000000 0.000000 0.000000
984
+ 1.000000 0.000000 0.000000
985
+ 1.000000 0.000000 0.000000
986
+ 1.000000 0.000000 0.000000
987
+ 1.000000 0.000000 0.000000
988
+ 1.000000 0.000000 0.000000
989
+ 0.000000 0.000000 -1.000000
990
+ 0.000000 0.000000 -1.000000
991
+ 0.000000 0.000000 -1.000000
992
+ 0.000000 0.000000 -1.000000
993
+ 0.000000 0.000000 -1.000000
994
+ 0.000000 0.000000 -1.000000
995
+ -0.000000 0.000000 1.000000
996
+ -0.000000 0.000000 1.000000
997
+ -0.000000 0.000000 1.000000
998
+ -0.000000 0.000000 1.000000
999
+ -0.000000 0.000000 1.000000
1000
+ -0.000000 0.000000 1.000000
1001
+ -1.000000 0.000000 0.000017
1002
+ -1.000000 0.000000 0.000017
1003
+ -1.000000 0.000000 0.000017
1004
+ -1.000000 0.000000 0.000017
1005
+ -1.000000 0.000000 0.000017
1006
+ -1.000000 0.000000 0.000017
1007
+ 0.000000 0.999999 -0.001192
1008
+ 0.000000 0.999999 -0.001192
1009
+ 0.000000 0.999999 -0.001192
1010
+ 0.000000 0.999999 -0.001192
1011
+ 0.000000 0.999999 -0.001192
1012
+ 0.000000 0.999999 -0.001192
1013
+ 0.000000 0.000000 -1.000000
1014
+ 0.000000 0.000000 -1.000000
1015
+ 0.000000 0.000000 -1.000000
1016
+ 0.000000 0.000000 -1.000000
1017
+ 0.000000 0.000000 -1.000000
1018
+ 0.000000 0.000000 -1.000000
1019
+ 0.000000 -0.592616 -0.805485
1020
+ 0.000000 -0.592616 -0.805485
1021
+ 0.000000 -0.592616 -0.805485
1022
+ 0.000002 -0.592616 -0.805485
1023
+ 0.000002 -0.592616 -0.805485
1024
+ 0.000002 -0.592616 -0.805485
1025
+ 0.000002 -0.886280 -0.463151
1026
+ 0.000002 -0.886280 -0.463151
1027
+ 0.000002 -0.886279 -0.463151
1028
+ 0.000002 -0.886280 -0.463151
1029
+ 0.000002 -0.886280 -0.463151
1030
+ 0.000002 -0.886279 -0.463151
1031
+ 0.000000 0.000000 -1.000000
1032
+ 0.000000 0.000000 -1.000000
1033
+ 0.000000 0.000000 -1.000000
1034
+ 0.000000 0.000000 -1.000000
1035
+ 0.000000 0.000000 -1.000000
1036
+ 0.000000 0.000000 -1.000000
1037
+ 0.000000 0.999999 -0.001192
1038
+ 0.000000 0.999999 -0.001192
1039
+ 0.000000 0.999999 -0.001192
1040
+ 0.000001 0.999999 -0.001192
1041
+ 0.000001 0.999999 -0.001192
1042
+ 0.000001 0.999999 -0.001192
1043
+ 0.000000 0.000000 1.000000
1044
+ 0.000000 0.000000 1.000000
1045
+ 0.000000 0.000000 1.000000
1046
+ -0.000000 0.000000 1.000000
1047
+ -0.000000 0.000000 1.000000
1048
+ -0.000000 0.000000 1.000000
1049
+ 0.000000 0.000000 1.000000
1050
+ 0.000000 0.000000 1.000000
1051
+ 0.000000 0.000000 1.000000
1052
+ 0.000000 0.000000 1.000000
1053
+ 0.000000 0.000000 1.000000
1054
+ 0.000000 0.000000 1.000000
1055
+ 0.000000 0.000000 1.000000
1056
+ 0.000000 0.000000 1.000000
1057
+ 0.000000 0.000000 1.000000
1058
+ 0.000000 0.000000 1.000000
1059
+ 0.000000 0.000000 1.000000
1060
+ 0.000000 0.000000 1.000000
1061
+ -0.000000 -0.000000 1.000000
1062
+ -0.000000 -0.000000 1.000000
1063
+ -0.000000 -0.000000 1.000000
1064
+ 0.000000 -0.000000 1.000000
1065
+ 0.000000 -0.000000 1.000000
1066
+ 0.000000 -0.000000 1.000000
1067
+ 0.891756 0.452516 -0.000547
1068
+ 0.891756 0.452516 -0.000547
1069
+ 0.891756 0.452516 -0.000547
1070
+ 0.891768 0.452493 -0.000539
1071
+ 0.891768 0.452493 -0.000539
1072
+ 0.891768 0.452493 -0.000539
1073
+ 0.000000 -0.000000 -1.000000
1074
+ 0.000000 -0.000000 -1.000000
1075
+ 0.000000 -0.000000 -1.000000
1076
+ 0.000000 0.000000 -1.000000
1077
+ 0.000000 0.000000 -1.000000
1078
+ 0.000000 0.000000 -1.000000
1079
+ -0.000000 0.000000 1.000000
1080
+ -0.000000 0.000000 1.000000
1081
+ -0.000000 0.000000 1.000000
1082
+ 0.000000 0.000000 1.000000
1083
+ 0.000000 0.000000 1.000000
1084
+ 0.000000 0.000000 1.000000
1085
+ -1.000000 -0.000001 0.000017
1086
+ -1.000000 -0.000001 0.000017
1087
+ -1.000000 -0.000001 0.000017
1088
+ -1.000000 0.000000 0.000017
1089
+ -1.000000 0.000000 0.000017
1090
+ -1.000000 0.000000 0.000017
1091
+ 0.000000 0.000000 -1.000000
1092
+ 0.000000 0.000000 -1.000000
1093
+ 0.000000 0.000000 -1.000000
1094
+ 0.000000 0.000000 -1.000000
1095
+ 0.000000 0.000000 -1.000000
1096
+ 0.000000 0.000000 -1.000000
1097
+ 0.000000 0.000000 1.000000
1098
+ 0.000000 0.000000 1.000000
1099
+ 0.000000 0.000000 1.000000
1100
+ 0.000000 0.000000 1.000000
1101
+ 0.000000 0.000000 1.000000
1102
+ 0.000000 0.000000 1.000000
1103
+ 1.000000 -0.000001 0.000001
1104
+ 1.000000 -0.000001 0.000001
1105
+ 1.000000 -0.000001 0.000001
1106
+ 1.000000 0.000001 -0.000000
1107
+ 1.000000 0.000001 -0.000000
1108
+ 1.000000 0.000001 -0.000000
1109
+ 0.000057 -0.412299 0.911049
1110
+ 0.000057 -0.412299 0.911049
1111
+ 0.000057 -0.412299 0.911049
1112
+ 0.000000 -0.412277 0.911058
1113
+ 0.000000 -0.412277 0.911058
1114
+ 0.000000 -0.412277 0.911058
1115
+ -1.000000 -0.000000 -0.000001
1116
+ -1.000000 -0.000000 -0.000001
1117
+ -1.000000 -0.000000 -0.000001
1118
+ -1.000000 0.000000 -0.000000
1119
+ -1.000000 0.000000 -0.000000
1120
+ -1.000000 0.000000 -0.000000
1121
+ -0.000000 -0.412304 0.911046
1122
+ -0.000000 -0.412304 0.911046
1123
+ -0.000000 -0.412304 0.911046
1124
+ 0.000000 -0.412304 0.911046
1125
+ 0.000000 -0.412304 0.911046
1126
+ 0.000000 -0.412304 0.911046
1127
+ 0.000000 -0.727594 -0.686008
1128
+ 0.000000 -0.727594 -0.686008
1129
+ 0.000000 -0.727594 -0.686008
1130
+ 0.000000 -0.727594 -0.686008
1131
+ 0.000000 -0.727594 -0.686008
1132
+ 0.000000 -0.727594 -0.686008
1133
+ 1.000000 0.000560 -0.000101
1134
+ 1.000000 0.000560 -0.000101
1135
+ 1.000000 0.000560 -0.000101
1136
+ 0.999836 -0.016803 0.006754
1137
+ 0.999836 -0.016803 0.006754
1138
+ 0.999836 -0.016803 0.006754
1139
+ 0.000000 0.006995 -0.999976
1140
+ 0.000000 0.006995 -0.999976
1141
+ 0.000000 0.006995 -0.999975
1142
+ 1.000000 0.000000 0.000000
1143
+ 1.000000 0.000000 0.000000
1144
+ 1.000000 0.000000 0.000000
1145
+ 1.000000 0.000000 0.000000
1146
+ 1.000000 0.000000 0.000000
1147
+ 1.000000 0.000000 0.000000
1148
+ -0.000000 0.003101 0.999995
1149
+ -0.000000 0.003101 0.999995
1150
+ -0.000000 0.003101 0.999995
1151
+ 0.000000 0.003101 0.999995
1152
+ 0.000000 0.003101 0.999995
1153
+ 0.000000 0.003101 0.999995
1154
+ 0.000000 0.000000 -1.000000
1155
+ 0.000000 0.000000 -1.000000
1156
+ 0.000000 0.000000 -1.000000
1157
+ 0.000000 0.000000 -1.000000
1158
+ 0.000000 0.000000 -1.000000
1159
+ 0.000000 0.000000 -1.000000
1160
+ -0.890341 0.455286 0.002685
1161
+ -0.890341 0.455286 0.002685
1162
+ -0.890341 0.455286 0.002685
1163
+ -0.894327 0.447414 -0.000000
1164
+ -0.894327 0.447414 -0.000000
1165
+ -0.894327 0.447414 -0.000000
1166
+ </float_array>
1167
+ <technique_common>
1168
+ <accessor source="#drc_l_sh_rx-Normal0-array" count="930" stride="3">
1169
+ <param name="X" type="float"/>
1170
+ <param name="Y" type="float"/>
1171
+ <param name="Z" type="float"/>
1172
+ </accessor>
1173
+ </technique_common>
1174
+ </source>
1175
+ <source id="drc_l_sh_rx-UV0">
1176
+ <float_array id="drc_l_sh_rx-UV0-array" count="660">
1177
+ 0.685327 0.732981
1178
+ 0.682878 0.807897
1179
+ 0.685463 0.743806
1180
+ 0.683158 0.803347
1181
+ 0.685468 0.747510
1182
+ 0.683361 0.799915
1183
+ 0.685465 0.747955
1184
+ 0.687899 0.788452
1185
+ 0.689144 0.759740
1186
+ 0.683577 0.796117
1187
+ 0.685409 0.751756
1188
+ 0.576795 0.682571
1189
+ 0.585768 0.672568
1190
+ 0.599395 0.671696
1191
+ 0.609684 0.680368
1192
+ 0.610584 0.693591
1193
+ 0.577741 0.695761
1194
+ 0.588047 0.704486
1195
+ 0.601656 0.703561
1196
+ 0.582192 0.767771
1197
+ 0.596156 0.767743
1198
+ 0.596249 0.789470
1199
+ 0.582223 0.789499
1200
+ 0.568156 0.767792
1201
+ 0.568188 0.789519
1202
+ 0.554165 0.767801
1203
+ 0.554198 0.789528
1204
+ 0.540182 0.767802
1205
+ 0.540152 0.789530
1206
+ 0.526137 0.767803
1207
+ 0.526138 0.789501
1208
+ 0.512145 0.767804
1209
+ 0.512161 0.789531
1210
+ 0.498110 0.767817
1211
+ 0.498138 0.789515
1212
+ 0.484084 0.767830
1213
+ 0.484144 0.789558
1214
+ 0.659716 0.699946
1215
+ 0.653022 0.700037
1216
+ 0.652761 0.681942
1217
+ 0.659488 0.681819
1218
+ 0.672878 0.681638
1219
+ 0.673004 0.688167
1220
+ 0.431771 0.677508
1221
+ 0.431972 0.689387
1222
+ 0.411609 0.686134
1223
+ 0.411453 0.676848
1224
+ 0.419116 0.701552
1225
+ 0.434105 0.674324
1226
+ 0.411399 0.673667
1227
+ 0.436776 0.672918
1228
+ 0.411393 0.673278
1229
+ 0.436723 0.669657
1230
+ 0.411341 0.670012
1231
+ 0.411221 0.662411
1232
+ 0.436603 0.662059
1233
+ 0.601556 0.772097
1234
+ 0.609780 0.769288
1235
+ 0.617971 0.772793
1236
+ 0.601421 0.772143
1237
+ 0.621233 0.780886
1238
+ 0.617927 0.789148
1239
+ 0.607823 0.792488
1240
+ 0.600509 0.789640
1241
+ 0.477729 0.769063
1242
+ 0.478187 0.786623
1243
+ 0.445819 0.769922
1244
+ 0.445725 0.766526
1245
+ 0.477634 0.765670
1246
+ 0.478283 0.790019
1247
+ 0.446409 0.790844
1248
+ 0.446315 0.787451
1249
+ 0.438586 0.770082
1250
+ 0.439126 0.787640
1251
+ 0.424346 0.776793
1252
+ 0.424198 0.770466
1253
+ 0.678983 0.821516
1254
+ 0.679885 0.807697
1255
+ 0.680163 0.803155
1256
+ 0.686484 0.808137
1257
+ 0.685592 0.821970
1258
+ 0.681986 0.821727
1259
+ 0.680578 0.842005
1260
+ 0.677567 0.841783
1261
+ 0.680366 0.799731
1262
+ 0.687626 0.803631
1263
+ 0.680581 0.795941
1264
+ 0.689742 0.800304
1265
+ 0.684903 0.788301
1266
+ 0.689960 0.796491
1267
+ 0.686146 0.759639
1268
+ 0.690393 0.788575
1269
+ 0.682408 0.751700
1270
+ 0.691638 0.759825
1271
+ 0.682465 0.747923
1272
+ 0.691801 0.751877
1273
+ 0.691856 0.748032
1274
+ 0.682469 0.747504
1275
+ 0.689944 0.747526
1276
+ 0.682462 0.743829
1277
+ 0.689076 0.743780
1278
+ 0.682316 0.733036
1279
+ 0.688940 0.732913
1280
+ 0.681854 0.713173
1281
+ 0.684870 0.713115
1282
+ 0.688484 0.713140
1283
+ 0.684445 0.704302
1284
+ 0.688051 0.704071
1285
+ 0.683577 0.692353
1286
+ 0.687177 0.692042
1287
+ 0.682650 0.682143
1288
+ 0.686246 0.681775
1289
+ 0.681622 0.672134
1290
+ 0.685214 0.671732
1291
+ 0.680533 0.662120
1292
+ 0.684123 0.661704
1293
+ 0.679462 0.652365
1294
+ 0.679444 0.652205
1295
+ 0.683034 0.651787
1296
+ 0.534231 0.714961
1297
+ 0.534583 0.704453
1298
+ 0.557695 0.701127
1299
+ 0.557243 0.714577
1300
+ 0.543298 0.687267
1301
+ 0.534113 0.718661
1302
+ 0.559824 0.718328
1303
+ 0.547284 0.679403
1304
+ 0.558340 0.674819
1305
+ 0.534107 0.720558
1306
+ 0.562842 0.720774
1307
+ 0.567514 0.679326
1308
+ 0.571056 0.688488
1309
+ 0.534071 0.724253
1310
+ 0.562809 0.724471
1311
+ 0.566912 0.697411
1312
+ 0.562737 0.732146
1313
+ 0.534000 0.731926
1314
+ 0.622883 0.643931
1315
+ 0.635368 0.648961
1316
+ 0.640543 0.661052
1317
+ 0.635387 0.673151
1318
+ 0.622909 0.678162
1319
+ 0.605276 0.661078
1320
+ 0.610433 0.648979
1321
+ 0.610452 0.673169
1322
+ 0.572752 0.697728
1323
+ 0.571832 0.680419
1324
+ 0.576410 0.681999
1325
+ 0.577146 0.695705
1326
+ 0.583797 0.667553
1327
+ 0.585909 0.671776
1328
+ 0.585996 0.709333
1329
+ 0.587615 0.704917
1330
+ 0.601630 0.666635
1331
+ 0.600001 0.671088
1332
+ 0.603879 0.708469
1333
+ 0.601788 0.704207
1334
+ 0.614932 0.678295
1335
+ 0.610550 0.680278
1336
+ 0.615807 0.695593
1337
+ 0.611274 0.694029
1338
+ 0.436867 0.764084
1339
+ 0.419644 0.764110
1340
+ 0.419688 0.734749
1341
+ 0.436879 0.734756
1342
+ 0.454054 0.764090
1343
+ 0.454066 0.734762
1344
+ 0.471240 0.764096
1345
+ 0.471252 0.734768
1346
+ 0.488447 0.764136
1347
+ 0.488425 0.734774
1348
+ 0.505620 0.764140
1349
+ 0.505662 0.734779
1350
+ 0.522807 0.764156
1351
+ 0.522834 0.734761
1352
+ 0.539995 0.764170
1353
+ 0.540005 0.734808
1354
+ 0.557186 0.764193
1355
+ 0.557261 0.734831
1356
+ 0.497821 0.687552
1357
+ 0.501450 0.679370
1358
+ 0.510230 0.675998
1359
+ 0.519037 0.679414
1360
+ 0.522651 0.687603
1361
+ 0.501468 0.695772
1362
+ 0.510242 0.699157
1363
+ 0.519022 0.695786
1364
+ 0.501814 0.730332
1365
+ 0.491732 0.730332
1366
+ 0.491732 0.704948
1367
+ 0.501815 0.704948
1368
+ 0.481649 0.730332
1369
+ 0.481650 0.704948
1370
+ 0.471521 0.730332
1371
+ 0.471522 0.704948
1372
+ 0.461438 0.730332
1373
+ 0.461439 0.704948
1374
+ 0.451356 0.730332
1375
+ 0.451356 0.704948
1376
+ 0.441273 0.730332
1377
+ 0.441273 0.704948
1378
+ 0.431190 0.730332
1379
+ 0.431191 0.704948
1380
+ 0.421062 0.730332
1381
+ 0.421063 0.704948
1382
+ 0.503856 0.705053
1383
+ 0.497809 0.696468
1384
+ 0.532383 0.706312
1385
+ 0.532179 0.717592
1386
+ 0.503575 0.716193
1387
+ 0.500947 0.697982
1388
+ 0.510850 0.699581
1389
+ 0.532613 0.721724
1390
+ 0.503608 0.721182
1391
+ 0.494334 0.688289
1392
+ 0.497075 0.688262
1393
+ 0.532611 0.700810
1394
+ 0.519916 0.696787
1395
+ 0.532684 0.724805
1396
+ 0.503686 0.724432
1397
+ 0.497545 0.676595
1398
+ 0.500488 0.679133
1399
+ 0.532686 0.681826
1400
+ 0.523403 0.687652
1401
+ 0.532585 0.732424
1402
+ 0.503613 0.731963
1403
+ 0.509568 0.671406
1404
+ 0.509682 0.675129
1405
+ 0.522719 0.675504
1406
+ 0.519191 0.678576
1407
+ 0.665149 0.708542
1408
+ 0.668479 0.720332
1409
+ 0.665158 0.729650
1410
+ 0.629604 0.735559
1411
+ 0.629864 0.731359
1412
+ 0.630285 0.713107
1413
+ 0.640134 0.707219
1414
+ 0.629222 0.745577
1415
+ 0.658423 0.737152
1416
+ 0.653187 0.703253
1417
+ 0.628792 0.750781
1418
+ 0.657775 0.752050
1419
+ 0.657657 0.755181
1420
+ 0.628681 0.753988
1421
+ 0.657336 0.763592
1422
+ 0.628379 0.762550
1423
+ 0.581473 0.658498
1424
+ 0.569308 0.658431
1425
+ 0.569352 0.652198
1426
+ 0.579671 0.652256
1427
+ 0.585008 0.661201
1428
+ 0.585042 0.652278
1429
+ 0.565027 0.652167
1430
+ 0.564970 0.658400
1431
+ 0.588342 0.652288
1432
+ 0.588312 0.661212
1433
+ 0.546235 0.651983
1434
+ 0.546156 0.658216
1435
+ 0.596221 0.656144
1436
+ 0.596204 0.661235
1437
+ 0.534685 0.651821
1438
+ 0.534575 0.658053
1439
+ 0.521031 0.651556
1440
+ 0.520881 0.657788
1441
+ 0.507912 0.651219
1442
+ 0.507719 0.657450
1443
+ 0.495347 0.650810
1444
+ 0.495108 0.657038
1445
+ 0.485222 0.650407
1446
+ 0.484936 0.656634
1447
+ 0.475004 0.649929
1448
+ 0.474673 0.656154
1449
+ 0.463501 0.655743
1450
+ 0.459685 0.649106
1451
+ 0.459135 0.658012
1452
+ 0.455893 0.657818
1453
+ 0.456477 0.648912
1454
+ 0.448535 0.652247
1455
+ 0.448170 0.657327
1456
+ 0.419262 0.655244
1457
+ 0.419650 0.650166
1458
+ 0.673863 0.677244
1459
+ 0.654185 0.677023
1460
+ 0.654548 0.646620
1461
+ 0.674260 0.646808
1462
+ 0.678071 0.646851
1463
+ 0.677674 0.677286
1464
+ 0.650374 0.676979
1465
+ 0.650737 0.646577
1466
+ 0.486616 0.658646
1467
+ 0.493722 0.658664
1468
+ 0.493606 0.704516
1469
+ 0.486506 0.704499
1470
+ 0.472475 0.658616
1471
+ 0.472375 0.704468
1472
+ 0.465276 0.704454
1473
+ 0.465369 0.658602
1474
+ 0.446283 0.704419
1475
+ 0.446370 0.658566
1476
+ 0.439216 0.704407
1477
+ 0.439301 0.658554
1478
+ 0.622847 0.718378
1479
+ 0.591532 0.717847
1480
+ 0.587722 0.717781
1481
+ 0.568013 0.717440
1482
+ 0.670231 0.771330
1483
+ 0.567170 0.763286
1484
+ 0.563356 0.763219
1485
+ 0.564204 0.717373
1486
+ 0.586885 0.763626
1487
+ 0.564305 0.711762
1488
+ 0.568116 0.711827
1489
+ 0.587826 0.712171
1490
+ 0.590700 0.763692
1491
+ 0.591634 0.712237
1492
+ 0.622019 0.764225
1493
+ 0.622948 0.712765
1494
+ 0.626657 0.718442
1495
+ 0.625831 0.764289
1496
+ 0.626758 0.712830
1497
+ 0.622115 0.800440
1498
+ 0.623016 0.770014
1499
+ 0.669328 0.801757
1500
+ 0.623127 0.766315
1501
+ 0.670343 0.767630
1502
+ 0.676010 0.771497
1503
+ 0.675106 0.801920
1504
+ 0.676123 0.767805
1505
+ 0.676756 0.748713
1506
+ 0.670977 0.748533
1507
+ </float_array>
1508
+ <technique_common>
1509
+ <accessor source="#drc_l_sh_rx-UV0-array" count="330" stride="2">
1510
+ <param name="S" type="float"/>
1511
+ <param name="T" type="float"/>
1512
+ </accessor>
1513
+ </technique_common>
1514
+ </source>
1515
+ <vertices id="drc_l_sh_rx-VERTEX">
1516
+ <input semantic="POSITION" source="#drc_l_sh_rx-POSITION"/>
1517
+ </vertices>
1518
+ <triangles count="310" material="drc_extremities_diffuse"><input semantic="VERTEX" offset="0" source="#drc_l_sh_rx-VERTEX"/><input semantic="NORMAL" offset="1" source="#drc_l_sh_rx-Normal0"/><input semantic="TEXCOORD" offset="2" set="0" source="#drc_l_sh_rx-UV0"/><p> 2 0 320 1 1 322 0 2 305 0 3 305 3 4 321 2 5 320 6 6 313 5 7 315 4 8 301 4 9 301 7 10 302 6 11 313 10 12 66 9 13 71 8 14 65 8 15 65 11 16 64 10 17 66 11 18 306 8 19 309 12 20 303 12 21 303 13 22 304 11 23 306 16 24 284 15 25 283 14 26 282 14 27 282 17 28 281 16 29 284 18 30 317 4 31 301 5 32 315 5 33 315 9 34 318 18 35 317 10 36 323 3 37 321 0 38 305 0 39 305 19 40 324 10 41 323 9 42 71 5 43 70 6 44 69 6 45 69 8 46 65 9 47 71 11 48 64 2 49 68 3 50 67 3 51 67 10 52 66 11 53 64 8 54 309 6 55 313 7 56 302 7 57 302 12 58 303 8 59 309 13 60 304 1 61 308 2 62 307 2 63 307 11 64 306 13 65 304 15 66 283 21 67 288 20 68 287 20 69 287 14 70 282 15 71 283 17 72 281 23 73 286 22 74 285 22 75 285 16 76 284 17 77 281 24 78 73 9 79 71 10 80 66 10 81 66 25 82 72 24 83 73 26 84 40 19 85 39 18 86 38 18 87 38 27 88 37 26 89 40 27 90 298 18 91 300 9 92 299 9 93 299 24 94 297 27 95 298 25 96 292 10 97 291 19 98 290 19 99 290 26 100 289 25 101 292 28 102 74 24 103 73 25 104 72 25 105 72 29 106 75 28 107 74 30 108 41 26 109 40 27 110 37 27 111 37 31 112 42 30 113 41 31 114 296 27 115 298 24 116 297 24 117 297 28 118 295 31 119 296 29 120 294 25 121 292 26 122 289 26 123 289 30 124 293 29 125 294 29 126 294 30 127 293 31 128 296 31 129 296 28 130 295 29 131 294 23 132 325 0 133 305 1 134 322 1 135 322 22 136 326 23 137 325 17 138 327 19 139 324 0 140 305 0 141 305 23 142 325 17 143 327 14 144 328 18 145 329 19 146 324 19 147 324 17 148 327 14 149 328 20 150 316 4 151 301 18 152 317 18 153 317 14 154 319 20 155 316 21 156 314 7 157 302 4 158 301 4 159 301 20 160 316 21 161 314 15 162 312 12 163 303 7 164 302 7 165 302 21 166 314 15 167 312 16 168 311 13 169 304 12 170 303 12 171 303 15 172 312 16 173 311 22 174 310 1 175 308 13 176 304 13 177 304 16 178 311 22 179 310 34 180 29 33 181 30 32 182 28 32 183 28 35 184 27 34 185 29 37 186 31 36 187 32 33 188 30 33 189 30 34 190 29 37 191 31 39 192 33 38 193 34 36 194 32 36 195 32 37 196 31 39 197 33 41 198 35 40 199 36 38 200 34 38 201 34 39 202 33 41 203 35 43 204 19 42 205 22 40 206 21 40 207 21 41 208 20 43 209 19 45 210 23 44 211 24 42 212 22 42 213 22 43 214 19 45 215 23 47 216 25 46 217 26 44 218 24 44 219 24 45 220 23 47 221 25 35 222 27 32 223 28 46 224 26 46 225 26 47 226 25 35 227 27 40 228 13 42 229 12 44 230 11 44 231 11 32 232 17 40 233 13 36 234 15 38 235 14 40 236 13 40 237 13 32 238 17 36 239 15 36 240 15 32 241 17 33 242 18 46 243 16 32 244 17 44 245 11 48 246 155 34 247 156 35 248 152 35 249 152 49 250 151 48 251 155 50 252 159 37 253 160 34 254 156 34 255 156 48 256 155 50 257 159 51 258 157 39 259 158 37 260 160 37 261 160 50 262 159 51 263 157 52 264 153 41 265 154 39 266 158 39 267 158 51 268 157 52 269 153 53 270 149 43 271 150 41 272 154 41 273 154 52 274 153 53 275 149 54 276 146 45 277 147 43 278 150 43 279 150 53 280 149 54 281 146 55 282 145 47 283 148 45 284 147 45 285 147 54 286 146 55 287 145 49 288 151 35 289 152 47 290 148 47 291 148 55 292 145 49 293 151 56 294 171 48 295 172 49 296 170 49 297 170 57 298 169 56 299 171 58 300 173 50 301 174 48 302 172 48 303 172 56 304 171 58 305 173 59 306 175 51 307 176 50 308 174 50 309 174 58 310 173 59 311 175 60 312 177 52 313 178 51 314 176 51 315 176 59 316 175 60 317 177 61 318 161 53 319 164 52 320 163 52 321 163 60 322 162 61 323 161 62 324 165 54 325 166 53 326 164 53 327 164 61 328 161 62 329 165 63 330 167 55 331 168 54 332 166 54 333 166 62 334 165 63 335 167 57 336 169 49 337 170 55 338 168 55 339 168 63 340 167 57 341 169 60 342 137 59 343 143 58 344 142 58 345 142 57 346 141 60 347 137 62 348 139 61 349 138 60 350 137 60 351 137 57 352 141 62 353 139 62 354 139 57 355 141 63 356 140 56 357 144 57 358 141 58 359 142 66 360 193 65 361 194 64 362 196 64 363 196 67 364 195 66 365 193 69 366 191 68 367 192 65 368 194 65 369 194 66 370 193 69 371 191 71 372 188 70 373 189 68 374 192 68 375 192 69 376 191 71 377 188 73 378 187 72 379 190 70 380 189 70 381 189 71 382 188 73 383 187 75 384 201 74 385 202 72 386 204 72 387 204 73 388 203 75 389 201 77 390 199 76 391 200 74 392 202 74 393 202 75 394 201 77 395 199 79 396 197 78 397 198 76 398 200 76 399 200 77 400 199 79 401 197 67 402 195 64 403 196 78 404 198 78 405 198 79 406 197 67 407 195 73 408 181 71 409 180 69 410 179 69 411 179 67 412 185 73 413 181 77 414 183 75 415 182 73 416 181 73 417 181 67 418 185 77 419 183 77 420 183 67 421 185 79 422 186 66 423 184 67 424 185 69 425 179 80 426 226 64 427 227 65 428 229 65 429 229 81 430 228 80 431 226 81 432 228 65 433 229 68 434 223 68 435 223 82 436 222 81 437 228 82 438 222 68 439 223 70 440 217 70 441 217 83 442 216 82 443 222 83 444 216 70 445 217 72 446 211 72 447 211 84 448 207 83 449 216 84 450 207 72 451 211 74 452 210 74 453 210 85 454 206 84 455 207 85 456 206 74 457 210 76 458 215 76 459 215 86 460 214 85 461 206 86 462 214 76 463 215 78 464 221 78 465 221 87 466 220 86 467 214 87 468 220 78 469 221 64 470 227 64 471 227 80 472 226 87 473 220 88 474 262 80 475 263 81 476 261 81 477 261 89 478 260 88 479 262 89 480 260 81 481 261 82 482 257 82 483 257 90 484 256 89 485 260 90 486 256 82 487 257 83 488 253 83 489 253 91 490 252 90 491 256 91 492 252 83 493 253 84 494 247 84 495 247 92 496 248 91 497 252 93 498 268 85 499 269 86 500 267 86 501 267 94 502 266 93 503 268 94 504 266 86 505 267 87 506 265 87 507 265 95 508 264 94 509 266 95 510 264 87 511 265 80 512 263 80 513 263 88 514 262 95 515 264 93 516 232 94 517 231 95 518 230 95 519 230 91 520 234 93 521 232 93 522 232 91 523 234 92 524 233 89 525 236 90 526 235 91 527 234 91 528 234 95 529 230 89 530 236 88 531 239 89 532 236 95 533 230 96 534 208 84 535 207 85 536 206 85 537 206 97 538 205 96 539 208 98 540 249 92 541 248 84 542 247 84 543 247 96 544 246 98 545 249 97 546 271 85 547 269 93 548 268 93 549 268 99 550 270 97 551 271 99 552 238 93 553 232 92 554 233 92 555 233 98 556 237 99 557 238 96 558 208 158 559 209 101 560 213 101 561 213 100 562 212 96 563 208 102 564 251 98 565 249 96 566 246 96 567 246 100 568 250 102 569 251 99 570 270 103 571 273 158 572 272 158 573 272 97 574 271 99 575 270 103 576 241 99 577 238 98 578 237 98 579 237 102 580 240 103 581 241 100 582 212 101 583 213 160 584 219 160 585 219 159 586 218 100 587 212 102 588 251 100 589 250 159 590 255 159 591 255 161 592 254 102 593 251 101 594 274 103 595 273 162 596 276 162 597 276 160 598 275 101 599 274 103 600 241 102 601 240 161 602 243 161 603 243 162 604 242 103 605 241 105 606 278 107 607 277 106 608 280 106 609 280 104 610 279 105 611 278 154 612 56 108 613 59 110 614 58 110 615 58 109 616 57 154 617 56 108 618 59 111 619 61 110 620 58 110 621 58 111 622 61 112 623 60 116 624 107 115 625 109 111 626 108 111 627 108 114 628 106 116 629 107 115 630 109 117 631 111 112 632 110 112 633 110 111 634 108 115 635 109 117 636 111 118 637 113 110 638 112 110 639 112 112 640 110 117 641 111 118 642 113 119 643 115 109 644 114 109 645 114 110 646 112 118 647 113 108 648 117 154 649 116 119 650 115 119 651 115 120 652 118 108 653 117 119 654 115 154 655 116 109 656 114 113 657 0 121 658 102 153 659 105 153 660 105 152 661 104 113 662 0 118 663 131 117 664 130 115 665 127 115 666 127 120 667 121 118 668 131 118 669 131 120 670 121 119 671 134 120 672 121 153 673 123 121 674 120 123 675 43 122 676 46 156 677 45 156 678 45 155 679 44 123 680 43 125 681 79 124 682 1 108 683 81 108 684 81 120 685 80 125 686 79 127 687 2 126 688 100 121 689 102 121 690 102 113 691 0 127 692 2 126 693 119 125 694 122 120 695 121 120 696 121 121 697 120 126 698 119 129 699 48 128 700 49 122 701 46 122 702 46 123 703 43 129 704 48 131 705 85 130 706 3 124 707 1 124 708 1 125 709 79 131 710 85 133 711 4 132 712 98 126 713 100 126 714 100 127 715 2 133 716 4 132 717 124 131 718 125 125 719 122 125 720 122 126 721 119 132 722 124 135 723 50 134 724 51 128 725 49 128 726 49 129 727 48 135 728 50 137 729 87 136 730 5 130 731 3 130 732 3 131 733 85 137 734 87 139 735 6 138 736 96 132 737 98 132 738 98 133 739 4 139 740 6 138 741 128 137 742 129 131 743 125 131 744 125 132 745 124 138 746 128 146 747 53 134 748 51 135 749 50 135 750 50 147 751 52 146 752 53 149 753 89 148 754 9 136 755 5 136 756 5 137 757 87 149 758 89 151 759 10 150 760 95 138 761 96 138 762 96 139 763 6 151 764 10 149 765 133 137 766 129 138 767 128 138 768 128 150 769 132 149 770 133 145 771 8 142 772 7 143 773 91 143 774 91 144 775 93 145 776 8 123 777 77 155 778 76 108 779 81 108 780 81 124 781 1 123 782 77 129 783 78 123 784 77 124 785 1 124 786 1 130 787 3 129 788 78 135 789 84 129 790 78 130 791 3 130 792 3 136 793 5 135 794 84 147 795 86 135 796 84 136 797 5 136 798 5 148 799 9 147 800 86 140 801 90 141 802 88 142 803 7 142 804 7 145 805 8 140 806 90 140 807 90 145 808 8 151 809 10 151 810 10 146 811 92 140 812 90 128 813 97 134 814 94 139 815 6 139 816 6 133 817 4 128 818 97 122 819 99 128 820 97 133 821 4 133 822 4 127 823 2 122 824 99 156 825 101 122 826 99 127 827 2 127 828 2 113 829 0 156 830 101 140 831 54 146 832 53 147 833 52 147 834 52 141 835 55 140 836 54 142 837 7 148 838 9 149 839 89 149 840 89 143 841 91 142 842 7 144 843 93 150 844 95 151 845 10 151 846 10 145 847 8 144 848 93 143 849 135 149 850 133 150 851 132 150 852 132 144 853 136 143 854 135 141 855 88 147 856 86 148 857 9 148 858 9 142 859 7 141 860 88 139 861 6 134 862 94 146 863 92 146 864 92 151 865 10 139 866 6 111 867 61 108 868 59 152 869 63 152 870 63 114 871 62 111 872 61 152 873 104 153 874 105 116 875 107 116 876 107 114 877 106 152 878 104 116 879 126 153 880 123 120 881 121 120 882 121 115 883 127 116 884 126 152 885 104 157 886 103 156 887 101 156 888 101 113 889 0 152 890 104 108 891 81 155 892 76 157 893 83 157 894 83 152 895 82 108 896 81 155 897 44 156 898 45 157 899 47 158 900 209 96 901 208 97 902 205 158 903 272 103 904 273 101 905 274 104 906 224 159 907 218 160 908 219 160 909 219 105 910 225 104 911 224 106 912 258 161 913 254 159 914 255 159 915 255 104 916 259 106 917 258 105 918 278 160 919 275 162 920 276 162 921 276 107 922 277 105 923 278 107 924 244 162 925 242 161 926 243 161 927 243 106 928 245 107 929 244</p></triangles>
1519
+ </mesh>
1520
+ </geometry>
1521
+ </library_geometries>
1522
+ <library_visual_scenes>
1523
+ <visual_scene id="l_sh_rx" name="l_sh_rx">
1524
+ <node name="g27" id="g27" sid="g27"><matrix sid="matrix">1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000</matrix><extra><technique profile="FCOLLADA"><visibility>1.000000</visibility></technique></extra><node name="l_sh_rx_node" id="l_sh_rx_node" sid="l_sh_rx_node"><matrix sid="matrix">1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000</matrix><extra><technique profile="FCOLLADA"><visibility>1.000000</visibility></technique></extra><node name="drc_l_sh_rx" id="drc_l_sh_rx" sid="drc_l_sh_rx"><matrix sid="matrix">1.000000 0.000000 0.000000 -0.011835 0.000000 1.000000 -0.000000 -0.000357 0.000000 0.000000 1.000000 0.002406 0.000000 0.000000 0.000000 1.000000</matrix><instance_geometry url="#drc_l_sh_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>
1525
+ <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>
1526
+ </visual_scene>
1527
+ </library_visual_scenes>
1528
+ <scene>
1529
+ <instance_visual_scene url="#l_sh_rx"></instance_visual_scene>
1530
+ </scene>
1531
+ </COLLADA>