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:43Z</created><keywords></keywords><modified>2013-08-22T20:06:43Z</modified><revision></revision><subject></subject><title></title><unit meter="1.000000" name="centimeter"></unit><up_axis>Z_UP</up_axis></asset>
4
+ <library_images>
5
+ <image id="drc_extremities_diffuse-image" name="drc_extremities_diffuse"><init_from>../materials/textures/drc_extremities_diffuse.jpg</init_from></image>
6
+ </library_images>
7
+ <library_materials>
8
+ <material id="drc_extremities_diffuse" name="drc_extremities_diffuse">
9
+ <instance_effect url="#drc_extremities_diffuse-fx"/>
10
+ </material>
11
+ </library_materials>
12
+ <library_effects>
13
+ <effect id="drc_extremities_diffuse-fx" name="drc_extremities_diffuse">
14
+ <profile_COMMON>
15
+ <technique sid="standard">
16
+ <phong>
17
+ <emission>
18
+ <color sid="emission">0.000000 0.000000 0.000000 1.000000</color>
19
+ </emission>
20
+ <ambient>
21
+ <color sid="ambient">0.588235 0.588235 0.588235 1.000000</color>
22
+ </ambient>
23
+ <diffuse>
24
+ <texture texture="drc_extremities_diffuse-image" texcoord="CHANNEL0">
25
+ <extra>
26
+ <technique profile="MAYA">
27
+ <wrapU sid="wrapU0">TRUE</wrapU>
28
+ <wrapV sid="wrapV0">TRUE</wrapV>
29
+ <blend_mode>ADD</blend_mode>
30
+ </technique>
31
+ </extra>
32
+ </texture>
33
+ </diffuse>
34
+ <specular>
35
+ <color sid="specular">0.000000 0.000000 0.000000 1.000000</color>
36
+ </specular>
37
+ <shininess>
38
+ <float sid="shininess">2.000000</float>
39
+ </shininess>
40
+ <reflective>
41
+ <color sid="reflective">0.000000 0.000000 0.000000 1.000000</color>
42
+ </reflective>
43
+ <reflectivity>
44
+ <float sid="reflectivity">1.000000</float>
45
+ </reflectivity>
46
+ <transparent opaque="RGB_ZERO">
47
+ <color sid="transparent">1.000000 1.000000 1.000000 1.000000</color>
48
+ </transparent>
49
+ <transparency>
50
+ <float sid="transparency">0.000000</float>
51
+ </transparency>
52
+ </phong>
53
+ </technique>
54
+ </profile_COMMON>
55
+ </effect>
56
+ </library_effects>
57
+ <library_geometries>
58
+ <geometry id="drc_r_sh_rx-lib" name="drc_r_sh_rxMesh">
59
+ <mesh>
60
+ <source id="drc_r_sh_rx-POSITION">
61
+ <float_array id="drc_r_sh_rx-POSITION-array" count="489">
62
+ -0.266778 0.397505 0.022101
63
+ -0.266707 0.461498 0.022101
64
+ -0.266707 0.461498 0.118501
65
+ -0.266778 0.397505 0.118501
66
+ -0.322498 0.397505 0.022101
67
+ -0.322498 0.397505 0.118501
68
+ -0.322498 0.461427 0.118501
69
+ -0.322498 0.461427 0.022101
70
+ -0.314720 0.461427 0.118501
71
+ -0.314720 0.397505 0.118501
72
+ -0.274556 0.397505 0.118501
73
+ -0.274486 0.461498 0.118501
74
+ -0.314720 0.461427 0.022101
75
+ -0.274486 0.461498 0.022101
76
+ -0.314720 0.397505 0.010301
77
+ -0.314720 0.461427 0.010301
78
+ -0.274486 0.461498 0.010301
79
+ -0.274556 0.397505 0.010301
80
+ -0.314720 0.397505 0.022101
81
+ -0.274556 0.397505 0.022101
82
+ -0.322498 0.397505 0.010301
83
+ -0.322498 0.461427 0.010301
84
+ -0.266707 0.461498 0.010301
85
+ -0.266778 0.397505 0.010301
86
+ -0.314720 0.383080 0.118501
87
+ -0.274486 0.383009 0.118501
88
+ -0.274486 0.383009 0.022101
89
+ -0.314720 0.383080 0.022101
90
+ -0.288981 0.354088 0.118501
91
+ -0.274486 0.354159 0.118501
92
+ -0.274486 0.354159 0.022101
93
+ -0.288981 0.354088 0.022101
94
+ -0.294779 0.340229 0.102101
95
+ -0.267839 0.340300 0.090901
96
+ -0.267839 0.393333 0.090901
97
+ -0.294850 0.393333 0.102101
98
+ -0.256737 0.340229 0.064001
99
+ -0.256666 0.393333 0.064001
100
+ -0.267839 0.340300 0.037001
101
+ -0.267839 0.393333 0.037001
102
+ -0.294779 0.340229 0.025901
103
+ -0.294850 0.393333 0.025901
104
+ -0.321791 0.340229 0.037001
105
+ -0.321720 0.393333 0.037001
106
+ -0.332963 0.340229 0.064001
107
+ -0.332893 0.393333 0.064001
108
+ -0.321791 0.340229 0.090901
109
+ -0.321720 0.393333 0.090901
110
+ -0.262323 0.399838 0.096401
111
+ -0.294850 0.399838 0.109801
112
+ -0.248959 0.399767 0.064001
113
+ -0.262323 0.399838 0.031601
114
+ -0.294850 0.399838 0.018101
115
+ -0.327236 0.399838 0.031601
116
+ -0.340671 0.399838 0.064001
117
+ -0.327236 0.399838 0.096401
118
+ -0.262394 0.461568 0.096401
119
+ -0.294779 0.461568 0.109801
120
+ -0.248959 0.461568 0.064001
121
+ -0.262394 0.461568 0.031601
122
+ -0.294779 0.461568 0.018101
123
+ -0.327236 0.461498 0.031601
124
+ -0.340671 0.461498 0.064001
125
+ -0.327236 0.461498 0.096401
126
+ -0.278706 0.554129 0.005852
127
+ -0.297727 0.546280 0.005852
128
+ -0.297727 0.546280 0.059219
129
+ -0.278706 0.554129 0.059219
130
+ -0.305647 0.527188 0.005852
131
+ -0.305647 0.527188 0.059219
132
+ -0.297798 0.508167 0.005852
133
+ -0.297798 0.508167 0.059219
134
+ -0.278777 0.500318 0.005852
135
+ -0.278777 0.500318 0.059219
136
+ -0.259685 0.508237 0.005852
137
+ -0.259685 0.508237 0.059219
138
+ -0.251836 0.527259 0.005852
139
+ -0.251836 0.527259 0.059219
140
+ -0.259685 0.546280 0.005852
141
+ -0.259685 0.546280 0.059219
142
+ -0.278706 0.561983 0.005852
143
+ -0.305017 0.552660 0.005852
144
+ -0.324643 0.539541 0.005852
145
+ -0.324071 0.501166 0.005852
146
+ -0.324278 0.492328 0.005852
147
+ -0.252224 0.507429 0.005852
148
+ -0.246179 0.527259 0.005852
149
+ -0.253894 0.551781 0.005852
150
+ -0.278706 0.561983 -0.007252
151
+ -0.305017 0.552660 -0.007252
152
+ -0.324643 0.539541 -0.007252
153
+ -0.324071 0.501166 -0.007252
154
+ -0.324278 0.492328 -0.007252
155
+ -0.252224 0.507429 -0.007252
156
+ -0.246179 0.527259 -0.007252
157
+ -0.253894 0.551781 -0.007252
158
+ -0.324208 0.467508 0.005852
159
+ -0.265376 0.491155 0.005852
160
+ -0.324278 0.471256 -0.007252
161
+ -0.265376 0.491155 -0.007252
162
+ -0.324754 0.460296 0.011510
163
+ -0.265545 0.459801 0.011510
164
+ -0.324754 0.460296 -0.007252
165
+ -0.265545 0.459801 -0.007252
166
+ -0.324683 0.437451 0.011510
167
+ -0.265545 0.437451 0.011510
168
+ -0.324683 0.437451 0.000805
169
+ -0.265545 0.437451 0.000805
170
+ -0.277716 0.499823 0.130675
171
+ -0.259167 0.508237 0.130675
172
+ -0.251318 0.527259 0.130675
173
+ -0.278188 0.555144 0.130675
174
+ -0.259167 0.546280 0.130675
175
+ -0.324630 0.491305 0.130675
176
+ -0.300429 0.544782 0.130675
177
+ -0.278188 0.555144 0.123079
178
+ -0.300429 0.544782 0.123079
179
+ -0.259167 0.546280 0.123079
180
+ -0.251318 0.527259 0.123079
181
+ -0.259167 0.508237 0.123079
182
+ -0.277716 0.499823 0.123079
183
+ -0.324630 0.491305 0.123079
184
+ -0.324630 0.469205 0.136983
185
+ -0.277716 0.471539 0.136983
186
+ -0.277716 0.471539 0.130675
187
+ -0.277716 0.471539 0.123079
188
+ -0.324630 0.469205 0.123079
189
+ -0.324630 0.469205 0.130675
190
+ -0.324630 0.461639 0.136983
191
+ -0.272201 0.464043 0.136983
192
+ -0.272201 0.464043 0.130675
193
+ -0.272201 0.464043 0.121265
194
+ -0.324630 0.461639 0.121265
195
+ -0.324630 0.461639 0.130675
196
+ -0.324630 0.460720 0.136983
197
+ -0.265978 0.460791 0.136983
198
+ -0.265978 0.460791 0.130675
199
+ -0.265978 0.460791 0.117236
200
+ -0.324630 0.460720 0.117237
201
+ -0.324630 0.460720 0.130675
202
+ -0.324630 0.436820 0.128797
203
+ -0.265978 0.436890 0.128797
204
+ -0.265978 0.436890 0.122488
205
+ -0.265978 0.436890 0.117236
206
+ -0.324630 0.436820 0.117237
207
+ -0.324630 0.436820 0.122488
208
+ -0.324630 0.452952 0.136983
209
+ -0.265978 0.453023 0.136983
210
+ -0.265978 0.453023 0.130675
211
+ -0.265978 0.453023 0.117236
212
+ -0.324630 0.452952 0.117237
213
+ -0.324630 0.452952 0.130675
214
+ -0.307897 0.528279 0.130675
215
+ -0.308026 0.527995 0.123079
216
+ -0.277416 0.499959 0.130675
217
+ -0.277716 0.499823 0.137003
218
+ -0.324630 0.491305 0.137003
219
+ -0.307897 0.528279 0.137022
220
+ -0.265485 0.468381 0.006234
221
+ -0.324733 0.453556 0.011510
222
+ -0.265545 0.453207 0.011510
223
+ -0.324733 0.453556 -0.007252
224
+ -0.265545 0.453207 -0.007252
225
+ </float_array>
226
+ <technique_common>
227
+ <accessor source="#drc_r_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_r_sh_rx-Normal0">
235
+ <float_array id="drc_r_sh_rx-Normal0-array" count="2790">
236
+ 0.999999 -0.001109 0.000000
237
+ 0.999999 -0.001109 0.000000
238
+ 0.999999 -0.001109 0.000000
239
+ 0.999999 -0.001109 0.000000
240
+ 0.999999 -0.001109 0.000000
241
+ 0.999999 -0.001109 0.000000
242
+ -1.000000 0.000000 0.000000
243
+ -1.000000 0.000000 0.000000
244
+ -1.000000 0.000000 0.000000
245
+ -1.000000 0.000000 0.000000
246
+ -1.000000 0.000000 0.000000
247
+ -1.000000 0.000000 0.000000
248
+ -0.000000 0.000000 1.000000
249
+ -0.000000 0.000000 1.000000
250
+ -0.000000 0.000000 1.000000
251
+ 0.000000 0.000000 1.000000
252
+ 0.000000 0.000000 1.000000
253
+ 0.000000 0.000000 1.000000
254
+ -0.001764 0.999998 0.000000
255
+ -0.001764 0.999999 0.000000
256
+ -0.001764 0.999999 0.000000
257
+ -0.001764 0.999998 0.000000
258
+ -0.001764 0.999999 0.000000
259
+ -0.001764 0.999999 0.000000
260
+ 0.000000 -0.000000 -1.000000
261
+ 0.000000 -0.000000 -1.000000
262
+ 0.000000 -0.000000 -1.000000
263
+ 0.000000 -0.000000 -1.000000
264
+ 0.000000 -0.000000 -1.000000
265
+ 0.000000 -0.000000 -1.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
+ 0.000000 0.000000 1.000000
279
+ 0.000000 0.000000 1.000000
280
+ 0.000000 0.000000 1.000000
281
+ 0.000000 0.000000 1.000000
282
+ 0.000000 0.000000 1.000000
283
+ 0.000000 0.000000 1.000000
284
+ 0.000000 0.000000 1.000000
285
+ 0.000000 0.000000 1.000000
286
+ 0.000000 0.000000 1.000000
287
+ 0.000000 0.000000 1.000000
288
+ 0.000000 0.000000 1.000000
289
+ 0.000000 0.000000 1.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
+ 0.000000 -0.000000 -1.000000
303
+ 0.000000 -0.000000 -1.000000
304
+ 0.000000 -0.000000 -1.000000
305
+ 0.000000 -0.000000 -1.000000
306
+ 0.000000 -0.000000 -1.000000
307
+ 0.000000 -0.000000 -1.000000
308
+ 0.000000 -0.000000 -1.000000
309
+ 0.000000 -0.000000 -1.000000
310
+ 0.000000 -0.000000 -1.000000
311
+ 0.000000 -0.000000 -1.000000
312
+ 0.000000 -0.000000 -1.000000
313
+ 0.000000 -0.000000 -1.000000
314
+ 0.000000 0.000000 1.000000
315
+ 0.000000 0.000000 1.000000
316
+ 0.000000 0.000000 1.000000
317
+ 0.000000 0.000000 1.000000
318
+ 0.000000 0.000000 1.000000
319
+ 0.000000 0.000000 1.000000
320
+ 0.000000 0.000000 -1.000000
321
+ 0.000000 0.000000 -1.000000
322
+ 0.000000 0.000000 -1.000000
323
+ 0.000000 0.000000 -1.000000
324
+ 0.000000 0.000000 -1.000000
325
+ 0.000000 0.000000 -1.000000
326
+ -1.000000 0.000000 0.000000
327
+ -1.000000 0.000000 0.000000
328
+ -1.000000 0.000000 0.000000
329
+ -1.000000 0.000000 0.000000
330
+ -1.000000 0.000000 0.000000
331
+ -1.000000 0.000000 0.000000
332
+ 0.999988 0.004829 0.000000
333
+ 0.999988 0.004829 0.000000
334
+ 0.999988 0.004829 0.000000
335
+ 0.999988 0.004829 0.000000
336
+ 0.999988 0.004829 0.000000
337
+ 0.999988 0.004829 0.000000
338
+ 0.000000 0.000000 1.000000
339
+ 0.000000 0.000000 1.000000
340
+ 0.000000 0.000000 1.000000
341
+ 0.000000 0.000000 1.000000
342
+ 0.000000 0.000000 1.000000
343
+ 0.000000 0.000000 1.000000
344
+ 0.000000 -0.000000 -1.000000
345
+ 0.000000 -0.000000 -1.000000
346
+ 0.000000 -0.000000 -1.000000
347
+ -0.000000 -0.000000 -1.000000
348
+ -0.000000 -0.000000 -1.000000
349
+ -0.000000 -0.000000 -1.000000
350
+ -0.747814 -0.663908 0.000000
351
+ -0.747815 -0.663908 0.000000
352
+ -0.747815 -0.663908 0.000000
353
+ -0.747814 -0.663908 0.000000
354
+ -0.747815 -0.663908 0.000000
355
+ -0.747815 -0.663908 0.000000
356
+ 1.000000 0.000000 0.000000
357
+ 1.000000 0.000000 0.000000
358
+ 1.000000 0.000000 0.000000
359
+ 1.000000 0.000000 0.000000
360
+ 1.000000 0.000000 0.000000
361
+ 1.000000 0.000000 0.000000
362
+ 0.004897 -0.999988 0.000000
363
+ 0.004897 -0.999988 0.000000
364
+ 0.004897 -0.999988 0.000000
365
+ 0.004897 -0.999988 0.000000
366
+ 0.004897 -0.999988 0.000000
367
+ 0.004897 -0.999988 0.000000
368
+ 0.999999 -0.001109 0.000000
369
+ 0.999999 -0.001109 0.000000
370
+ 0.999999 -0.001109 0.000000
371
+ 0.999999 -0.001109 0.000000
372
+ 0.999999 -0.001109 0.000000
373
+ 0.999999 -0.001109 0.000000
374
+ 0.000000 -1.000000 0.000000
375
+ 0.000000 -1.000000 0.000000
376
+ 0.000000 -1.000000 0.000000
377
+ 0.000000 -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
+ -1.000000 0.000000 0.000000
393
+ -1.000000 0.000000 0.000000
394
+ -1.000000 0.000000 0.000000
395
+ -1.000000 0.000000 0.000000
396
+ -1.000000 0.000000 0.000000
397
+ -1.000000 0.000000 0.000000
398
+ 0.000000 1.000000 0.000000
399
+ 0.000000 1.000000 0.000000
400
+ 0.000000 1.000000 0.000000
401
+ 0.000000 1.000000 0.000000
402
+ 0.000000 1.000000 0.000000
403
+ 0.000000 1.000000 0.000000
404
+ -0.001764 0.999998 0.000000
405
+ -0.001764 0.999998 0.000000
406
+ -0.001764 0.999998 0.000000
407
+ -0.001764 0.999998 0.000000
408
+ -0.001764 0.999998 0.000000
409
+ -0.001764 0.999998 0.000000
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.383024 0.000512 0.923738
417
+ 0.383024 0.000512 0.923738
418
+ 0.383024 0.000512 0.923738
419
+ 0.383885 0.000000 0.923381
420
+ 0.383885 0.000000 0.923381
421
+ 0.383885 0.000000 0.923381
422
+ 0.923507 0.000000 0.383582
423
+ 0.923507 0.000000 0.383582
424
+ 0.923507 0.000000 0.383582
425
+ 0.924367 -0.001236 0.381503
426
+ 0.924367 -0.001236 0.381503
427
+ 0.924367 -0.001236 0.381503
428
+ 0.924009 -0.001235 -0.382369
429
+ 0.924009 -0.001235 -0.382369
430
+ 0.924009 -0.001235 -0.382369
431
+ 0.924866 -0.000000 -0.380292
432
+ 0.924866 -0.000000 -0.380292
433
+ 0.924866 -0.000000 -0.380292
434
+ 0.380101 -0.000000 -0.924945
435
+ 0.380101 -0.000000 -0.924945
436
+ 0.380101 -0.000000 -0.924945
437
+ 0.380956 0.000509 -0.924593
438
+ 0.380956 0.000509 -0.924593
439
+ 0.380956 0.000509 -0.924593
440
+ -0.381805 -0.000510 -0.924243
441
+ -0.381805 -0.000510 -0.924243
442
+ -0.381805 -0.000510 -0.924243
443
+ -0.380088 0.000508 -0.924950
444
+ -0.380088 0.000508 -0.924950
445
+ -0.380088 0.000508 -0.924950
446
+ -0.924009 0.001235 -0.382369
447
+ -0.924009 0.001235 -0.382369
448
+ -0.924009 0.001235 -0.382369
449
+ -0.924021 0.001218 -0.382339
450
+ -0.924021 0.001218 -0.382339
451
+ -0.924021 0.001218 -0.382339
452
+ -0.923506 0.001217 0.383582
453
+ -0.923506 0.001217 0.383582
454
+ -0.923506 0.001217 0.383582
455
+ -0.923519 0.001235 0.383552
456
+ -0.923518 0.001235 0.383552
457
+ -0.923519 0.001235 0.383552
458
+ -0.384737 0.000514 0.923026
459
+ -0.384737 0.000514 0.923026
460
+ -0.384737 0.000514 0.923026
461
+ -0.383012 -0.000512 0.923743
462
+ -0.383012 -0.000512 0.923743
463
+ -0.383012 -0.000512 0.923743
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.000000 -1.000000 0.000000
471
+ 0.000000 -1.000000 0.000000
472
+ 0.000000 -1.000000 0.000000
473
+ 0.004477 -0.999980 -0.004470
474
+ 0.004477 -0.999980 -0.004470
475
+ 0.004477 -0.999980 -0.004470
476
+ 0.004505 -0.999980 0.004498
477
+ 0.004505 -0.999980 0.004498
478
+ 0.004505 -0.999980 0.004498
479
+ 0.000000 -1.000000 0.000000
480
+ 0.000000 -1.000000 0.000000
481
+ 0.000000 -1.000000 0.000000
482
+ 0.256934 -0.738249 0.623677
483
+ 0.256934 -0.738249 0.623677
484
+ 0.256934 -0.738249 0.623677
485
+ 0.256906 -0.741702 0.619579
486
+ 0.256906 -0.741702 0.619579
487
+ 0.256906 -0.741702 0.619579
488
+ 0.619016 -0.742156 0.256951
489
+ 0.619016 -0.742156 0.256951
490
+ 0.619016 -0.742156 0.256951
491
+ 0.619297 -0.741826 0.257227
492
+ 0.619297 -0.741826 0.257227
493
+ 0.619297 -0.741826 0.257227
494
+ 0.619323 -0.741856 -0.257077
495
+ 0.619323 -0.741856 -0.257077
496
+ 0.619323 -0.741856 -0.257077
497
+ 0.621264 -0.740227 -0.257089
498
+ 0.621264 -0.740227 -0.257089
499
+ 0.621264 -0.740227 -0.257089
500
+ 0.258918 -0.737419 -0.623838
501
+ 0.258918 -0.737419 -0.623838
502
+ 0.258918 -0.737419 -0.623838
503
+ 0.254531 -0.742685 -0.619381
504
+ 0.254531 -0.742685 -0.619381
505
+ 0.254531 -0.742685 -0.619381
506
+ -0.257945 -0.741990 -0.618802
507
+ -0.257945 -0.741990 -0.618802
508
+ -0.257945 -0.741990 -0.618802
509
+ -0.257984 -0.737181 -0.624507
510
+ -0.257984 -0.737181 -0.624507
511
+ -0.257984 -0.737181 -0.624507
512
+ -0.620981 -0.740323 -0.257497
513
+ -0.620981 -0.740323 -0.257496
514
+ -0.620981 -0.740323 -0.257496
515
+ -0.620064 -0.741405 -0.256592
516
+ -0.620064 -0.741405 -0.256592
517
+ -0.620064 -0.741405 -0.256592
518
+ -0.619980 -0.741305 0.257082
519
+ -0.619980 -0.741305 0.257082
520
+ -0.619980 -0.741305 0.257082
521
+ -0.618930 -0.742185 0.257075
522
+ -0.618930 -0.742185 0.257075
523
+ -0.618930 -0.742185 0.257075
524
+ -0.256481 -0.741596 0.619881
525
+ -0.256481 -0.741596 0.619881
526
+ -0.256481 -0.741596 0.619881
527
+ -0.259759 -0.737672 0.623190
528
+ -0.259759 -0.737672 0.623190
529
+ -0.259759 -0.737672 0.623190
530
+ 0.382335 -0.000440 0.924024
531
+ 0.382335 -0.000440 0.924024
532
+ 0.382335 -0.000440 0.924024
533
+ 0.380909 0.000438 0.924613
534
+ 0.380909 0.000438 0.924613
535
+ 0.380909 0.000438 0.924613
536
+ 0.923733 0.001063 0.383036
537
+ 0.923733 0.001063 0.383036
538
+ 0.923733 0.001063 0.383036
539
+ 0.924449 0.000000 0.381306
540
+ 0.924449 0.000000 0.381306
541
+ 0.924449 0.000000 0.381306
542
+ 0.923733 -0.000000 -0.383036
543
+ 0.923733 -0.000000 -0.383036
544
+ 0.923733 -0.000000 -0.383036
545
+ 0.924449 0.001064 -0.381304
546
+ 0.924449 0.001064 -0.381304
547
+ 0.924449 0.001064 -0.381304
548
+ 0.384767 0.000443 -0.923014
549
+ 0.384767 0.000443 -0.923013
550
+ 0.384767 0.000443 -0.923014
551
+ 0.383335 -0.000441 -0.923609
552
+ 0.383335 -0.000441 -0.923609
553
+ 0.383335 -0.000441 -0.923609
554
+ -0.384041 0.000442 -0.923316
555
+ -0.384041 0.000442 -0.923316
556
+ -0.384041 0.000442 -0.923316
557
+ -0.384757 0.000000 -0.923018
558
+ -0.384757 0.000000 -0.923018
559
+ -0.384757 0.000000 -0.923018
560
+ -0.923733 0.000000 -0.383036
561
+ -0.923733 0.000000 -0.383036
562
+ -0.923733 0.000000 -0.383036
563
+ -0.923733 -0.000000 -0.383036
564
+ -0.923733 -0.000000 -0.383036
565
+ -0.923733 -0.000000 -0.383036
566
+ -0.923733 0.000000 0.383036
567
+ -0.923733 0.000000 0.383036
568
+ -0.923733 0.000000 0.383036
569
+ -0.923733 0.000000 0.383036
570
+ -0.923733 0.000000 0.383036
571
+ -0.923733 0.000000 0.383036
572
+ -0.381611 0.000000 0.924323
573
+ -0.381611 0.000000 0.924323
574
+ -0.381611 0.000000 0.924323
575
+ -0.382325 0.000440 0.924028
576
+ -0.382325 0.000440 0.924028
577
+ -0.382325 0.000440 0.924028
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.001525 0.999999 0.000000
585
+ -0.001525 0.999999 0.000000
586
+ -0.001525 0.999999 0.000000
587
+ -0.002606 0.999996 -0.001081
588
+ -0.002606 0.999996 -0.001081
589
+ -0.002606 0.999996 -0.001081
590
+ -0.002602 0.999996 0.001079
591
+ -0.002602 0.999996 0.001079
592
+ -0.002602 0.999996 0.001079
593
+ 0.000000 1.000000 0.000000
594
+ 0.000000 1.000000 0.000000
595
+ 0.000000 1.000000 0.000000
596
+ -0.381448 0.924390 0.000000
597
+ -0.381448 0.924390 0.000000
598
+ -0.381448 0.924390 0.000000
599
+ -0.381448 0.924390 0.000000
600
+ -0.381448 0.924390 0.000000
601
+ -0.381448 0.924390 0.000000
602
+ -0.923677 0.383172 0.000000
603
+ -0.923677 0.383172 0.000000
604
+ -0.923677 0.383172 0.000000
605
+ -0.923677 0.383172 0.000000
606
+ -0.923677 0.383172 0.000000
607
+ -0.923677 0.383172 0.000000
608
+ -0.924390 -0.381448 0.000000
609
+ -0.924390 -0.381448 0.000000
610
+ -0.924390 -0.381448 0.000000
611
+ -0.924390 -0.381448 0.000000
612
+ -0.924390 -0.381448 0.000000
613
+ -0.924390 -0.381448 0.000000
614
+ -0.381450 -0.924389 0.000000
615
+ -0.381450 -0.924389 0.000000
616
+ -0.381450 -0.924389 0.000000
617
+ -0.381450 -0.924389 0.000000
618
+ -0.381450 -0.924389 0.000000
619
+ -0.381450 -0.924389 0.000000
620
+ 0.383131 -0.923694 0.000000
621
+ 0.383132 -0.923694 0.000000
622
+ 0.383131 -0.923694 0.000000
623
+ 0.383131 -0.923694 0.000000
624
+ 0.383131 -0.923694 0.000000
625
+ 0.383131 -0.923694 0.000000
626
+ 0.924397 -0.381432 0.000000
627
+ 0.924397 -0.381432 0.000000
628
+ 0.924397 -0.381432 0.000000
629
+ 0.924397 -0.381432 0.000000
630
+ 0.924397 -0.381432 0.000000
631
+ 0.924397 -0.381432 0.000000
632
+ 0.924390 0.381449 0.000000
633
+ 0.924390 0.381448 0.000000
634
+ 0.924390 0.381449 0.000000
635
+ 0.924390 0.381449 0.000000
636
+ 0.924390 0.381449 0.000000
637
+ 0.924390 0.381449 0.000000
638
+ 0.381448 0.924390 0.000000
639
+ 0.381448 0.924390 0.000000
640
+ 0.381448 0.924390 0.000000
641
+ 0.381448 0.924390 0.000000
642
+ 0.381448 0.924390 0.000000
643
+ 0.381448 0.924390 0.000000
644
+ 0.000000 0.000000 1.000000
645
+ 0.000000 0.000000 1.000000
646
+ 0.000000 0.000000 1.000000
647
+ 0.000000 0.000000 1.000000
648
+ 0.000000 0.000000 1.000000
649
+ 0.000000 0.000000 1.000000
650
+ -0.000000 0.000000 1.000000
651
+ -0.000000 0.000000 1.000000
652
+ -0.000000 0.000000 1.000000
653
+ 0.000000 0.000000 1.000000
654
+ 0.000000 0.000000 1.000000
655
+ 0.000000 0.000000 1.000000
656
+ -0.000000 -0.000000 1.000000
657
+ -0.000000 -0.000000 1.000000
658
+ -0.000000 -0.000000 1.000000
659
+ 0.000000 -0.000000 1.000000
660
+ 0.000000 -0.000000 1.000000
661
+ 0.000000 -0.000000 1.000000
662
+ -0.000000 0.000000 1.000000
663
+ -0.000000 0.000000 1.000000
664
+ -0.000000 0.000000 1.000000
665
+ 0.000000 0.000000 1.000000
666
+ 0.000000 0.000000 1.000000
667
+ 0.000000 0.000000 1.000000
668
+ -0.000000 0.000000 1.000000
669
+ -0.000000 0.000000 1.000000
670
+ -0.000000 0.000000 1.000000
671
+ -0.000000 0.000000 1.000000
672
+ -0.000000 0.000000 1.000000
673
+ -0.000000 0.000000 1.000000
674
+ 0.000000 0.000000 1.000000
675
+ 0.000000 0.000000 1.000000
676
+ 0.000000 0.000000 1.000000
677
+ -0.000000 0.000000 1.000000
678
+ -0.000000 0.000000 1.000000
679
+ -0.000000 0.000000 1.000000
680
+ 0.000000 0.000000 1.000000
681
+ 0.000000 0.000000 1.000000
682
+ 0.000000 0.000000 1.000000
683
+ 0.000000 0.000000 1.000000
684
+ 0.000000 0.000000 1.000000
685
+ 0.000000 0.000000 1.000000
686
+ 0.000000 0.000000 1.000000
687
+ 0.000000 0.000000 1.000000
688
+ 0.000000 0.000000 1.000000
689
+ 0.000000 -0.000000 -1.000000
690
+ 0.000000 -0.000000 -1.000000
691
+ 0.000000 -0.000000 -1.000000
692
+ 0.000000 0.000000 1.000000
693
+ 0.000000 0.000000 1.000000
694
+ 0.000000 0.000000 1.000000
695
+ 0.000000 0.000000 1.000000
696
+ 0.000000 0.000000 1.000000
697
+ 0.000000 0.000000 1.000000
698
+ 0.000000 0.000000 1.000000
699
+ 0.000000 0.000000 1.000000
700
+ 0.000000 0.000000 1.000000
701
+ 0.000000 0.000000 1.000000
702
+ 0.000000 0.000000 1.000000
703
+ 0.000000 0.000000 1.000000
704
+ 0.000000 0.000000 1.000000
705
+ 0.000000 0.000000 1.000000
706
+ 0.000000 0.000000 1.000000
707
+ 0.000000 0.000000 1.000000
708
+ 0.000000 0.000000 1.000000
709
+ 0.000000 0.000000 1.000000
710
+ -0.333991 0.942576 0.000000
711
+ -0.333991 0.942576 0.000000
712
+ -0.333991 0.942576 0.000000
713
+ -0.333991 0.942576 0.000000
714
+ -0.333991 0.942576 0.000000
715
+ -0.333991 0.942576 0.000000
716
+ -0.555726 0.831366 0.000000
717
+ -0.555726 0.831366 0.000000
718
+ -0.555726 0.831366 0.000000
719
+ -0.555726 0.831366 0.000000
720
+ -0.555726 0.831366 0.000000
721
+ -0.555726 0.831366 0.000000
722
+ -0.999889 -0.014904 0.000000
723
+ -0.999889 -0.014904 0.000000
724
+ -0.999889 -0.014904 0.000000
725
+ -0.999889 -0.014904 0.000000
726
+ -0.999889 -0.014904 0.000000
727
+ -0.999889 -0.014904 0.000000
728
+ -0.999726 0.023416 0.000000
729
+ -0.999726 0.023416 0.000000
730
+ -0.999726 0.023416 0.000000
731
+ -0.999726 0.023416 0.000000
732
+ -0.999726 0.023416 0.000000
733
+ -0.999726 0.023416 0.000000
734
+ 0.956542 -0.291594 0.000000
735
+ 0.956542 -0.291594 0.000000
736
+ 0.956542 -0.291594 0.000000
737
+ 0.956542 -0.291594 0.000000
738
+ 0.956542 -0.291594 0.000000
739
+ 0.956542 -0.291594 0.000000
740
+ 0.953904 0.300113 0.000000
741
+ 0.953904 0.300113 0.000000
742
+ 0.953904 0.300113 0.000000
743
+ 0.953904 0.300113 0.000000
744
+ 0.953904 0.300113 0.000000
745
+ 0.953904 0.300113 0.000000
746
+ 0.380281 0.924871 0.000000
747
+ 0.380281 0.924871 0.000000
748
+ 0.380281 0.924871 0.000000
749
+ 0.380281 0.924871 0.000000
750
+ 0.380281 0.924871 0.000000
751
+ 0.380281 0.924871 0.000000
752
+ -0.000000 -0.000000 -1.000000
753
+ -0.000000 -0.000000 -1.000000
754
+ -0.000000 -0.000000 -1.000000
755
+ 0.000000 -0.000000 -1.000000
756
+ 0.000000 -0.000000 -1.000000
757
+ 0.000000 -0.000000 -1.000000
758
+ -0.000000 -0.000000 -1.000000
759
+ -0.000000 -0.000000 -1.000000
760
+ -0.000000 -0.000000 -1.000000
761
+ -0.000000 -0.000000 -1.000000
762
+ -0.000000 -0.000000 -1.000000
763
+ -0.000000 -0.000000 -1.000000
764
+ 0.000000 -0.000000 -1.000000
765
+ 0.000000 -0.000000 -1.000000
766
+ 0.000000 -0.000000 -1.000000
767
+ -0.000000 -0.000000 -1.000000
768
+ -0.000000 -0.000000 -1.000000
769
+ -0.000000 -0.000000 -1.000000
770
+ -0.000000 0.000000 1.000000
771
+ -0.000000 0.000000 1.000000
772
+ -0.000000 0.000000 1.000000
773
+ 0.000000 0.000000 1.000000
774
+ 0.000000 0.000000 1.000000
775
+ 0.000000 0.000000 1.000000
776
+ -0.999986 -0.002820 0.004536
777
+ -0.999986 -0.002820 0.004536
778
+ -0.999986 -0.002820 0.004536
779
+ -1.000000 0.000000 0.000000
780
+ -1.000000 0.000000 0.000000
781
+ -1.000000 0.000000 0.000000
782
+ 0.777763 -0.628557 0.000000
783
+ 0.777763 -0.628557 0.000000
784
+ 0.777763 -0.628557 0.000000
785
+ 0.777763 -0.628557 0.000000
786
+ 0.777763 -0.628557 0.000000
787
+ 0.777763 -0.628557 0.000000
788
+ -0.000000 -0.000000 -1.000000
789
+ -0.000000 -0.000000 -1.000000
790
+ -0.000000 -0.000000 -1.000000
791
+ -0.000000 -0.000000 -1.000000
792
+ -0.000000 -0.000000 -1.000000
793
+ -0.000000 -0.000000 -1.000000
794
+ 0.005158 0.616994 0.786951
795
+ 0.005158 0.616994 0.786951
796
+ 0.005158 0.616994 0.786951
797
+ -0.013328 0.523830 0.851718
798
+ -0.013328 0.523830 0.851718
799
+ -0.013328 0.523830 0.851718
800
+ -0.997146 0.075492 0.000000
801
+ -0.997146 0.075492 0.000000
802
+ -0.997146 0.075492 0.000000
803
+ -0.998901 0.043383 0.017745
804
+ -0.998901 0.043383 0.017745
805
+ -0.998901 0.043383 0.017745
806
+ 0.999989 -0.004786 0.000000
807
+ 0.999988 -0.004786 0.000000
808
+ 0.999989 -0.004786 0.000000
809
+ 0.999985 -0.005390 -0.001021
810
+ 0.999985 -0.005390 -0.001021
811
+ 0.999985 -0.005390 -0.001021
812
+ -0.000000 -0.000000 -1.000000
813
+ -0.000000 -0.000000 -1.000000
814
+ -0.000000 -0.000000 -1.000000
815
+ -0.000000 -0.000000 -1.000000
816
+ -0.000000 -0.000000 -1.000000
817
+ -0.000000 -0.000000 -1.000000
818
+ 0.000000 0.000000 1.000000
819
+ 0.000000 0.000000 1.000000
820
+ 0.000000 0.000000 1.000000
821
+ 0.000000 0.000000 1.000000
822
+ 0.000000 0.000000 1.000000
823
+ 0.000000 0.000000 1.000000
824
+ -0.999995 -0.003117 0.000000
825
+ -0.999995 -0.003117 0.000000
826
+ -0.999995 -0.003117 0.000000
827
+ -0.999995 -0.003117 0.000000
828
+ -0.999995 -0.003117 0.000000
829
+ -0.999995 -0.003117 0.000000
830
+ 1.000000 0.000000 0.000000
831
+ 1.000000 0.000000 0.000000
832
+ 1.000000 0.000000 0.000000
833
+ 1.000000 0.000000 0.000000
834
+ 1.000000 0.000000 0.000000
835
+ 1.000000 0.000000 0.000000
836
+ 0.000000 0.000000 -1.000000
837
+ 0.000000 0.000000 -1.000000
838
+ 0.000000 0.000000 -1.000000
839
+ 0.000000 0.000000 -1.000000
840
+ 0.000000 0.000000 -1.000000
841
+ 0.000000 0.000000 -1.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
+ -0.000000 0.000001 1.000000
849
+ -0.000000 0.000001 1.000000
850
+ -0.000000 0.000001 1.000000
851
+ -0.000000 0.000001 1.000000
852
+ -0.000000 0.000001 1.000000
853
+ -0.000000 0.000001 1.000000
854
+ 0.000000 0.000000 1.000000
855
+ 0.000000 0.000000 1.000000
856
+ 0.000000 0.000000 1.000000
857
+ 0.000000 0.000000 1.000000
858
+ 0.000000 0.000000 1.000000
859
+ 0.000000 0.000000 1.000000
860
+ -0.422313 0.906450 0.000000
861
+ -0.422313 0.906450 0.000000
862
+ -0.422313 0.906450 0.000000
863
+ -0.422313 0.906450 0.000000
864
+ -0.422313 0.906450 0.000000
865
+ -0.422313 0.906450 0.000000
866
+ 0.422397 0.906411 0.000000
867
+ 0.422397 0.906411 0.000000
868
+ 0.422397 0.906411 0.000000
869
+ 0.422397 0.906411 0.000000
870
+ 0.422397 0.906411 0.000000
871
+ 0.422397 0.906411 0.000000
872
+ 0.924391 0.381447 0.000000
873
+ 0.924391 0.381447 0.000000
874
+ 0.924391 0.381447 0.000000
875
+ 0.924391 0.381447 0.000000
876
+ 0.924391 0.381447 0.000000
877
+ 0.924391 0.381447 0.000000
878
+ 0.924397 -0.381431 0.000000
879
+ 0.924397 -0.381431 0.000000
880
+ 0.924397 -0.381431 0.000000
881
+ 0.924397 -0.381431 0.000000
882
+ 0.924397 -0.381431 0.000000
883
+ 0.924397 -0.381431 0.000000
884
+ 0.413096 -0.910688 0.000000
885
+ 0.413096 -0.910688 0.000000
886
+ 0.413096 -0.910688 0.000000
887
+ 0.412835 -0.910806 -0.000769
888
+ 0.412835 -0.910806 -0.000769
889
+ 0.412835 -0.910806 -0.000769
890
+ 0.413100 -0.910686 0.000000
891
+ 0.413100 -0.910686 0.000000
892
+ 0.413100 -0.910686 0.000000
893
+ -0.911046 0.412304 0.000054
894
+ -0.911046 0.412304 0.000054
895
+ -0.911046 0.412304 0.000054
896
+ -0.911051 0.412295 0.000000
897
+ -0.911051 0.412295 0.000000
898
+ -0.911051 0.412295 0.000000
899
+ 0.000000 0.000000 -1.000000
900
+ 0.000000 0.000000 -1.000000
901
+ 0.000000 0.000000 -1.000000
902
+ 0.000000 0.000000 -1.000000
903
+ 0.000000 0.000000 -1.000000
904
+ 0.000000 0.000000 -1.000000
905
+ 0.000000 0.000000 -1.000000
906
+ 0.000000 0.000000 -1.000000
907
+ 0.000000 0.000000 -1.000000
908
+ 0.000000 0.000000 -1.000000
909
+ 0.000000 0.000000 -1.000000
910
+ 0.000000 0.000000 -1.000000
911
+ 0.000128 -0.000707 1.000000
912
+ 0.000128 -0.000707 1.000000
913
+ 0.000128 -0.000707 1.000000
914
+ 0.000045 -0.000905 1.000000
915
+ 0.000045 -0.000905 1.000000
916
+ 0.000045 -0.000905 1.000000
917
+ 1.000000 0.000000 0.000000
918
+ 1.000000 0.000000 0.000000
919
+ 1.000000 0.000000 0.000000
920
+ 1.000000 0.000000 0.000000
921
+ 1.000000 0.000000 0.000000
922
+ 1.000000 0.000000 0.000000
923
+ -1.000000 0.000000 0.000000
924
+ -1.000000 0.000000 0.000000
925
+ -1.000000 0.000000 0.000000
926
+ -1.000000 0.000000 0.000000
927
+ -1.000000 0.000000 0.000000
928
+ -1.000000 0.000000 0.000000
929
+ 0.000000 0.000000 -1.000000
930
+ 0.000000 0.000000 -1.000000
931
+ 0.000000 0.000000 -1.000000
932
+ 0.000000 0.000000 -1.000000
933
+ 0.000000 0.000000 -1.000000
934
+ 0.000000 0.000000 -1.000000
935
+ 0.000000 0.000000 1.000000
936
+ 0.000000 0.000000 1.000000
937
+ 0.000000 0.000000 1.000000
938
+ 0.000000 0.000000 1.000000
939
+ 0.000000 0.000000 1.000000
940
+ 0.000000 0.000000 1.000000
941
+ 0.805484 0.592617 0.000000
942
+ 0.805485 0.592617 0.000000
943
+ 0.805485 0.592617 0.000000
944
+ 0.805485 0.592617 0.000000
945
+ 0.805485 0.592617 0.000000
946
+ 0.805485 0.592617 0.000000
947
+ -1.000000 0.000000 0.000000
948
+ -1.000000 0.000000 0.000000
949
+ -1.000000 0.000000 0.000000
950
+ -1.000000 0.000000 0.000000
951
+ -1.000000 0.000000 0.000000
952
+ -1.000000 0.000000 0.000000
953
+ -0.011599 0.233134 -0.972376
954
+ -0.011599 0.233134 -0.972376
955
+ -0.011599 0.233134 -0.972376
956
+ -0.010451 0.227924 -0.973623
957
+ -0.010451 0.227924 -0.973623
958
+ -0.010451 0.227924 -0.973623
959
+ 0.000000 0.000000 1.000000
960
+ 0.000000 0.000000 1.000000
961
+ 0.000000 0.000000 1.000000
962
+ 0.000000 0.000000 1.000000
963
+ 0.000000 0.000000 1.000000
964
+ 0.000000 0.000000 1.000000
965
+ 0.463150 0.886280 0.000000
966
+ 0.463150 0.886280 0.000000
967
+ 0.463150 0.886280 0.000000
968
+ 0.463150 0.886280 0.000000
969
+ 0.463150 0.886280 0.000000
970
+ 0.463150 0.886280 0.000000
971
+ -1.000000 0.000000 0.000000
972
+ -1.000000 0.000000 0.000000
973
+ -1.000000 0.000000 0.000000
974
+ -1.000000 0.000000 0.000000
975
+ -1.000000 0.000000 0.000000
976
+ -1.000000 0.000000 0.000000
977
+ -0.044659 0.973975 -0.222212
978
+ -0.044659 0.973975 -0.222212
979
+ -0.044659 0.973975 -0.222212
980
+ -0.000952 0.777429 -0.628970
981
+ -0.000952 0.777429 -0.628970
982
+ -0.000952 0.777429 -0.628970
983
+ 0.000000 0.000000 1.000000
984
+ 0.000000 0.000000 1.000000
985
+ 0.000000 0.000000 1.000000
986
+ 0.000000 0.000000 1.000000
987
+ 0.000000 0.000000 1.000000
988
+ 0.000000 0.000000 1.000000
989
+ 1.000000 0.000000 0.000000
990
+ 1.000000 0.000000 0.000000
991
+ 1.000000 0.000000 0.000000
992
+ 1.000000 0.000000 0.000000
993
+ 1.000000 0.000000 0.000000
994
+ 1.000000 0.000000 0.000000
995
+ -1.000000 0.000000 0.000000
996
+ -1.000000 0.000000 0.000000
997
+ -1.000000 0.000000 0.000000
998
+ -1.000000 0.000000 0.000000
999
+ -1.000000 0.000000 0.000000
1000
+ -1.000000 0.000000 0.000000
1001
+ -0.000017 0.000000 -1.000000
1002
+ -0.000017 0.000000 -1.000000
1003
+ -0.000017 0.000000 -1.000000
1004
+ -0.000017 0.000000 -1.000000
1005
+ -0.000017 0.000000 -1.000000
1006
+ -0.000017 0.000000 -1.000000
1007
+ 0.001194 -0.999999 0.000000
1008
+ 0.001194 -0.999999 0.000000
1009
+ 0.001194 -0.999999 0.000000
1010
+ 0.001194 -0.999999 0.000000
1011
+ 0.001194 -0.999999 0.000000
1012
+ 0.001194 -0.999999 0.000000
1013
+ 1.000000 0.000000 0.000000
1014
+ 1.000000 0.000000 0.000000
1015
+ 1.000000 0.000000 0.000000
1016
+ 1.000000 0.000000 0.000000
1017
+ 1.000000 0.000000 0.000000
1018
+ 1.000000 0.000000 0.000000
1019
+ 0.805485 0.592617 0.000000
1020
+ 0.805485 0.592617 0.000000
1021
+ 0.805485 0.592617 0.000000
1022
+ 0.805485 0.592617 0.000000
1023
+ 0.805485 0.592617 0.000000
1024
+ 0.805485 0.592617 0.000000
1025
+ 0.463150 0.886280 0.000000
1026
+ 0.463150 0.886280 0.000000
1027
+ 0.463150 0.886280 0.000000
1028
+ 0.463150 0.886280 0.000000
1029
+ 0.463150 0.886280 0.000000
1030
+ 0.463150 0.886280 0.000000
1031
+ 1.000000 0.000000 0.000000
1032
+ 1.000000 0.000000 0.000000
1033
+ 1.000000 0.000000 0.000000
1034
+ 1.000000 0.000000 0.000000
1035
+ 1.000000 0.000000 0.000000
1036
+ 1.000000 0.000000 0.000000
1037
+ 0.001194 -0.999999 0.000000
1038
+ 0.001194 -0.999999 0.000000
1039
+ 0.001194 -0.999999 0.000000
1040
+ 0.001194 -0.999999 0.000000
1041
+ 0.001194 -0.999999 0.000000
1042
+ 0.001194 -0.999999 0.000000
1043
+ -1.000000 0.000000 0.000000
1044
+ -1.000000 0.000000 0.000000
1045
+ -1.000000 0.000000 0.000000
1046
+ -1.000000 0.000000 0.000000
1047
+ -1.000000 0.000000 0.000000
1048
+ -1.000000 0.000000 0.000000
1049
+ -1.000000 0.000000 0.000000
1050
+ -1.000000 0.000000 0.000000
1051
+ -1.000000 0.000000 0.000000
1052
+ -1.000000 0.000000 0.000000
1053
+ -1.000000 0.000000 0.000000
1054
+ -1.000000 0.000000 0.000000
1055
+ -1.000000 0.000000 0.000000
1056
+ -1.000000 0.000000 0.000000
1057
+ -1.000000 0.000000 0.000000
1058
+ -1.000000 0.000000 0.000000
1059
+ -1.000000 0.000000 0.000000
1060
+ -1.000000 0.000000 0.000000
1061
+ -1.000000 0.000000 0.000000
1062
+ -1.000000 0.000000 0.000000
1063
+ -1.000000 0.000000 0.000000
1064
+ -1.000000 0.000000 0.000000
1065
+ -1.000000 0.000000 0.000000
1066
+ -1.000000 0.000000 0.000000
1067
+ 0.000540 -0.452491 0.891769
1068
+ 0.000540 -0.452491 0.891769
1069
+ 0.000540 -0.452491 0.891769
1070
+ 0.000548 -0.452513 0.891758
1071
+ 0.000548 -0.452513 0.891758
1072
+ 0.000548 -0.452513 0.891758
1073
+ 1.000000 0.000000 0.000000
1074
+ 1.000000 0.000000 0.000000
1075
+ 1.000000 0.000000 0.000000
1076
+ 1.000000 0.000000 0.000000
1077
+ 1.000000 0.000000 0.000000
1078
+ 1.000000 0.000000 0.000000
1079
+ -1.000000 0.000000 0.000000
1080
+ -1.000000 0.000000 0.000000
1081
+ -1.000000 0.000000 0.000000
1082
+ -1.000000 0.000000 0.000000
1083
+ -1.000000 0.000000 0.000000
1084
+ -1.000000 0.000000 0.000000
1085
+ -0.000017 0.000000 -1.000000
1086
+ -0.000017 0.000000 -1.000000
1087
+ -0.000017 0.000000 -1.000000
1088
+ -0.000017 0.000000 -1.000000
1089
+ -0.000017 0.000000 -1.000000
1090
+ -0.000017 0.000000 -1.000000
1091
+ 1.000000 0.000000 0.000000
1092
+ 1.000000 0.000000 0.000000
1093
+ 1.000000 0.000000 0.000000
1094
+ 1.000000 0.000000 0.000000
1095
+ 1.000000 0.000000 0.000000
1096
+ 1.000000 0.000000 0.000000
1097
+ -1.000000 0.000000 0.000000
1098
+ -1.000000 0.000000 0.000000
1099
+ -1.000000 0.000000 0.000000
1100
+ -1.000000 0.000000 0.000000
1101
+ -1.000000 0.000000 0.000000
1102
+ -1.000000 0.000000 0.000000
1103
+ 0.000000 0.000000 1.000000
1104
+ 0.000000 0.000000 1.000000
1105
+ 0.000000 0.000000 1.000000
1106
+ -0.000000 0.000000 1.000000
1107
+ -0.000000 0.000000 1.000000
1108
+ -0.000000 0.000000 1.000000
1109
+ -0.911058 0.412277 0.000000
1110
+ -0.911058 0.412277 0.000000
1111
+ -0.911059 0.412277 0.000000
1112
+ -0.911049 0.412298 0.000054
1113
+ -0.911049 0.412298 0.000054
1114
+ -0.911049 0.412298 0.000054
1115
+ 0.000000 0.000000 -1.000000
1116
+ 0.000000 0.000000 -1.000000
1117
+ 0.000000 0.000000 -1.000000
1118
+ 0.000000 0.000000 -1.000000
1119
+ 0.000000 0.000000 -1.000000
1120
+ 0.000000 0.000000 -1.000000
1121
+ -0.911046 0.412304 0.000000
1122
+ -0.911046 0.412304 0.000000
1123
+ -0.911046 0.412304 0.000000
1124
+ -0.911046 0.412304 0.000000
1125
+ -0.911046 0.412304 0.000000
1126
+ -0.911046 0.412304 0.000000
1127
+ 0.686008 0.727594 0.000000
1128
+ 0.686008 0.727594 0.000000
1129
+ 0.686008 0.727594 0.000000
1130
+ 0.686008 0.727594 0.000000
1131
+ 0.686008 0.727594 0.000000
1132
+ 0.686008 0.727594 0.000000
1133
+ 0.000102 -0.000559 1.000000
1134
+ 0.000102 -0.000559 1.000000
1135
+ 0.000102 -0.000559 1.000000
1136
+ -0.006754 0.016803 0.999836
1137
+ -0.006754 0.016803 0.999836
1138
+ -0.006754 0.016803 0.999836
1139
+ 0.999976 -0.006995 0.000000
1140
+ 0.999976 -0.006995 0.000000
1141
+ 0.999975 -0.006995 0.000000
1142
+ 0.000000 0.000000 1.000000
1143
+ 0.000000 0.000000 1.000000
1144
+ 0.000000 0.000000 1.000000
1145
+ 0.000000 0.000000 1.000000
1146
+ 0.000000 0.000000 1.000000
1147
+ 0.000000 0.000000 1.000000
1148
+ -0.999995 -0.003103 0.000000
1149
+ -0.999995 -0.003103 0.000000
1150
+ -0.999995 -0.003103 0.000000
1151
+ -0.999995 -0.003103 0.000000
1152
+ -0.999995 -0.003103 0.000000
1153
+ -0.999995 -0.003103 0.000000
1154
+ 1.000000 0.000000 0.000000
1155
+ 1.000000 0.000000 0.000000
1156
+ 1.000000 0.000000 0.000000
1157
+ 1.000000 0.000000 0.000000
1158
+ 1.000000 0.000000 0.000000
1159
+ 1.000000 0.000000 0.000000
1160
+ 0.000000 -0.447414 -0.894327
1161
+ 0.000000 -0.447414 -0.894327
1162
+ 0.000000 -0.447414 -0.894327
1163
+ -0.002685 -0.455286 -0.890341
1164
+ -0.002685 -0.455286 -0.890341
1165
+ -0.002685 -0.455286 -0.890341
1166
+ </float_array>
1167
+ <technique_common>
1168
+ <accessor source="#drc_r_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_r_sh_rx-UV0">
1176
+ <float_array id="drc_r_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_r_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_r_sh_rx-VERTEX">
1516
+ <input semantic="POSITION" source="#drc_r_sh_rx-POSITION"/>
1517
+ </vertices>
1518
+ <triangles count="310" material="drc_extremities_diffuse"><input semantic="VERTEX" offset="0" source="#drc_r_sh_rx-VERTEX"/><input semantic="NORMAL" offset="1" source="#drc_r_sh_rx-Normal0"/><input semantic="TEXCOORD" offset="2" set="0" source="#drc_r_sh_rx-UV0"/><p> 2 0 320 3 1 321 0 2 305 0 3 305 1 4 322 2 5 320 6 6 313 7 7 302 4 8 301 4 9 301 5 10 315 6 11 313 10 12 66 11 13 64 8 14 65 8 15 65 9 16 71 10 17 66 11 18 306 13 19 304 12 20 303 12 21 303 8 22 309 11 23 306 16 24 284 17 25 281 14 26 282 14 27 282 15 28 283 16 29 284 18 30 317 9 31 318 5 32 315 5 33 315 4 34 301 18 35 317 10 36 323 19 37 324 0 38 305 0 39 305 3 40 321 10 41 323 9 42 71 8 43 65 6 44 69 6 45 69 5 46 70 9 47 71 11 48 64 10 49 66 3 50 67 3 51 67 2 52 68 11 53 64 8 54 309 12 55 303 7 56 302 7 57 302 6 58 313 8 59 309 13 60 304 11 61 306 2 62 307 2 63 307 1 64 308 13 65 304 15 66 283 14 67 282 20 68 287 20 69 287 21 70 288 15 71 283 17 72 281 16 73 284 22 74 285 22 75 285 23 76 286 17 77 281 24 78 73 25 79 72 10 80 66 10 81 66 9 82 71 24 83 73 26 84 40 27 85 37 18 86 38 18 87 38 19 88 39 26 89 40 27 90 298 24 91 297 9 92 299 9 93 299 18 94 300 27 95 298 25 96 292 26 97 289 19 98 290 19 99 290 10 100 291 25 101 292 28 102 74 29 103 75 25 104 72 25 105 72 24 106 73 28 107 74 30 108 41 31 109 42 27 110 37 27 111 37 26 112 40 30 113 41 31 114 296 28 115 295 24 116 297 24 117 297 27 118 298 31 119 296 29 120 294 30 121 293 26 122 289 26 123 289 25 124 292 29 125 294 29 126 294 28 127 295 31 128 296 31 129 296 30 130 293 29 131 294 23 132 325 22 133 326 1 134 322 1 135 322 0 136 305 23 137 325 17 138 327 23 139 325 0 140 305 0 141 305 19 142 324 17 143 327 14 144 328 17 145 327 19 146 324 19 147 324 18 148 329 14 149 328 20 150 316 14 151 319 18 152 317 18 153 317 4 154 301 20 155 316 21 156 314 20 157 316 4 158 301 4 159 301 7 160 302 21 161 314 15 162 312 21 163 314 7 164 302 7 165 302 12 166 303 15 167 312 16 168 311 15 169 312 12 170 303 12 171 303 13 172 304 16 173 311 22 174 310 16 175 311 13 176 304 13 177 304 1 178 308 22 179 310 34 180 29 35 181 27 32 182 28 32 183 28 33 184 30 34 185 29 37 186 31 34 187 29 33 188 30 33 189 30 36 190 32 37 191 31 39 192 33 37 193 31 36 194 32 36 195 32 38 196 34 39 197 33 41 198 35 39 199 33 38 200 34 38 201 34 40 202 36 41 203 35 43 204 19 41 205 20 40 206 21 40 207 21 42 208 22 43 209 19 45 210 23 43 211 19 42 212 22 42 213 22 44 214 24 45 215 23 47 216 25 45 217 23 44 218 24 44 219 24 46 220 26 47 221 25 35 222 27 47 223 25 46 224 26 46 225 26 32 226 28 35 227 27 40 228 13 32 229 17 44 230 11 44 231 11 42 232 12 40 233 13 36 234 15 32 235 17 40 236 13 40 237 13 38 238 14 36 239 15 36 240 15 33 241 18 32 242 17 46 243 16 44 244 11 32 245 17 48 246 155 49 247 151 35 248 152 35 249 152 34 250 156 48 251 155 50 252 159 48 253 155 34 254 156 34 255 156 37 256 160 50 257 159 51 258 157 50 259 159 37 260 160 37 261 160 39 262 158 51 263 157 52 264 153 51 265 157 39 266 158 39 267 158 41 268 154 52 269 153 53 270 149 52 271 153 41 272 154 41 273 154 43 274 150 53 275 149 54 276 146 53 277 149 43 278 150 43 279 150 45 280 147 54 281 146 55 282 145 54 283 146 45 284 147 45 285 147 47 286 148 55 287 145 49 288 151 55 289 145 47 290 148 47 291 148 35 292 152 49 293 151 56 294 171 57 295 169 49 296 170 49 297 170 48 298 172 56 299 171 58 300 173 56 301 171 48 302 172 48 303 172 50 304 174 58 305 173 59 306 175 58 307 173 50 308 174 50 309 174 51 310 176 59 311 175 60 312 177 59 313 175 51 314 176 51 315 176 52 316 178 60 317 177 61 318 161 60 319 162 52 320 163 52 321 163 53 322 164 61 323 161 62 324 165 61 325 161 53 326 164 53 327 164 54 328 166 62 329 165 63 330 167 62 331 165 54 332 166 54 333 166 55 334 168 63 335 167 57 336 169 63 337 167 55 338 168 55 339 168 49 340 170 57 341 169 60 342 137 57 343 141 58 344 142 58 345 142 59 346 143 60 347 137 62 348 139 57 349 141 60 350 137 60 351 137 61 352 138 62 353 139 62 354 139 63 355 140 57 356 141 56 357 144 58 358 142 57 359 141 66 360 193 67 361 195 64 362 196 64 363 196 65 364 194 66 365 193 69 366 191 66 367 193 65 368 194 65 369 194 68 370 192 69 371 191 71 372 188 69 373 191 68 374 192 68 375 192 70 376 189 71 377 188 73 378 187 71 379 188 70 380 189 70 381 189 72 382 190 73 383 187 75 384 201 73 385 203 72 386 204 72 387 204 74 388 202 75 389 201 77 390 199 75 391 201 74 392 202 74 393 202 76 394 200 77 395 199 79 396 197 77 397 199 76 398 200 76 399 200 78 400 198 79 401 197 67 402 195 79 403 197 78 404 198 78 405 198 64 406 196 67 407 195 73 408 181 67 409 185 69 410 179 69 411 179 71 412 180 73 413 181 77 414 183 67 415 185 73 416 181 73 417 181 75 418 182 77 419 183 77 420 183 79 421 186 67 422 185 66 423 184 69 424 179 67 425 185 80 426 226 81 427 228 65 428 229 65 429 229 64 430 227 80 431 226 81 432 228 82 433 222 68 434 223 68 435 223 65 436 229 81 437 228 82 438 222 83 439 216 70 440 217 70 441 217 68 442 223 82 443 222 83 444 216 84 445 207 72 446 211 72 447 211 70 448 217 83 449 216 84 450 207 85 451 206 74 452 210 74 453 210 72 454 211 84 455 207 85 456 206 86 457 214 76 458 215 76 459 215 74 460 210 85 461 206 86 462 214 87 463 220 78 464 221 78 465 221 76 466 215 86 467 214 87 468 220 80 469 226 64 470 227 64 471 227 78 472 221 87 473 220 88 474 262 89 475 260 81 476 261 81 477 261 80 478 263 88 479 262 89 480 260 90 481 256 82 482 257 82 483 257 81 484 261 89 485 260 90 486 256 91 487 252 83 488 253 83 489 253 82 490 257 90 491 256 91 492 252 92 493 248 84 494 247 84 495 247 83 496 253 91 497 252 93 498 268 94 499 266 86 500 267 86 501 267 85 502 269 93 503 268 94 504 266 95 505 264 87 506 265 87 507 265 86 508 267 94 509 266 95 510 264 88 511 262 80 512 263 80 513 263 87 514 265 95 515 264 93 516 232 91 517 234 95 518 230 95 519 230 94 520 231 93 521 232 93 522 232 92 523 233 91 524 234 89 525 236 95 526 230 91 527 234 91 528 234 90 529 235 89 530 236 88 531 239 95 532 230 89 533 236 96 534 208 97 535 205 85 536 206 85 537 206 84 538 207 96 539 208 98 540 249 96 541 246 84 542 247 84 543 247 92 544 248 98 545 249 97 546 271 99 547 270 93 548 268 93 549 268 85 550 269 97 551 271 99 552 238 98 553 237 92 554 233 92 555 233 93 556 232 99 557 238 96 558 208 100 559 212 101 560 213 101 561 213 158 562 209 96 563 208 102 564 251 100 565 250 96 566 246 96 567 246 98 568 249 102 569 251 99 570 270 97 571 271 158 572 272 158 573 272 103 574 273 99 575 270 103 576 241 102 577 240 98 578 237 98 579 237 99 580 238 103 581 241 100 582 212 159 583 218 160 584 219 160 585 219 101 586 213 100 587 212 102 588 251 161 589 254 159 590 255 159 591 255 100 592 250 102 593 251 101 594 274 160 595 275 162 596 276 162 597 276 103 598 273 101 599 274 103 600 241 162 601 242 161 602 243 161 603 243 102 604 240 103 605 241 105 606 278 104 607 279 106 608 280 106 609 280 107 610 277 105 611 278 154 612 56 109 613 57 110 614 58 110 615 58 108 616 59 154 617 56 108 618 59 110 619 58 111 620 61 110 621 58 112 622 60 111 623 61 116 624 107 114 625 106 111 626 108 111 627 108 115 628 109 116 629 107 115 630 109 111 631 108 112 632 110 112 633 110 117 634 111 115 635 109 117 636 111 112 637 110 110 638 112 110 639 112 118 640 113 117 641 111 118 642 113 110 643 112 109 644 114 109 645 114 119 646 115 118 647 113 108 648 117 120 649 118 119 650 115 119 651 115 154 652 116 108 653 117 119 654 115 109 655 114 154 656 116 113 657 0 152 658 104 153 659 105 153 660 105 121 661 102 113 662 0 118 663 131 120 664 121 115 665 127 115 666 127 117 667 130 118 668 131 118 669 131 119 670 134 120 671 121 120 672 121 121 673 120 153 674 123 123 675 43 155 676 44 156 677 45 156 678 45 122 679 46 123 680 43 125 681 79 120 682 80 108 683 81 108 684 81 124 685 1 125 686 79 127 687 2 113 688 0 121 689 102 121 690 102 126 691 100 127 692 2 126 693 119 121 694 120 120 695 121 120 696 121 125 697 122 126 698 119 129 699 48 123 700 43 122 701 46 122 702 46 128 703 49 129 704 48 131 705 85 125 706 79 124 707 1 124 708 1 130 709 3 131 710 85 133 711 4 127 712 2 126 713 100 126 714 100 132 715 98 133 716 4 132 717 124 126 718 119 125 719 122 125 720 122 131 721 125 132 722 124 135 723 50 129 724 48 128 725 49 128 726 49 134 727 51 135 728 50 137 729 87 131 730 85 130 731 3 130 732 3 136 733 5 137 734 87 139 735 6 133 736 4 132 737 98 132 738 98 138 739 96 139 740 6 138 741 128 132 742 124 131 743 125 131 744 125 137 745 129 138 746 128 146 747 53 147 748 52 135 749 50 135 750 50 134 751 51 146 752 53 149 753 89 137 754 87 136 755 5 136 756 5 148 757 9 149 758 89 151 759 10 139 760 6 138 761 96 138 762 96 150 763 95 151 764 10 149 765 133 150 766 132 138 767 128 138 768 128 137 769 129 149 770 133 145 771 8 144 772 93 143 773 91 143 774 91 142 775 7 145 776 8 123 777 77 124 778 1 108 779 81 108 780 81 155 781 76 123 782 77 129 783 78 130 784 3 124 785 1 124 786 1 123 787 77 129 788 78 135 789 84 136 790 5 130 791 3 130 792 3 129 793 78 135 794 84 147 795 86 148 796 9 136 797 5 136 798 5 135 799 84 147 800 86 140 801 90 145 802 8 142 803 7 142 804 7 141 805 88 140 806 90 140 807 90 146 808 92 151 809 10 151 810 10 145 811 8 140 812 90 128 813 97 133 814 4 139 815 6 139 816 6 134 817 94 128 818 97 122 819 99 127 820 2 133 821 4 133 822 4 128 823 97 122 824 99 156 825 101 113 826 0 127 827 2 127 828 2 122 829 99 156 830 101 140 831 54 141 832 55 147 833 52 147 834 52 146 835 53 140 836 54 142 837 7 143 838 91 149 839 89 149 840 89 148 841 9 142 842 7 144 843 93 145 844 8 151 845 10 151 846 10 150 847 95 144 848 93 143 849 135 144 850 136 150 851 132 150 852 132 149 853 133 143 854 135 141 855 88 142 856 7 148 857 9 148 858 9 147 859 86 141 860 88 139 861 6 151 862 10 146 863 92 146 864 92 134 865 94 139 866 6 111 867 61 114 868 62 152 869 63 152 870 63 108 871 59 111 872 61 152 873 104 114 874 106 116 875 107 116 876 107 153 877 105 152 878 104 116 879 126 115 880 127 120 881 121 120 882 121 153 883 123 116 884 126 152 885 104 113 886 0 156 887 101 156 888 101 157 889 103 152 890 104 108 891 81 152 892 82 157 893 83 157 894 83 155 895 76 108 896 81 155 897 44 157 898 47 156 899 45 158 900 209 97 901 205 96 902 208 158 903 272 101 904 274 103 905 273 104 906 224 105 907 225 160 908 219 160 909 219 159 910 218 104 911 224 106 912 258 104 913 259 159 914 255 159 915 255 161 916 254 106 917 258 105 918 278 107 919 277 162 920 276 162 921 276 160 922 275 105 923 278 107 924 244 106 925 245 161 926 243 161 927 243 162 928 242 107 929 244</p></triangles>
1519
+ </mesh>
1520
+ </geometry>
1521
+ </library_geometries>
1522
+ <library_visual_scenes>
1523
+ <visual_scene id="r_sh_rx" name="r_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="r_sh_rx_node" id="r_sh_rx_node" sid="r_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_r_sh_rx" id="drc_r_sh_rx" sid="drc_r_sh_rx"><matrix sid="matrix">0.000000 0.000000 1.010853 -0.063898 0.000000 1.010853 0.000000 -0.531171 -1.010853 0.000000 0.000000 -0.282782 0.000000 0.000000 0.000000 1.000000</matrix><instance_geometry url="#drc_r_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="#r_sh_rx"></instance_visual_scene>
1530
+ </scene>
1531
+ </COLLADA>