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,1204 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <COLLADA xmlns="http://www.collada.org/2005/11/COLLADASchema" version="1.4.1">
3
+ <asset>
4
+ <contributor>
5
+ <author></author>
6
+ <authoring_tool>FBX COLLADA exporter</authoring_tool>
7
+ <comments></comments>
8
+ </contributor>
9
+ <created>2013-04-12T18:24:27Z</created>
10
+ <keywords></keywords>
11
+ <modified>2013-04-12T18:24:27Z</modified>
12
+ <revision></revision>
13
+ <subject></subject>
14
+ <title></title>
15
+ <unit meter="1.000000" name="centimeter"></unit>
16
+ <up_axis>Z_UP</up_axis>
17
+ </asset>
18
+ <library_images>
19
+ <image id="drc_extremities_diffuse-image" name="drc_extremities_diffuse">
20
+ <init_from>../materials/textures/drc_extremities_diffuse.jpg</init_from>
21
+ </image>
22
+ </library_images>
23
+ <library_materials>
24
+ <material id="drc_extremities_diffuse" name="drc_extremities_diffuse">
25
+ <instance_effect url="#drc_extremities_diffuse-fx"/>
26
+ </material>
27
+ </library_materials>
28
+ <library_effects>
29
+ <effect id="drc_extremities_diffuse-fx" name="drc_extremities_diffuse">
30
+ <profile_COMMON>
31
+ <technique sid="standard">
32
+ <phong>
33
+ <emission>
34
+ <color sid="emission">0.000000 0.000000 0.000000 1.000000</color>
35
+ </emission>
36
+ <ambient>
37
+ <color sid="ambient">0.588235 0.588235 0.588235 1.000000</color>
38
+ </ambient>
39
+ <diffuse>
40
+ <texture texture="drc_extremities_diffuse-image" texcoord="CHANNEL0">
41
+ <extra>
42
+ <technique profile="MAYA">
43
+ <wrapU sid="wrapU0">TRUE</wrapU>
44
+ <wrapV sid="wrapV0">TRUE</wrapV>
45
+ <blend_mode>ADD</blend_mode>
46
+ </technique>
47
+ </extra>
48
+ </texture>
49
+ </diffuse>
50
+ <specular>
51
+ <color sid="specular">0.000000 0.000000 0.000000 1.000000</color>
52
+ </specular>
53
+ <shininess>
54
+ <float sid="shininess">2.000000</float>
55
+ </shininess>
56
+ <reflective>
57
+ <color sid="reflective">0.000000 0.000000 0.000000 1.000000</color>
58
+ </reflective>
59
+ <reflectivity>
60
+ <float sid="reflectivity">1.000000</float>
61
+ </reflectivity>
62
+ <transparent opaque="RGB_ZERO">
63
+ <color sid="transparent">1.000000 1.000000 1.000000 1.000000</color>
64
+ </transparent>
65
+ <transparency>
66
+ <float sid="transparency">0.000000</float>
67
+ </transparency>
68
+ </phong>
69
+ </technique>
70
+ </profile_COMMON>
71
+ </effect>
72
+ </library_effects>
73
+ <library_geometries>
74
+ <geometry id="drc_l_farm-lib" name="drc_l_farmMesh">
75
+ <mesh>
76
+ <source id="drc_l_farm-POSITION">
77
+ <float_array id="drc_l_farm-POSITION-array" count="366">
78
+ -0.029735 0.475186 -0.320542
79
+ -0.029806 0.458818 -0.320542
80
+ -0.029806 0.458818 -0.274750
81
+ -0.029735 0.475186 -0.274750
82
+ -0.145529 0.475186 -0.320542
83
+ -0.145529 0.475186 -0.274750
84
+ -0.145529 0.458746 -0.274750
85
+ -0.145529 0.458746 -0.320542
86
+ -0.041314 0.475186 -0.274750
87
+ -0.041314 0.475186 -0.320542
88
+ -0.041386 0.458818 -0.274750
89
+ -0.041386 0.458818 -0.320542
90
+ -0.088204 0.506923 -0.274750
91
+ -0.088204 0.506923 -0.320542
92
+ -0.041314 0.506923 -0.320542
93
+ -0.041314 0.506923 -0.274750
94
+ -0.088204 0.458746 -0.274750
95
+ -0.088204 0.475186 -0.274750
96
+ -0.088204 0.458746 -0.320542
97
+ -0.088204 0.475186 -0.320542
98
+ -0.145529 0.488624 -0.320542
99
+ -0.145529 0.488624 -0.274750
100
+ -0.088275 0.488696 -0.320542
101
+ -0.041386 0.488696 -0.274750
102
+ -0.041386 0.488696 -0.320542
103
+ -0.088275 0.488696 -0.274750
104
+ -0.108575 0.460676 -0.274649
105
+ -0.085130 0.460676 -0.274649
106
+ -0.085202 0.399134 -0.274649
107
+ -0.108504 0.399134 -0.274649
108
+ -0.074695 0.460676 -0.284757
109
+ -0.074623 0.399134 -0.284757
110
+ -0.074695 0.460676 -0.312152
111
+ -0.074695 0.399062 -0.312152
112
+ -0.082843 0.460676 -0.320946
113
+ -0.082772 0.399134 -0.320946
114
+ -0.111005 0.460676 -0.320946
115
+ -0.111005 0.399062 -0.320946
116
+ -0.120298 0.460676 -0.312960
117
+ -0.120298 0.399062 -0.312960
118
+ -0.120298 0.460676 -0.283848
119
+ -0.120226 0.399134 -0.283848
120
+ -0.159539 0.429583 -0.277782
121
+ -0.159539 0.443021 -0.277783
122
+ -0.032165 0.443021 -0.277782
123
+ -0.032165 0.429583 -0.277782
124
+ -0.159539 0.451170 -0.285768
125
+ -0.032165 0.451170 -0.285768
126
+ -0.159539 0.451170 -0.310939
127
+ -0.032165 0.451170 -0.310938
128
+ -0.159539 0.443450 -0.318823
129
+ -0.032165 0.443450 -0.318823
130
+ -0.159539 0.429297 -0.318823
131
+ -0.032165 0.429297 -0.318823
132
+ -0.159539 0.422007 -0.311545
133
+ -0.032165 0.422007 -0.311545
134
+ -0.159611 0.422078 -0.285162
135
+ -0.032094 0.422078 -0.285162
136
+ -0.041314 0.521075 -0.250489
137
+ -0.041386 0.493842 -0.261710
138
+ -0.087275 0.493842 -0.261710
139
+ -0.087346 0.521075 -0.250490
140
+ -0.041386 0.482549 -0.289003
141
+ -0.087275 0.482549 -0.289003
142
+ -0.041386 0.493842 -0.316195
143
+ -0.087275 0.493842 -0.316195
144
+ -0.041314 0.521075 -0.327516
145
+ -0.087346 0.521075 -0.327516
146
+ -0.041386 0.548308 -0.316195
147
+ -0.087275 0.548308 -0.316195
148
+ -0.041386 0.559602 -0.289003
149
+ -0.087275 0.559602 -0.289003
150
+ -0.041386 0.548308 -0.261710
151
+ -0.087275 0.548308 -0.261710
152
+ -0.093851 0.488267 -0.256251
153
+ -0.093922 0.521075 -0.242605
154
+ -0.093851 0.474686 -0.289003
155
+ -0.093851 0.488267 -0.321755
156
+ -0.093922 0.521075 -0.335300
157
+ -0.093851 0.553884 -0.321755
158
+ -0.093851 0.567465 -0.289003
159
+ -0.093851 0.553884 -0.256251
160
+ -0.145815 0.488338 -0.256251
161
+ -0.145815 0.521075 -0.242605
162
+ -0.145815 0.474758 -0.289003
163
+ -0.145815 0.488338 -0.321755
164
+ -0.145815 0.521075 -0.335300
165
+ -0.145815 0.553812 -0.321755
166
+ -0.145815 0.567393 -0.289003
167
+ -0.145815 0.553812 -0.256251
168
+ -0.041314 0.521075 -0.265450
169
+ -0.041386 0.504421 -0.272324
170
+ -0.041386 0.497559 -0.289003
171
+ -0.041386 0.504421 -0.305581
172
+ -0.041314 0.521075 -0.312455
173
+ -0.041386 0.537730 -0.305581
174
+ -0.041386 0.544592 -0.289003
175
+ -0.041386 0.537730 -0.272324
176
+ -0.029878 0.521075 -0.265450
177
+ -0.029878 0.504492 -0.272324
178
+ -0.029878 0.497630 -0.289003
179
+ -0.029878 0.504492 -0.305581
180
+ -0.029878 0.521075 -0.312455
181
+ -0.029878 0.537658 -0.305581
182
+ -0.029949 0.544592 -0.289003
183
+ -0.029878 0.537658 -0.272324
184
+ -0.145815 0.492055 -0.259890
185
+ -0.145815 0.521075 -0.247861
186
+ -0.145744 0.479975 -0.289003
187
+ -0.145815 0.492055 -0.318014
188
+ -0.145815 0.521075 -0.330044
189
+ -0.145815 0.550095 -0.318014
190
+ -0.145744 0.562175 -0.289003
191
+ -0.145815 0.550095 -0.259890
192
+ -0.099498 0.492055 -0.259890
193
+ -0.099498 0.521075 -0.247861
194
+ -0.099569 0.479975 -0.289003
195
+ -0.099498 0.492055 -0.318014
196
+ -0.099498 0.521075 -0.330044
197
+ -0.099569 0.550167 -0.318014
198
+ -0.099569 0.562175 -0.289003
199
+ -0.099569 0.550167 -0.259890
200
+ </float_array>
201
+ <technique_common>
202
+ <accessor source="#drc_l_farm-POSITION-array" count="122" stride="3">
203
+ <param name="X" type="float"/>
204
+ <param name="Y" type="float"/>
205
+ <param name="Z" type="float"/>
206
+ </accessor>
207
+ </technique_common>
208
+ </source>
209
+ <source id="drc_l_farm-Normal0">
210
+ <float_array id="drc_l_farm-Normal0-array" count="1998">
211
+ 0.999990 -0.004367 0.000000
212
+ 0.999990 -0.004367 0.000000
213
+ 0.999990 -0.004367 0.000000
214
+ 0.999990 -0.004367 0.000000
215
+ 0.999990 -0.004367 0.000000
216
+ 0.999990 -0.004367 0.000000
217
+ -1.000000 -0.000001 -0.000000
218
+ -1.000000 -0.000001 -0.000000
219
+ -1.000000 -0.000001 -0.000000
220
+ -1.000000 -0.000001 -0.000000
221
+ -1.000000 -0.000001 -0.000000
222
+ -1.000000 -0.000001 -0.000000
223
+ 0.000000 1.000000 0.000000
224
+ 0.000000 1.000000 0.000000
225
+ 0.000000 1.000000 0.000000
226
+ 0.000000 1.000000 0.000000
227
+ 0.000000 1.000000 0.000000
228
+ 0.000000 1.000000 0.000000
229
+ 0.000000 0.000000 1.000000
230
+ 0.000000 0.000000 1.000000
231
+ 0.000000 0.000000 1.000000
232
+ 0.000000 0.000000 1.000000
233
+ 0.000000 0.000000 1.000000
234
+ 0.000000 0.000000 1.000000
235
+ 0.000003 -1.000000 0.000000
236
+ 0.000003 -1.000000 0.000000
237
+ 0.000003 -1.000000 0.000000
238
+ 0.000003 -1.000000 0.000000
239
+ 0.000003 -1.000000 0.000000
240
+ 0.000003 -1.000000 0.000000
241
+ 0.000000 0.000000 -1.000000
242
+ 0.000000 0.000000 -1.000000
243
+ 0.000000 0.000000 -1.000000
244
+ 0.000000 0.000000 -1.000000
245
+ 0.000000 0.000000 -1.000000
246
+ 0.000000 0.000000 -1.000000
247
+ -0.000001 1.000000 -0.000000
248
+ -0.000001 1.000000 -0.000000
249
+ -0.000001 1.000000 -0.000000
250
+ -0.000001 1.000000 -0.000000
251
+ -0.000001 1.000000 -0.000000
252
+ -0.000001 1.000000 -0.000000
253
+ 0.000000 0.000000 1.000000
254
+ 0.000000 0.000000 1.000000
255
+ 0.000000 0.000000 1.000000
256
+ 0.000000 0.000000 1.000000
257
+ 0.000000 0.000000 1.000000
258
+ 0.000000 0.000000 1.000000
259
+ 0.001526 -0.999999 0.000000
260
+ 0.001526 -0.999999 0.000000
261
+ 0.001526 -0.999999 0.000000
262
+ 0.001526 -0.999999 0.000000
263
+ 0.001526 -0.999999 0.000000
264
+ 0.001526 -0.999999 0.000000
265
+ 0.000000 0.000000 -1.000000
266
+ 0.000000 0.000000 -1.000000
267
+ 0.000000 0.000000 -1.000000
268
+ 0.000000 0.000000 -1.000000
269
+ 0.000000 0.000000 -1.000000
270
+ 0.000000 0.000000 -1.000000
271
+ -1.000000 0.000001 -0.000000
272
+ -1.000000 0.000001 -0.000000
273
+ -1.000000 0.000001 -0.000000
274
+ -1.000000 0.000001 -0.000000
275
+ -1.000000 0.000001 -0.000000
276
+ -1.000000 0.000001 -0.000000
277
+ 0.000001 0.000000 -1.000000
278
+ 0.000001 0.000000 -1.000000
279
+ 0.000001 0.000000 -1.000000
280
+ 0.000001 0.000000 -1.000000
281
+ 0.000001 0.000000 -1.000000
282
+ 0.000001 0.000000 -1.000000
283
+ 0.999986 0.005291 0.000000
284
+ 0.999986 0.005291 0.000000
285
+ 0.999986 0.005291 0.000000
286
+ 0.999986 0.005291 0.000000
287
+ 0.999986 0.005291 0.000000
288
+ 0.999986 0.005291 0.000000
289
+ 0.000000 0.000000 1.000000
290
+ 0.000000 0.000000 1.000000
291
+ 0.000000 0.000000 1.000000
292
+ 0.000000 0.000000 1.000000
293
+ 0.000000 0.000000 1.000000
294
+ 0.000000 0.000000 1.000000
295
+ -0.001249 0.999999 -0.000000
296
+ -0.001249 0.999999 -0.000000
297
+ -0.001249 0.999999 -0.000000
298
+ -0.001249 0.999999 -0.000000
299
+ -0.001249 0.999999 -0.000000
300
+ -0.001249 0.999999 -0.000000
301
+ -0.000001 -0.000000 1.000000
302
+ -0.000001 -0.000000 1.000000
303
+ -0.000001 -0.000000 1.000000
304
+ -0.000001 -0.000000 1.000000
305
+ -0.000001 -0.000000 1.000000
306
+ -0.000001 -0.000000 1.000000
307
+ 0.000000 -1.000000 0.000000
308
+ 0.000000 -1.000000 0.000000
309
+ 0.000000 -1.000000 0.000000
310
+ 0.000000 -1.000000 0.000000
311
+ 0.000000 -1.000000 0.000000
312
+ 0.000000 -1.000000 0.000000
313
+ 0.000001 0.000000 -1.000000
314
+ 0.000001 0.000000 -1.000000
315
+ 0.000001 0.000000 -1.000000
316
+ 0.000001 0.000000 -1.000000
317
+ 0.000001 0.000000 -1.000000
318
+ 0.000001 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.000001 -0.000000 1.000000
326
+ -0.000001 -0.000000 1.000000
327
+ -0.000001 -0.000000 1.000000
328
+ -0.000001 -0.000000 1.000000
329
+ -0.000001 -0.000000 1.000000
330
+ -0.000001 -0.000000 1.000000
331
+ 0.999992 -0.003922 0.000000
332
+ 0.999992 -0.003922 0.000000
333
+ 0.999992 -0.003922 0.000000
334
+ 0.999992 -0.003922 0.000000
335
+ 0.999992 -0.003922 0.000000
336
+ 0.999992 -0.003922 0.000000
337
+ -0.000000 0.000001 1.000000
338
+ -0.000000 0.000001 1.000000
339
+ -0.000000 0.000001 1.000000
340
+ -0.000000 0.000001 1.000000
341
+ -0.000000 0.000001 1.000000
342
+ -0.000000 0.000001 1.000000
343
+ -0.999992 0.003923 0.000000
344
+ -0.999992 0.003923 0.000000
345
+ -0.999992 0.003923 0.000000
346
+ -0.999992 0.003923 0.000000
347
+ -0.999992 0.003923 0.000000
348
+ -0.999992 0.003923 0.000000
349
+ 0.000000 -0.000001 -1.000000
350
+ 0.000000 -0.000001 -1.000000
351
+ 0.000000 -0.000001 -1.000000
352
+ 0.000000 -0.000001 -1.000000
353
+ 0.000000 -0.000001 -1.000000
354
+ 0.000000 -0.000001 -1.000000
355
+ 0.000000 0.000000 1.000000
356
+ 0.000000 0.000000 1.000000
357
+ 0.000000 0.000000 1.000000
358
+ 0.000000 0.000000 1.000000
359
+ 0.000000 0.000000 1.000000
360
+ 0.000000 0.000000 1.000000
361
+ 0.693300 0.000000 0.720649
362
+ 0.693300 0.000000 0.720649
363
+ 0.693300 0.000000 0.720649
364
+ 0.693300 0.000000 0.720649
365
+ 0.693300 0.000000 0.720649
366
+ 0.693300 0.000000 0.720649
367
+ 0.999999 0.000580 -0.001305
368
+ 0.999999 0.000580 -0.001305
369
+ 0.999999 0.000580 -0.001305
370
+ 0.999999 0.000580 -0.001305
371
+ 0.999999 0.000580 -0.001305
372
+ 0.999999 0.000580 -0.001305
373
+ 0.735018 0.000427 -0.678047
374
+ 0.735018 0.000427 -0.678047
375
+ 0.735018 0.000427 -0.678047
376
+ 0.735018 0.000427 -0.678047
377
+ 0.735018 0.000427 -0.678047
378
+ 0.735018 0.000427 -0.678047
379
+ 0.000000 0.000000 -1.000000
380
+ 0.000000 0.000000 -1.000000
381
+ 0.000000 0.000000 -1.000000
382
+ 0.000000 0.000000 -1.000000
383
+ 0.000000 0.000000 -1.000000
384
+ 0.000000 0.000000 -1.000000
385
+ -0.651782 -0.000000 -0.758407
386
+ -0.651782 -0.000000 -0.758407
387
+ -0.651782 -0.000000 -0.758407
388
+ -0.651782 -0.000000 -0.758407
389
+ -0.651782 -0.000000 -0.758407
390
+ -0.651782 -0.000000 -0.758407
391
+ -0.999999 -0.000580 0.001228
392
+ -0.999999 -0.000580 0.001228
393
+ -0.999999 -0.000580 0.001228
394
+ -0.999999 -0.000580 0.001228
395
+ -0.999999 -0.000580 0.001228
396
+ -0.999999 -0.000580 0.001228
397
+ -0.617337 -0.000717 0.786699
398
+ -0.617337 -0.000717 0.786699
399
+ -0.617337 -0.000717 0.786699
400
+ -0.617337 -0.000717 0.786699
401
+ -0.617337 -0.000717 0.786699
402
+ -0.617337 -0.000717 0.786699
403
+ -0.000000 0.000001 1.000000
404
+ -0.000000 0.000001 1.000000
405
+ -0.000000 0.000001 1.000000
406
+ -0.000000 0.000001 1.000000
407
+ -0.000000 0.000001 1.000000
408
+ -0.000000 0.000001 1.000000
409
+ -0.000000 0.699938 0.714203
410
+ -0.000000 0.699938 0.714203
411
+ -0.000000 0.699938 0.714203
412
+ -0.000000 0.699938 0.714203
413
+ -0.000000 0.699938 0.714203
414
+ -0.000000 0.699938 0.714203
415
+ -0.000000 1.000000 -0.000000
416
+ -0.000000 1.000000 -0.000000
417
+ -0.000000 1.000000 -0.000000
418
+ -0.000000 1.000000 -0.000000
419
+ -0.000000 1.000000 -0.000000
420
+ -0.000000 1.000000 -0.000000
421
+ -0.000000 0.714546 -0.699589
422
+ -0.000000 0.714546 -0.699589
423
+ -0.000000 0.714546 -0.699589
424
+ -0.000000 0.714546 -0.699589
425
+ -0.000000 0.714546 -0.699589
426
+ -0.000000 0.714546 -0.699589
427
+ 0.000000 -0.000001 -1.000000
428
+ 0.000000 -0.000001 -1.000000
429
+ 0.000000 -0.000001 -1.000000
430
+ 0.000000 -0.000001 -1.000000
431
+ 0.000000 -0.000001 -1.000000
432
+ 0.000000 -0.000001 -1.000000
433
+ -0.000000 -0.706494 -0.707719
434
+ -0.000000 -0.706494 -0.707719
435
+ -0.000000 -0.706494 -0.707719
436
+ -0.000000 -0.706494 -0.707719
437
+ -0.000000 -0.706494 -0.707719
438
+ -0.000000 -0.706494 -0.707719
439
+ 0.000000 -0.999996 0.002709
440
+ 0.000000 -0.999996 0.002709
441
+ 0.000000 -0.999996 0.002709
442
+ 0.000000 -0.999996 0.002709
443
+ 0.000000 -0.999996 0.002709
444
+ 0.000000 -0.999996 0.002709
445
+ 0.000000 -0.701097 0.713066
446
+ 0.000000 -0.701097 0.713066
447
+ 0.000000 -0.701097 0.713066
448
+ 0.000000 -0.701097 0.713066
449
+ 0.000000 -0.701097 0.713066
450
+ 0.000000 -0.701097 0.713066
451
+ 0.000001 1.000000 -0.000000
452
+ 0.000001 1.000000 -0.000000
453
+ 0.000001 1.000000 -0.000000
454
+ 0.000001 1.000000 -0.000000
455
+ 0.000001 1.000000 -0.000000
456
+ 0.000001 1.000000 -0.000000
457
+ 0.000001 1.000000 0.000001
458
+ 0.000001 1.000000 0.000001
459
+ 0.000001 1.000000 0.000001
460
+ -0.000001 1.000000 -0.000001
461
+ -0.000001 1.000000 -0.000001
462
+ -0.000001 1.000000 -0.000001
463
+ -0.000001 1.000000 -0.000001
464
+ -0.000001 1.000000 -0.000001
465
+ -0.000001 1.000000 -0.000001
466
+ 0.000000 1.000000 0.000000
467
+ 0.000000 1.000000 0.000000
468
+ 0.000000 1.000000 0.000000
469
+ -0.999997 0.002472 -0.000555
470
+ -0.999997 0.002472 -0.000555
471
+ -0.999997 0.002472 -0.000555
472
+ -0.999997 0.002472 -0.000555
473
+ -0.999997 0.002472 -0.000555
474
+ -0.999997 0.002472 -0.000555
475
+ -1.000000 0.000002 0.000002
476
+ -1.000000 0.000002 0.000002
477
+ -1.000000 0.000002 0.000002
478
+ -1.000000 0.000001 -0.000001
479
+ -1.000000 0.000001 -0.000001
480
+ -1.000000 0.000001 -0.000001
481
+ -1.000000 0.000001 -0.000001
482
+ -1.000000 0.000001 -0.000001
483
+ -1.000000 0.000001 -0.000001
484
+ -1.000000 0.000001 0.000001
485
+ -1.000000 0.000001 0.000001
486
+ -1.000000 0.000001 0.000001
487
+ 1.000000 -0.000001 0.000000
488
+ 1.000000 -0.000001 0.000000
489
+ 1.000000 -0.000001 0.000000
490
+ 1.000000 -0.000001 0.000000
491
+ 1.000000 -0.000001 0.000000
492
+ 1.000000 -0.000001 0.000000
493
+ 1.000000 0.000000 -0.000000
494
+ 1.000000 0.000000 -0.000000
495
+ 1.000000 0.000000 -0.000000
496
+ 1.000000 0.000000 -0.000000
497
+ 1.000000 0.000000 -0.000000
498
+ 1.000000 0.000000 -0.000000
499
+ 1.000000 0.000000 -0.000002
500
+ 1.000000 0.000000 -0.000002
501
+ 1.000000 0.000000 -0.000002
502
+ 0.999922 0.012222 -0.002742
503
+ 0.999922 0.012222 -0.002742
504
+ 0.999922 0.012222 -0.002742
505
+ -0.000000 -0.380947 0.924597
506
+ -0.000000 -0.380947 0.924597
507
+ -0.000000 -0.380947 0.924597
508
+ -0.000000 -0.380947 0.924597
509
+ -0.000000 -0.380947 0.924597
510
+ -0.000000 -0.380947 0.924597
511
+ -0.000000 -0.924019 0.382348
512
+ -0.000000 -0.924018 0.382348
513
+ -0.000000 -0.924019 0.382348
514
+ -0.000000 -0.924019 0.382348
515
+ -0.000000 -0.924019 0.382348
516
+ -0.000000 -0.924018 0.382348
517
+ -0.000000 -0.923516 -0.383561
518
+ -0.000000 -0.923516 -0.383561
519
+ -0.000000 -0.923516 -0.383561
520
+ -0.000000 -0.923516 -0.383561
521
+ -0.000000 -0.923516 -0.383561
522
+ -0.000000 -0.923516 -0.383561
523
+ 0.000000 -0.383876 -0.923385
524
+ 0.000000 -0.383876 -0.923385
525
+ 0.000000 -0.383876 -0.923385
526
+ 0.000000 -0.383876 -0.923385
527
+ 0.000000 -0.383876 -0.923385
528
+ 0.000000 -0.383876 -0.923385
529
+ 0.000000 0.383875 -0.923385
530
+ 0.000000 0.383875 -0.923385
531
+ 0.000000 0.383875 -0.923385
532
+ 0.000000 0.383875 -0.923385
533
+ 0.000000 0.383875 -0.923385
534
+ 0.000000 0.383875 -0.923385
535
+ -0.000001 0.923516 -0.383561
536
+ -0.000001 0.923516 -0.383561
537
+ -0.000001 0.923516 -0.383561
538
+ -0.000001 0.923516 -0.383561
539
+ -0.000001 0.923516 -0.383561
540
+ -0.000001 0.923516 -0.383561
541
+ -0.000001 0.924019 0.382347
542
+ -0.000001 0.924019 0.382347
543
+ -0.000001 0.924019 0.382347
544
+ -0.000001 0.924019 0.382347
545
+ -0.000001 0.924019 0.382347
546
+ -0.000001 0.924019 0.382348
547
+ -0.000001 0.380948 0.924597
548
+ -0.000001 0.380948 0.924597
549
+ -0.000001 0.380948 0.924597
550
+ -0.000001 0.380948 0.924597
551
+ -0.000001 0.380948 0.924597
552
+ -0.000001 0.380948 0.924597
553
+ 0.739796 -0.255950 0.622247
554
+ 0.739796 -0.255950 0.622247
555
+ 0.739796 -0.255950 0.622247
556
+ 0.739796 -0.255950 0.622247
557
+ 0.739796 -0.255950 0.622247
558
+ 0.739796 -0.255950 0.622247
559
+ 0.740789 -0.620594 0.257090
560
+ 0.740789 -0.620594 0.257090
561
+ 0.740789 -0.620594 0.257090
562
+ 0.740789 -0.620594 0.257090
563
+ 0.740789 -0.620594 0.257090
564
+ 0.740789 -0.620594 0.257090
565
+ 0.741679 -0.619533 -0.257083
566
+ 0.741679 -0.619533 -0.257083
567
+ 0.741679 -0.619533 -0.257083
568
+ 0.741679 -0.619533 -0.257083
569
+ 0.741679 -0.619533 -0.257083
570
+ 0.741679 -0.619533 -0.257083
571
+ 0.739799 -0.255950 -0.622244
572
+ 0.739799 -0.255950 -0.622244
573
+ 0.739799 -0.255950 -0.622244
574
+ 0.739799 -0.255950 -0.622244
575
+ 0.739799 -0.255950 -0.622244
576
+ 0.739799 -0.255950 -0.622244
577
+ 0.739797 0.255950 -0.622246
578
+ 0.739797 0.255950 -0.622246
579
+ 0.739797 0.255950 -0.622246
580
+ 0.739797 0.255950 -0.622246
581
+ 0.739797 0.255950 -0.622246
582
+ 0.739797 0.255950 -0.622246
583
+ 0.741678 0.619534 -0.257084
584
+ 0.741678 0.619534 -0.257084
585
+ 0.741678 0.619534 -0.257084
586
+ 0.741678 0.619534 -0.257084
587
+ 0.741678 0.619534 -0.257084
588
+ 0.741678 0.619534 -0.257084
589
+ 0.740788 0.620595 0.257090
590
+ 0.740788 0.620595 0.257090
591
+ 0.740788 0.620595 0.257090
592
+ 0.740788 0.620595 0.257090
593
+ 0.740788 0.620595 0.257090
594
+ 0.740788 0.620595 0.257090
595
+ 0.739796 0.255951 0.622247
596
+ 0.739796 0.255951 0.622247
597
+ 0.739796 0.255951 0.622247
598
+ 0.739796 0.255951 0.622247
599
+ 0.739796 0.255951 0.622247
600
+ 0.739796 0.255951 0.622247
601
+ -0.000265 -0.384405 0.923164
602
+ -0.000265 -0.384405 0.923165
603
+ -0.000265 -0.384405 0.923164
604
+ -0.000265 -0.384405 0.923164
605
+ -0.000265 -0.384405 0.923164
606
+ -0.000265 -0.384405 0.923164
607
+ -0.001271 -0.923732 0.383036
608
+ -0.001271 -0.923732 0.383036
609
+ -0.001271 -0.923732 0.383036
610
+ -0.001271 -0.923732 0.383036
611
+ -0.001271 -0.923732 0.383036
612
+ -0.001271 -0.923732 0.383036
613
+ -0.001271 -0.923733 -0.383036
614
+ -0.001271 -0.923733 -0.383036
615
+ -0.001271 -0.923733 -0.383036
616
+ -0.001271 -0.923733 -0.383036
617
+ -0.001271 -0.923733 -0.383036
618
+ -0.001271 -0.923733 -0.383036
619
+ -0.000263 -0.381974 -0.924173
620
+ -0.000263 -0.381974 -0.924173
621
+ -0.000263 -0.381974 -0.924173
622
+ -0.000263 -0.381974 -0.924173
623
+ -0.000263 -0.381974 -0.924173
624
+ -0.000263 -0.381974 -0.924173
625
+ -0.000263 0.381974 -0.924173
626
+ -0.000263 0.381974 -0.924173
627
+ -0.000263 0.381974 -0.924173
628
+ -0.000263 0.381974 -0.924173
629
+ -0.000263 0.381974 -0.924173
630
+ -0.000263 0.381974 -0.924173
631
+ -0.001271 0.923733 -0.383036
632
+ -0.001271 0.923733 -0.383036
633
+ -0.001271 0.923733 -0.383036
634
+ -0.001271 0.923733 -0.383036
635
+ -0.001271 0.923733 -0.383036
636
+ -0.001271 0.923733 -0.383036
637
+ -0.001271 0.923733 0.383036
638
+ -0.001271 0.923733 0.383036
639
+ -0.001271 0.923732 0.383036
640
+ -0.001271 0.923732 0.383036
641
+ -0.001271 0.923733 0.383036
642
+ -0.001271 0.923733 0.383036
643
+ -0.000265 0.384407 0.923164
644
+ -0.000265 0.384407 0.923164
645
+ -0.000265 0.384407 0.923164
646
+ -0.000265 0.384407 0.923164
647
+ -0.000265 0.384407 0.923164
648
+ -0.000265 0.384407 0.923164
649
+ 0.999996 -0.002781 -0.001152
650
+ 0.999996 -0.002781 -0.001152
651
+ 0.999995 -0.002781 -0.001152
652
+ 0.999996 -0.002781 -0.001152
653
+ 0.999995 -0.002781 -0.001152
654
+ 0.999995 -0.002781 -0.001152
655
+ 1.000000 0.000001 -0.000001
656
+ 1.000000 0.000001 -0.000001
657
+ 1.000000 0.000001 -0.000001
658
+ 1.000000 0.000001 -0.000001
659
+ 1.000000 0.000001 -0.000001
660
+ 1.000000 0.000001 -0.000001
661
+ 1.000000 0.000001 0.000001
662
+ 1.000000 0.000001 0.000001
663
+ 1.000000 0.000001 0.000001
664
+ 1.000000 0.000001 0.000001
665
+ 1.000000 0.000001 0.000001
666
+ 1.000000 0.000001 0.000001
667
+ 0.999996 -0.002781 0.001147
668
+ 0.999995 -0.002781 0.001147
669
+ 0.999996 -0.002781 0.001147
670
+ 0.999996 -0.002781 0.001147
671
+ 0.999996 -0.002781 0.001147
672
+ 0.999995 -0.002781 0.001147
673
+ 0.999995 0.002781 0.001147
674
+ 0.999995 0.002781 0.001147
675
+ 0.999995 0.002781 0.001147
676
+ 0.999995 0.002781 0.001147
677
+ 0.999995 0.002781 0.001147
678
+ 0.999996 0.002781 0.001147
679
+ 1.000000 -0.000002 0.000001
680
+ 1.000000 -0.000002 0.000001
681
+ 1.000000 -0.000002 0.000001
682
+ 1.000000 -0.000002 0.000001
683
+ 1.000000 -0.000002 0.000001
684
+ 1.000000 -0.000002 0.000001
685
+ 1.000000 -0.000002 -0.000001
686
+ 1.000000 -0.000002 -0.000001
687
+ 1.000000 -0.000002 -0.000001
688
+ 1.000000 -0.000002 -0.000001
689
+ 1.000000 -0.000002 -0.000001
690
+ 1.000000 -0.000002 -0.000001
691
+ 0.999996 0.002782 -0.001152
692
+ 0.999995 0.002782 -0.001152
693
+ 0.999996 0.002782 -0.001152
694
+ 0.999995 0.002782 -0.001152
695
+ 0.999996 0.002782 -0.001152
696
+ 0.999995 0.002782 -0.001152
697
+ 0.001191 -0.382216 0.924072
698
+ 0.001191 -0.382216 0.924072
699
+ 0.001191 -0.382216 0.924072
700
+ 0.001191 -0.382216 0.924072
701
+ 0.001191 -0.382216 0.924072
702
+ 0.001191 -0.382216 0.924072
703
+ 0.005743 -0.924779 0.380462
704
+ 0.005743 -0.924779 0.380462
705
+ 0.005743 -0.924779 0.380462
706
+ 0.005743 -0.924779 0.380462
707
+ 0.005743 -0.924779 0.380462
708
+ 0.005743 -0.924779 0.380462
709
+ 0.005738 -0.923961 -0.382444
710
+ 0.005738 -0.923961 -0.382444
711
+ 0.005738 -0.923961 -0.382444
712
+ 0.005738 -0.923961 -0.382444
713
+ 0.005738 -0.923961 -0.382444
714
+ 0.005738 -0.923961 -0.382444
715
+ 0.001191 -0.382216 -0.924072
716
+ 0.001191 -0.382216 -0.924072
717
+ 0.001191 -0.382216 -0.924072
718
+ 0.001191 -0.382216 -0.924072
719
+ 0.001191 -0.382216 -0.924072
720
+ 0.001191 -0.382216 -0.924072
721
+ 0.001191 0.382216 -0.924072
722
+ 0.001191 0.382216 -0.924072
723
+ 0.001191 0.382216 -0.924072
724
+ 0.001191 0.382216 -0.924072
725
+ 0.001191 0.382216 -0.924072
726
+ 0.001191 0.382216 -0.924072
727
+ 0.002879 0.923269 -0.384143
728
+ 0.002879 0.923269 -0.384143
729
+ 0.002879 0.923269 -0.384143
730
+ 0.002879 0.923269 -0.384143
731
+ 0.002879 0.923269 -0.384143
732
+ 0.002879 0.923269 -0.384143
733
+ 0.002880 0.924094 0.382155
734
+ 0.002880 0.924094 0.382155
735
+ 0.002880 0.924094 0.382155
736
+ 0.002880 0.924094 0.382155
737
+ 0.002880 0.924094 0.382155
738
+ 0.002880 0.924094 0.382156
739
+ 0.001191 0.382216 0.924072
740
+ 0.001191 0.382216 0.924072
741
+ 0.001191 0.382216 0.924072
742
+ 0.001191 0.382216 0.924072
743
+ 0.001191 0.382216 0.924072
744
+ 0.001191 0.382216 0.924072
745
+ 0.999997 0.002150 -0.000887
746
+ 0.999997 0.002150 -0.000887
747
+ 0.999997 0.002150 -0.000887
748
+ 0.999997 0.002150 -0.000887
749
+ 0.999997 0.002150 -0.000887
750
+ 0.999997 0.002150 -0.000887
751
+ 0.999984 -0.002157 0.005209
752
+ 0.999984 -0.002157 0.005209
753
+ 0.999984 -0.002157 0.005209
754
+ 1.000000 0.000001 -0.000000
755
+ 1.000000 0.000001 -0.000000
756
+ 1.000000 0.000001 -0.000000
757
+ 1.000000 0.000001 -0.000000
758
+ 1.000000 0.000001 -0.000000
759
+ 1.000000 0.000001 -0.000000
760
+ 1.000000 0.000001 0.000001
761
+ 1.000000 0.000001 0.000001
762
+ 1.000000 0.000001 0.000001
763
+ -1.000000 -0.000002 0.000001
764
+ -1.000000 -0.000002 0.000001
765
+ -1.000000 -0.000002 0.000001
766
+ -1.000000 -0.000002 0.000001
767
+ -1.000000 -0.000002 0.000001
768
+ -1.000000 -0.000002 0.000001
769
+ -0.999972 0.006440 -0.003826
770
+ -0.999972 0.006440 -0.003826
771
+ -0.999972 0.006440 -0.003826
772
+ -0.999972 0.006440 -0.003826
773
+ -0.999972 0.006440 -0.003826
774
+ -0.999972 0.006440 -0.003826
775
+ -0.999972 0.006401 0.003816
776
+ -0.999972 0.006401 0.003816
777
+ -0.999972 0.006401 0.003816
778
+ -0.999972 0.006401 0.003816
779
+ -0.999972 0.006401 0.003816
780
+ -0.999972 0.006401 0.003816
781
+ -1.000000 -0.000002 -0.000001
782
+ -1.000000 -0.000002 -0.000001
783
+ -1.000000 -0.000002 -0.000001
784
+ -1.000000 -0.000002 -0.000001
785
+ -1.000000 -0.000002 -0.000001
786
+ -1.000000 -0.000002 -0.000001
787
+ -1.000000 0.000000 0.000000
788
+ -1.000000 0.000000 0.000000
789
+ -1.000000 0.000000 0.000000
790
+ -1.000000 0.000000 0.000000
791
+ -1.000000 0.000000 0.000000
792
+ -1.000000 0.000000 0.000000
793
+ -0.999972 -0.006400 0.003816
794
+ -0.999972 -0.006400 0.003816
795
+ -0.999972 -0.006400 0.003816
796
+ -0.999972 -0.006400 0.003816
797
+ -0.999972 -0.006400 0.003816
798
+ -0.999972 -0.006400 0.003816
799
+ -0.999972 -0.006438 -0.003826
800
+ -0.999972 -0.006438 -0.003826
801
+ -0.999972 -0.006438 -0.003826
802
+ -0.999972 -0.006438 -0.003826
803
+ -0.999972 -0.006438 -0.003826
804
+ -0.999972 -0.006438 -0.003826
805
+ -1.000000 0.000000 -0.000000
806
+ -1.000000 0.000000 -0.000000
807
+ -1.000000 0.000000 -0.000000
808
+ -1.000000 0.000000 -0.000000
809
+ -1.000000 0.000000 -0.000000
810
+ -1.000000 0.000000 -0.000000
811
+ 0.000000 0.382918 -0.923782
812
+ 0.000000 0.382918 -0.923782
813
+ 0.000000 0.382918 -0.923782
814
+ 0.000000 0.382918 -0.923782
815
+ 0.000000 0.382918 -0.923782
816
+ 0.000000 0.382918 -0.923782
817
+ 0.000000 0.923644 -0.383251
818
+ 0.000000 0.923644 -0.383251
819
+ 0.000000 0.923644 -0.383251
820
+ 0.000000 0.923644 -0.383251
821
+ 0.000000 0.923644 -0.383251
822
+ 0.000000 0.923644 -0.383251
823
+ 0.000000 0.923171 0.384390
824
+ 0.000000 0.923171 0.384390
825
+ 0.000000 0.923171 0.384390
826
+ 0.000000 0.923171 0.384390
827
+ 0.000000 0.923171 0.384390
828
+ 0.000000 0.923171 0.384390
829
+ 0.000000 0.382918 0.923782
830
+ 0.000000 0.382918 0.923782
831
+ 0.000000 0.382918 0.923782
832
+ 0.000000 0.382918 0.923782
833
+ 0.000000 0.382918 0.923782
834
+ 0.000000 0.382918 0.923782
835
+ 0.000295 -0.382517 0.923949
836
+ 0.000295 -0.382517 0.923949
837
+ 0.000295 -0.382517 0.923949
838
+ 0.000295 -0.382517 0.923949
839
+ 0.000295 -0.382517 0.923949
840
+ 0.000295 -0.382517 0.923949
841
+ 0.000714 -0.923574 0.383420
842
+ 0.000714 -0.923573 0.383420
843
+ 0.000714 -0.923574 0.383421
844
+ 0.000714 -0.923573 0.383420
845
+ 0.000714 -0.923574 0.383420
846
+ 0.000714 -0.923574 0.383421
847
+ 0.000715 -0.924045 -0.382284
848
+ 0.000715 -0.924045 -0.382284
849
+ 0.000715 -0.924045 -0.382284
850
+ 0.000715 -0.924045 -0.382284
851
+ 0.000715 -0.924045 -0.382284
852
+ 0.000715 -0.924045 -0.382284
853
+ 0.000295 -0.382517 -0.923948
854
+ 0.000295 -0.382517 -0.923948
855
+ 0.000295 -0.382517 -0.923948
856
+ 0.000295 -0.382517 -0.923948
857
+ 0.000295 -0.382517 -0.923948
858
+ 0.000295 -0.382517 -0.923948
859
+ -1.000000 0.000001 0.000000
860
+ -1.000000 0.000001 0.000000
861
+ -1.000000 0.000001 0.000000
862
+ -1.000000 0.000001 0.000000
863
+ -1.000000 0.000001 0.000000
864
+ -1.000000 0.000001 0.000000
865
+ -0.999995 -0.001230 -0.002965
866
+ -0.999995 -0.001230 -0.002965
867
+ -0.999995 -0.001230 -0.002965
868
+ -1.000000 -0.001019 0.000000
869
+ -0.999999 -0.001019 0.000000
870
+ -1.000000 -0.001019 0.000000
871
+ -0.999999 -0.001019 0.000000
872
+ -1.000000 -0.001019 0.000000
873
+ -0.999999 -0.001019 0.000000
874
+ -0.999995 -0.001230 0.002964
875
+ -0.999995 -0.001230 0.002964
876
+ -0.999995 -0.001230 0.002964
877
+ </float_array>
878
+ <technique_common>
879
+ <accessor source="#drc_l_farm-Normal0-array" count="666" stride="3">
880
+ <param name="X" type="float"/>
881
+ <param name="Y" type="float"/>
882
+ <param name="Z" type="float"/>
883
+ </accessor>
884
+ </technique_common>
885
+ </source>
886
+ <source id="drc_l_farm-UV0">
887
+ <float_array id="drc_l_farm-UV0-array" count="496">
888
+ 0.793601 0.479771
889
+ 0.790677 0.551131
890
+ 0.716598 0.846951
891
+ 0.708662 0.843861
892
+ 0.705332 0.836336
893
+ 0.708633 0.828847
894
+ 0.716556 0.825730
895
+ 0.724492 0.828819
896
+ 0.727788 0.836298
897
+ 0.724521 0.843833
898
+ 0.731301 0.822258
899
+ 0.716776 0.816573
900
+ 0.716776 0.814089
901
+ 0.733162 0.820538
902
+ 0.737347 0.836015
903
+ 0.739958 0.836015
904
+ 0.702250 0.822257
905
+ 0.700390 0.820537
906
+ 0.731300 0.849725
907
+ 0.733160 0.851492
908
+ 0.696204 0.836014
909
+ 0.693592 0.836014
910
+ 0.716774 0.855409
911
+ 0.716774 0.857893
912
+ 0.702250 0.849724
913
+ 0.700389 0.851491
914
+ 0.801751 0.699476
915
+ 0.801729 0.716230
916
+ 0.775719 0.716186
917
+ 0.775741 0.699431
918
+ 0.801725 0.682686
919
+ 0.775752 0.682669
920
+ 0.801775 0.665897
921
+ 0.775765 0.665907
922
+ 0.801778 0.649143
923
+ 0.775768 0.649150
924
+ 0.801764 0.632389
925
+ 0.775755 0.632394
926
+ 0.801703 0.615617
927
+ 0.775729 0.615651
928
+ 0.801715 0.598845
929
+ 0.775706 0.598908
930
+ 0.801679 0.582090
931
+ 0.775669 0.582154
932
+ 0.761310 0.846214
933
+ 0.774812 0.840958
934
+ 0.778368 0.844266
935
+ 0.761310 0.850960
936
+ 0.780412 0.828184
937
+ 0.785429 0.828184
938
+ 0.747807 0.840957
939
+ 0.744252 0.844266
940
+ 0.774812 0.815456
941
+ 0.778364 0.812105
942
+ 0.742208 0.828184
943
+ 0.737190 0.828183
944
+ 0.761310 0.810154
945
+ 0.761310 0.805445
946
+ 0.747807 0.815456
947
+ 0.744255 0.812105
948
+ 0.783132 0.542015
949
+ 0.783173 0.550538
950
+ 0.777413 0.550576
951
+ 0.777372 0.542055
952
+ 0.783114 0.533530
953
+ 0.777390 0.533542
954
+ 0.783089 0.525045
955
+ 0.777330 0.525031
956
+ 0.783053 0.516507
957
+ 0.777329 0.516510
958
+ 0.783081 0.508014
959
+ 0.777321 0.508033
960
+ 0.783098 0.499529
961
+ 0.777374 0.499521
962
+ 0.783107 0.491044
963
+ 0.777347 0.491009
964
+ 0.777380 0.482531
965
+ 0.783140 0.482564
966
+ 0.716526 0.847396
967
+ 0.724859 0.844143
968
+ 0.730158 0.849155
969
+ 0.716531 0.854466
970
+ 0.708187 0.844154
971
+ 0.702896 0.849174
972
+ 0.728287 0.836258
973
+ 0.735801 0.836254
974
+ 0.704746 0.836275
975
+ 0.697233 0.836280
976
+ 0.724847 0.828427
977
+ 0.730138 0.823408
978
+ 0.708175 0.828439
979
+ 0.702876 0.823426
980
+ 0.716508 0.825184
981
+ 0.716503 0.818067
982
+ 0.800150 0.435719
983
+ 0.800121 0.449637
984
+ 0.777152 0.449647
985
+ 0.777110 0.435728
986
+ 0.800109 0.421801
987
+ 0.777140 0.421810
988
+ 0.800102 0.407843
989
+ 0.777133 0.407852
990
+ 0.800095 0.393929
991
+ 0.777127 0.393939
992
+ 0.800125 0.379993
993
+ 0.777085 0.380002
994
+ 0.800082 0.366056
995
+ 0.777113 0.366066
996
+ 0.800076 0.352142
997
+ 0.777107 0.352152
998
+ 0.800069 0.338185
999
+ 0.777101 0.338194
1000
+ 0.748341 0.840541
1001
+ 0.742929 0.828239
1002
+ 0.748308 0.815881
1003
+ 0.761375 0.810762
1004
+ 0.774422 0.815850
1005
+ 0.779867 0.828195
1006
+ 0.774456 0.840512
1007
+ 0.761421 0.845630
1008
+ 0.750723 0.583758
1009
+ 0.773907 0.583747
1010
+ 0.773915 0.598591
1011
+ 0.750732 0.598604
1012
+ 0.773890 0.613466
1013
+ 0.750742 0.613449
1014
+ 0.773887 0.628347
1015
+ 0.750775 0.628344
1016
+ 0.773884 0.643184
1017
+ 0.750736 0.643194
1018
+ 0.773905 0.658059
1019
+ 0.750722 0.658039
1020
+ 0.773891 0.672903
1021
+ 0.750708 0.672884
1022
+ 0.773841 0.687753
1023
+ 0.750730 0.687734
1024
+ 0.773863 0.702648
1025
+ 0.750680 0.702629
1026
+ 0.801989 0.457712
1027
+ 0.801829 0.479833
1028
+ 0.801618 0.506918
1029
+ 0.793390 0.506860
1030
+ 0.787031 0.457597
1031
+ 0.793796 0.457614
1032
+ 0.802038 0.452241
1033
+ 0.793845 0.452142
1034
+ 0.786665 0.506812
1035
+ 0.786840 0.479755
1036
+ 0.777718 0.479652
1037
+ 0.777908 0.457494
1038
+ 0.798905 0.551156
1039
+ 0.798813 0.573274
1040
+ 0.790796 0.524041
1041
+ 0.799025 0.524071
1042
+ 0.790606 0.578761
1043
+ 0.790620 0.573288
1044
+ 0.798798 0.578746
1045
+ 0.783860 0.573236
1046
+ 0.783915 0.551076
1047
+ 0.784070 0.524017
1048
+ 0.774738 0.573250
1049
+ 0.774790 0.551092
1050
+ 0.771394 0.558117
1051
+ 0.771326 0.580244
1052
+ 0.748406 0.580180
1053
+ 0.748475 0.558059
1054
+ 0.771465 0.531021
1055
+ 0.748545 0.530978
1056
+ 0.771478 0.523242
1057
+ 0.748558 0.523219
1058
+ 0.748562 0.516879
1059
+ 0.771482 0.516883
1060
+ 0.748555 0.489830
1061
+ 0.771474 0.489820
1062
+ 0.748547 0.481223
1063
+ 0.771467 0.481202
1064
+ 0.748519 0.459070
1065
+ 0.771440 0.459041
1066
+ 0.771426 0.450425
1067
+ 0.748506 0.450460
1068
+ 0.771413 0.444039
1069
+ 0.748494 0.444079
1070
+ 0.771402 0.438565
1071
+ 0.748482 0.438610
1072
+ 0.748464 0.430877
1073
+ 0.771384 0.430827
1074
+ 0.748450 0.425406
1075
+ 0.771370 0.425355
1076
+ 0.782938 0.852181
1077
+ 0.786971 0.856377
1078
+ 0.786828 0.869322
1079
+ 0.781552 0.874047
1080
+ 0.769818 0.873931
1081
+ 0.763999 0.869527
1082
+ 0.764150 0.855769
1083
+ 0.768843 0.852041
1084
+ 0.802142 0.718655
1085
+ 0.802138 0.724321
1086
+ 0.771335 0.724280
1087
+ 0.771302 0.718637
1088
+ 0.802135 0.737629
1089
+ 0.771295 0.737623
1090
+ 0.802134 0.743418
1091
+ 0.771294 0.743413
1092
+ 0.802131 0.757175
1093
+ 0.771327 0.757170
1094
+ 0.802122 0.764217
1095
+ 0.771318 0.764212
1096
+ 0.802107 0.775296
1097
+ 0.771303 0.775224
1098
+ 0.802094 0.782162
1099
+ 0.771290 0.782139
1100
+ 0.802084 0.795107
1101
+ 0.771244 0.795084
1102
+ 0.779560 0.814718
1103
+ 0.779371 0.802825
1104
+ 0.783175 0.799045
1105
+ 0.790257 0.798944
1106
+ 0.793961 0.802332
1107
+ 0.790425 0.818339
1108
+ 0.783699 0.818434
1109
+ 0.794126 0.814798
1110
+ 0.835727 0.801185
1111
+ 0.831907 0.797420
1112
+ 0.832043 0.785525
1113
+ 0.836165 0.781795
1114
+ 0.842891 0.781864
1115
+ 0.846606 0.785389
1116
+ 0.846500 0.797857
1117
+ 0.842811 0.801258
1118
+ 0.715451 0.801940
1119
+ 0.708365 0.801987
1120
+ 0.707911 0.741798
1121
+ 0.714993 0.741751
1122
+ 0.720976 0.801902
1123
+ 0.720514 0.741713
1124
+ 0.733576 0.801816
1125
+ 0.733111 0.741627
1126
+ 0.739287 0.801777
1127
+ 0.738821 0.741588
1128
+ 0.746014 0.801732
1129
+ 0.745546 0.741542
1130
+ 0.751284 0.801729
1131
+ 0.750812 0.741472
1132
+ 0.764487 0.801603
1133
+ 0.764021 0.741414
1134
+ 0.769641 0.801568
1135
+ 0.769179 0.741379
1136
+ </float_array>
1137
+ <technique_common>
1138
+ <accessor source="#drc_l_farm-UV0-array" count="248" stride="2">
1139
+ <param name="S" type="float"/>
1140
+ <param name="T" type="float"/>
1141
+ </accessor>
1142
+ </technique_common>
1143
+ </source>
1144
+ <vertices id="drc_l_farm-VERTEX">
1145
+ <input semantic="POSITION" source="#drc_l_farm-POSITION"/>
1146
+ </vertices>
1147
+ <triangles count="222" material="drc_extremities_diffuse">
1148
+ <input semantic="VERTEX" offset="0" source="#drc_l_farm-VERTEX"/>
1149
+ <input semantic="NORMAL" offset="1" source="#drc_l_farm-Normal0"/>
1150
+ <input semantic="TEXCOORD" offset="2" set="0" source="#drc_l_farm-UV0"/>
1151
+ <p> 0 0 183 3 1 182 2 2 185 2 3 185 1 4 184 0 5 183 5 6 168 4 7 169 6 8 166 6 9 166 4 10 169 7 11 167 3 12 182 9 13 181 8 14 180 9 15 181 3 16 182 0 17 183 3 18 145 8 19 143 2 20 144 8 21 143 10 22 138 2 23 144 2 24 185 11 25 186 1 26 184 11 27 186 2 28 185 10 29 187 1 30 156 9 31 155 0 32 154 9 33 155 1 34 156 11 35 151 12 36 175 15 37 177 14 38 176 12 39 175 14 40 176 13 41 174 17 42 0 10 43 138 8 44 143 10 45 138 17 46 0 16 47 139 16 48 162 18 49 165 10 50 163 10 51 163 18 52 165 11 53 164 11 54 151 18 55 150 19 56 1 11 57 151 19 58 1 9 59 155 21 60 171 20 61 170 5 62 168 5 63 168 20 64 170 4 65 169 4 66 152 22 67 158 19 68 1 22 69 158 4 70 152 20 71 159 8 72 180 9 73 181 23 74 178 23 75 178 9 76 181 24 77 179 23 78 142 25 79 147 17 80 0 23 81 142 17 82 0 8 83 143 21 84 171 25 85 173 22 86 172 21 87 171 22 88 172 20 89 170 6 90 140 17 91 0 5 92 141 17 93 0 6 94 140 16 95 139 6 96 166 18 97 165 16 98 162 18 99 165 6 100 166 7 101 167 7 102 153 19 103 1 18 104 150 19 105 1 7 106 153 4 107 152 19 108 1 24 109 157 9 110 155 24 111 157 19 112 1 22 113 158 5 114 141 25 115 147 21 116 146 25 117 147 5 118 141 17 119 0 23 120 178 24 121 179 15 122 177 15 123 177 24 124 179 14 125 176 25 126 147 23 127 142 12 128 148 15 129 149 12 130 148 23 131 142 12 132 175 22 133 172 25 134 173 22 135 172 12 136 175 13 137 174 24 138 157 13 139 161 14 140 160 13 141 161 24 142 157 22 143 158 27 144 208 29 145 207 28 146 209 29 147 207 27 148 208 26 149 206 30 150 210 28 151 209 31 152 211 28 153 209 30 154 210 27 155 208 31 156 211 32 157 212 30 158 210 32 159 212 31 160 211 33 161 213 32 162 196 33 163 199 35 164 198 32 165 196 35 166 198 34 167 197 35 168 198 36 169 200 34 170 197 36 171 200 35 172 198 37 173 201 37 174 201 38 175 202 36 176 200 38 177 202 37 178 201 39 179 203 41 180 205 40 181 204 38 182 202 41 183 205 38 184 202 39 185 203 26 186 206 41 187 205 29 188 207 41 189 205 26 190 206 40 191 204 43 192 238 45 193 241 44 194 239 45 195 241 43 196 238 42 197 240 46 198 236 44 199 239 47 200 237 44 201 239 46 202 236 43 203 238 47 204 237 48 205 234 46 206 236 48 207 234 47 208 237 49 209 235 48 210 234 49 211 235 51 212 233 48 213 234 51 214 233 50 215 230 53 216 232 52 217 231 50 218 230 53 219 232 50 220 230 51 221 233 54 222 244 53 223 247 55 224 245 53 225 247 54 226 244 52 227 246 57 228 243 56 229 242 54 230 244 57 231 243 54 232 244 55 233 245 56 234 242 45 235 241 42 236 240 45 237 241 56 238 242 57 239 243 26 240 192 38 241 194 40 242 193 38 243 194 26 244 192 34 245 188 38 246 194 34 247 188 36 248 195 26 249 192 32 250 189 34 251 188 32 252 189 26 253 192 30 254 190 27 255 191 30 256 190 26 257 192 56 258 227 50 259 222 54 260 228 50 261 222 56 262 227 42 263 226 54 264 228 50 265 222 52 266 229 42 267 226 48 268 223 50 269 222 48 270 223 42 271 226 46 272 224 43 273 225 46 274 224 42 275 226 45 276 219 55 277 218 47 278 214 45 279 219 47 280 214 44 281 220 49 282 215 55 283 218 51 284 216 55 285 218 49 286 215 47 287 214 51 288 216 55 289 218 53 290 217 45 291 219 57 292 221 55 293 218 58 294 94 61 295 97 60 296 96 58 297 94 60 298 96 59 299 95 59 300 110 60 301 111 63 302 109 59 303 110 63 304 109 62 305 108 63 306 109 64 307 106 62 308 108 64 309 106 63 310 109 65 311 107 65 312 107 66 313 104 64 314 106 66 315 104 65 316 107 67 317 105 66 318 104 67 319 105 69 320 103 66 321 104 69 322 103 68 323 102 70 324 100 68 325 102 71 326 101 71 327 101 68 328 102 69 329 103 72 330 98 71 331 101 73 332 99 71 333 101 72 334 98 70 335 100 73 336 99 58 337 94 72 338 98 58 339 94 73 340 99 61 341 97 60 342 45 75 343 47 74 344 46 75 345 47 60 346 45 61 347 44 74 348 46 63 349 48 60 350 45 63 351 48 74 352 46 76 353 49 65 354 52 63 355 48 77 356 53 76 357 49 77 358 53 63 359 48 65 360 52 78 361 57 67 362 56 78 363 57 65 364 52 77 365 53 78 366 57 69 367 58 67 368 56 69 369 58 78 370 57 79 371 59 71 372 54 79 373 59 80 374 55 79 375 59 71 376 54 69 377 58 81 378 51 71 379 54 80 380 55 71 381 54 81 382 51 73 383 50 81 384 51 75 385 47 73 386 50 75 387 47 61 388 44 73 389 50 75 390 30 83 391 31 82 392 29 75 393 30 82 394 29 74 395 26 82 396 29 76 397 27 74 398 26 76 399 27 82 400 29 84 401 28 76 402 42 84 403 43 85 404 41 76 405 42 85 406 41 77 407 40 85 408 41 78 409 38 77 410 40 78 411 38 85 412 41 86 413 39 78 414 38 86 415 39 87 416 37 78 417 38 87 418 37 79 419 36 80 420 34 87 421 37 88 422 35 87 423 37 80 424 34 79 425 36 81 426 32 80 427 34 89 428 33 89 429 33 80 430 34 88 431 35 89 432 33 75 433 30 81 434 32 75 435 30 89 436 33 83 437 31 58 438 81 59 439 80 91 440 79 58 441 81 91 442 79 90 443 78 91 444 79 62 445 85 92 446 84 62 447 85 91 448 79 59 449 80 62 450 85 64 451 89 93 452 88 62 453 85 93 454 88 92 455 84 94 456 92 93 457 88 64 458 89 94 459 92 64 460 89 66 461 93 94 462 92 68 463 91 95 464 90 68 465 91 94 466 92 66 467 93 70 468 87 95 469 90 68 470 91 95 471 90 70 472 87 96 473 86 97 474 82 96 475 86 70 476 87 97 477 82 70 478 87 72 479 83 58 480 81 97 481 82 72 482 83 97 483 82 58 484 81 90 485 78 90 486 65 99 487 60 98 488 64 99 489 60 90 490 65 91 491 63 99 492 60 92 493 62 100 494 61 92 495 62 99 496 60 91 497 63 92 498 76 101 499 74 100 500 77 101 501 74 92 502 76 93 503 75 101 504 74 94 505 73 102 506 72 94 507 73 101 508 74 93 509 75 94 510 73 103 511 70 102 512 72 103 513 70 94 514 73 95 515 71 96 516 69 104 517 68 95 518 71 104 519 68 103 520 70 95 521 71 97 522 67 104 523 68 96 524 69 104 525 68 97 526 67 105 527 66 105 528 66 90 529 65 98 530 64 90 531 65 105 532 66 97 533 67 102 534 6 105 535 3 98 536 2 105 537 3 102 538 6 104 539 4 104 540 4 102 541 6 103 542 5 98 543 2 100 544 8 102 545 6 102 546 6 100 547 8 101 548 7 99 549 9 100 550 8 98 551 2 83 552 12 106 553 10 82 554 13 106 555 10 83 556 12 107 557 11 82 558 13 108 559 14 84 560 15 108 561 14 82 562 13 106 563 10 84 564 15 109 565 18 85 566 19 109 567 18 84 568 15 108 569 14 110 570 22 85 571 19 109 572 18 85 573 19 110 574 22 86 575 23 87 576 25 86 577 23 110 578 22 110 579 22 111 580 24 87 581 25 88 582 21 87 583 25 111 584 24 88 585 21 111 586 24 112 587 20 89 588 17 112 589 20 113 590 16 112 591 20 89 592 17 88 593 21 83 594 12 89 595 17 113 596 16 83 597 12 113 598 16 107 599 11 106 600 120 115 601 122 114 602 121 115 603 122 106 604 120 107 605 123 106 606 137 116 607 134 108 608 135 116 609 134 106 610 137 114 611 136 108 612 135 116 613 134 109 614 133 116 615 134 117 616 132 109 617 133 118 618 130 109 619 133 117 620 132 109 621 133 118 622 130 110 623 131 119 624 128 110 625 131 118 626 130 110 627 131 119 628 128 111 629 129 112 630 127 119 631 128 120 632 126 119 633 128 112 634 127 111 635 129 121 636 124 112 637 127 120 638 126 112 639 127 121 640 124 113 641 125 107 642 123 121 643 124 115 644 122 121 645 124 107 646 123 113 647 125 114 648 116 117 649 118 116 650 117 117 651 118 114 652 116 119 653 112 117 654 118 119 655 112 118 656 119 114 657 116 120 658 113 119 659 112 120 660 113 114 661 116 121 662 114 115 663 115 121 664 114 114 665 116</p>
1152
+ </triangles>
1153
+ </mesh>
1154
+ </geometry>
1155
+ </library_geometries>
1156
+ <library_visual_scenes>
1157
+ <visual_scene id="l_farm" name="l_farm">
1158
+ <node name="g27" id="g27" sid="g27">
1159
+ <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>
1160
+ <extra>
1161
+ <technique profile="FCOLLADA">
1162
+ <visibility>1.000000</visibility>
1163
+ </technique>
1164
+ </extra>
1165
+ <node name="l_farm_node" id="l_farm_node" sid="l_farm_node">
1166
+ <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>
1167
+ <extra>
1168
+ <technique profile="FCOLLADA">
1169
+ <visibility>1.000000</visibility>
1170
+ </technique>
1171
+ </extra>
1172
+ <node name="drc_l_farm" id="drc_l_farm" sid="drc_l_farm">
1173
+ <matrix sid="matrix">1.000000 -0.000000 -0.000000 0.093769 0.000000 1.000000 -0.000000 -0.399632 0.000000 0.000000 1.000000 0.294788 0.000000 0.000000 0.000000 1.000000</matrix>
1174
+ <instance_geometry url="#drc_l_farm-lib">
1175
+ <bind_material>
1176
+ <technique_common>
1177
+ <instance_material symbol="drc_extremities_diffuse" target="#drc_extremities_diffuse"/>
1178
+ </technique_common>
1179
+ </bind_material>
1180
+ </instance_geometry>
1181
+ <extra>
1182
+ <technique profile="FCOLLADA">
1183
+ <visibility>1.000000</visibility>
1184
+ </technique>
1185
+ </extra>
1186
+ </node>
1187
+ </node>
1188
+ </node>
1189
+ <extra>
1190
+ <technique profile="MAX3D">
1191
+ <frame_rate>30.000000</frame_rate>
1192
+ </technique>
1193
+ <technique profile="FCOLLADA">
1194
+ <start_time>0.000000</start_time>
1195
+ <end_time>3.333333</end_time>
1196
+ </technique>
1197
+ </extra>
1198
+ </visual_scene>
1199
+ </library_visual_scenes>
1200
+ <scene>
1201
+ <instance_visual_scene url="#l_farm"></instance_visual_scene>
1202
+ </scene>
1203
+ </COLLADA>
1204
+