dartpy 7.0.0.dev0__cp312-cp312-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-312-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-2607815a.so.0.7.0 +0 -0
  16. dartpy.libs/libfmt-277170bf.so.11.2.0 +0 -0
  17. dartpy.libs/libfontconfig-559ff509.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-78f9bc34.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-caca20fc.so.8.2.0 +0 -0
  25. dartpy.libs/libosg-e67375e5.so.3.6.5 +0 -0
  26. dartpy.libs/libosgDB-22ae780f.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-8caf1954.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:22:47Z</created>
10
+ <keywords></keywords>
11
+ <modified>2013-04-12T18:22:47Z</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_r_farm-lib" name="drc_r_farmMesh">
75
+ <mesh>
76
+ <source id="drc_r_farm-POSITION">
77
+ <float_array id="drc_r_farm-POSITION-array" count="366">
78
+ -0.317100 0.353200 0.311600
79
+ -0.317100 0.341800 0.300100
80
+ -0.271800 0.341800 0.300100
81
+ -0.271800 0.353200 0.311600
82
+ -0.317100 0.434200 0.230600
83
+ -0.271800 0.434200 0.230600
84
+ -0.271800 0.422700 0.219100
85
+ -0.317100 0.422700 0.219100
86
+ -0.271800 0.361300 0.303500
87
+ -0.317100 0.361300 0.303500
88
+ -0.271800 0.349900 0.292000
89
+ -0.317100 0.349900 0.292000
90
+ -0.271800 0.416300 0.292900
91
+ -0.317100 0.416300 0.292900
92
+ -0.317100 0.383500 0.325700
93
+ -0.271800 0.383500 0.325700
94
+ -0.271800 0.382600 0.259200
95
+ -0.271800 0.394100 0.270700
96
+ -0.317100 0.382600 0.259200
97
+ -0.317100 0.394100 0.270700
98
+ -0.317100 0.443600 0.240000
99
+ -0.271800 0.443600 0.240000
100
+ -0.317100 0.403600 0.280100
101
+ -0.271800 0.370800 0.312900
102
+ -0.317100 0.370800 0.312900
103
+ -0.271800 0.403600 0.280100
104
+ -0.271700 0.398200 0.246300
105
+ -0.271700 0.381800 0.262700
106
+ -0.271700 0.338800 0.219600
107
+ -0.271700 0.355100 0.203300
108
+ -0.281700 0.374500 0.270000
109
+ -0.281700 0.331400 0.227000
110
+ -0.308800 0.374500 0.270000
111
+ -0.308800 0.331400 0.226900
112
+ -0.317500 0.380200 0.264300
113
+ -0.317500 0.337100 0.221300
114
+ -0.317500 0.399900 0.244600
115
+ -0.317500 0.356800 0.201500
116
+ -0.309600 0.406400 0.238100
117
+ -0.309600 0.363300 0.195000
118
+ -0.280800 0.406400 0.238100
119
+ -0.280800 0.363300 0.195100
120
+ -0.274800 0.412100 0.188900
121
+ -0.274800 0.421500 0.198300
122
+ -0.274800 0.332400 0.287400
123
+ -0.274800 0.323000 0.278000
124
+ -0.282700 0.427200 0.204000
125
+ -0.282700 0.338100 0.293100
126
+ -0.307600 0.427200 0.204000
127
+ -0.307600 0.338100 0.293100
128
+ -0.315400 0.421800 0.198600
129
+ -0.315400 0.332700 0.287700
130
+ -0.315400 0.411900 0.188700
131
+ -0.315400 0.322800 0.277800
132
+ -0.308200 0.406800 0.183600
133
+ -0.308200 0.317700 0.272700
134
+ -0.282100 0.406900 0.183600
135
+ -0.282100 0.317700 0.272800
136
+ -0.247800 0.393400 0.335600
137
+ -0.258900 0.374400 0.316500
138
+ -0.258900 0.406500 0.284400
139
+ -0.247800 0.425600 0.303400
140
+ -0.285900 0.366500 0.308600
141
+ -0.285900 0.398600 0.276500
142
+ -0.312800 0.374400 0.316500
143
+ -0.312800 0.406500 0.284400
144
+ -0.324000 0.393400 0.335600
145
+ -0.324000 0.425600 0.303400
146
+ -0.312800 0.412500 0.354600
147
+ -0.312800 0.444600 0.322500
148
+ -0.285900 0.420400 0.362500
149
+ -0.285900 0.452500 0.330400
150
+ -0.258900 0.412500 0.354600
151
+ -0.258900 0.444600 0.322500
152
+ -0.253500 0.407200 0.275900
153
+ -0.240000 0.430200 0.298800
154
+ -0.285900 0.397700 0.266400
155
+ -0.318300 0.407200 0.275900
156
+ -0.331700 0.430200 0.298800
157
+ -0.318300 0.453100 0.321800
158
+ -0.285900 0.462600 0.331300
159
+ -0.253500 0.453100 0.321800
160
+ -0.253500 0.443600 0.239600
161
+ -0.240000 0.466500 0.262500
162
+ -0.285900 0.434100 0.230100
163
+ -0.318300 0.443600 0.239600
164
+ -0.331700 0.466500 0.262500
165
+ -0.318300 0.489400 0.285400
166
+ -0.285900 0.498900 0.294900
167
+ -0.253500 0.489400 0.285400
168
+ -0.262600 0.393400 0.335600
169
+ -0.269400 0.381800 0.323900
170
+ -0.285900 0.377000 0.319100
171
+ -0.302300 0.381800 0.323900
172
+ -0.309100 0.393400 0.335600
173
+ -0.302300 0.405100 0.347200
174
+ -0.285900 0.409900 0.352000
175
+ -0.269400 0.405100 0.347200
176
+ -0.262600 0.385400 0.343600
177
+ -0.269400 0.373800 0.332000
178
+ -0.285900 0.369000 0.327200
179
+ -0.302300 0.373800 0.332000
180
+ -0.309100 0.385400 0.343600
181
+ -0.302300 0.397000 0.355200
182
+ -0.285900 0.401900 0.360000
183
+ -0.269400 0.397000 0.355200
184
+ -0.257100 0.446200 0.242200
185
+ -0.245200 0.466500 0.262500
186
+ -0.285900 0.437700 0.233800
187
+ -0.314600 0.446200 0.242200
188
+ -0.326500 0.466500 0.262500
189
+ -0.314600 0.486800 0.282800
190
+ -0.285900 0.495200 0.291300
191
+ -0.257100 0.486800 0.282800
192
+ -0.257100 0.413800 0.274600
193
+ -0.245200 0.434100 0.294900
194
+ -0.285900 0.405400 0.266100
195
+ -0.314600 0.413800 0.274600
196
+ -0.326500 0.434100 0.294900
197
+ -0.314600 0.454500 0.315200
198
+ -0.285900 0.462900 0.323600
199
+ -0.257100 0.454500 0.315200
200
+ </float_array>
201
+ <technique_common>
202
+ <accessor source="#drc_r_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_r_farm-Normal0">
210
+ <float_array id="drc_r_farm-Normal0-array" count="1998">
211
+ 0.000000 -0.710188 0.704012
212
+ 0.000000 -0.710188 0.704012
213
+ 0.000000 -0.710188 0.704012
214
+ 0.000000 -0.710188 0.704012
215
+ 0.000000 -0.710188 0.704012
216
+ 0.000000 -0.710188 0.704012
217
+ 0.000000 0.707107 -0.707107
218
+ 0.000000 0.707107 -0.707107
219
+ 0.000000 0.707107 -0.707107
220
+ 0.000000 0.707107 -0.707107
221
+ 0.000000 0.707107 -0.707107
222
+ 0.000000 0.707107 -0.707107
223
+ 0.000000 0.707107 0.707107
224
+ 0.000000 0.707107 0.707107
225
+ 0.000000 0.707107 0.707107
226
+ 0.000000 0.707107 0.707107
227
+ 0.000000 0.707107 0.707107
228
+ 0.000000 0.707107 0.707107
229
+ 1.000000 0.000000 0.000000
230
+ 1.000000 0.000000 0.000000
231
+ 1.000000 0.000000 0.000000
232
+ 1.000000 0.000000 0.000000
233
+ 1.000000 0.000000 0.000000
234
+ 1.000000 0.000000 0.000000
235
+ 0.000000 -0.707107 -0.707107
236
+ 0.000000 -0.707107 -0.707107
237
+ 0.000000 -0.707107 -0.707107
238
+ 0.000000 -0.707107 -0.707107
239
+ 0.000000 -0.707107 -0.707107
240
+ 0.000000 -0.707107 -0.707107
241
+ -1.000000 0.000000 0.000000
242
+ -1.000000 0.000000 0.000000
243
+ -1.000000 0.000000 0.000000
244
+ -1.000000 0.000000 0.000000
245
+ -1.000000 0.000000 0.000000
246
+ -1.000000 0.000000 0.000000
247
+ 0.000000 0.707107 0.707106
248
+ 0.000000 0.707107 0.707106
249
+ 0.000000 0.707107 0.707106
250
+ 0.000000 0.707107 0.707106
251
+ 0.000000 0.707107 0.707106
252
+ 0.000000 0.707107 0.707106
253
+ 1.000000 0.000000 0.000000
254
+ 1.000000 0.000000 0.000000
255
+ 1.000000 0.000000 0.000000
256
+ 1.000000 0.000000 0.000000
257
+ 1.000000 0.000000 0.000000
258
+ 1.000000 0.000000 0.000000
259
+ 0.000000 -0.708185 -0.706026
260
+ 0.000000 -0.708185 -0.706026
261
+ 0.000000 -0.708185 -0.706027
262
+ 0.000000 -0.708185 -0.706026
263
+ 0.000000 -0.708185 -0.706026
264
+ 0.000000 -0.708185 -0.706027
265
+ -1.000000 0.000000 0.000000
266
+ -1.000000 0.000000 0.000000
267
+ -1.000000 0.000000 0.000000
268
+ -1.000000 0.000000 0.000000
269
+ -1.000000 0.000000 0.000000
270
+ -1.000000 0.000000 0.000000
271
+ 0.000000 0.707106 -0.707107
272
+ 0.000000 0.707106 -0.707107
273
+ 0.000000 0.707106 -0.707107
274
+ 0.000000 0.707106 -0.707107
275
+ 0.000000 0.707106 -0.707107
276
+ 0.000000 0.707106 -0.707107
277
+ -1.000000 0.000000 0.000000
278
+ -1.000000 0.000000 0.000000
279
+ -1.000000 0.000000 0.000000
280
+ -1.000000 0.000000 0.000000
281
+ -1.000000 0.000000 0.000000
282
+ -1.000000 0.000000 0.000000
283
+ 0.000000 -0.703356 0.710838
284
+ 0.000000 -0.703356 0.710838
285
+ 0.000000 -0.703356 0.710838
286
+ 0.000000 -0.703356 0.710838
287
+ 0.000000 -0.703356 0.710838
288
+ 0.000000 -0.703356 0.710838
289
+ 1.000000 0.000000 0.000000
290
+ 1.000000 0.000000 0.000000
291
+ 1.000000 0.000000 0.000000
292
+ 1.000000 0.000000 0.000000
293
+ 1.000000 0.000000 0.000000
294
+ 1.000000 0.000000 0.000000
295
+ 0.000000 0.707989 0.706224
296
+ 0.000000 0.707989 0.706223
297
+ 0.000000 0.707989 0.706224
298
+ 0.000000 0.707989 0.706224
299
+ 0.000000 0.707989 0.706223
300
+ 0.000000 0.707989 0.706224
301
+ 1.000000 0.000000 0.000000
302
+ 1.000000 0.000000 0.000000
303
+ 1.000000 0.000000 0.000000
304
+ 1.000000 0.000000 0.000000
305
+ 1.000000 0.000000 0.000000
306
+ 1.000000 0.000000 0.000000
307
+ 0.000000 -0.707107 -0.707107
308
+ 0.000000 -0.707107 -0.707107
309
+ 0.000000 -0.707107 -0.707107
310
+ 0.000000 -0.707107 -0.707107
311
+ 0.000000 -0.707107 -0.707107
312
+ 0.000000 -0.707107 -0.707107
313
+ -1.000000 0.000000 0.000000
314
+ -1.000000 0.000000 0.000000
315
+ -1.000000 0.000000 0.000000
316
+ -1.000000 0.000000 0.000000
317
+ -1.000000 0.000000 0.000000
318
+ -1.000000 0.000000 0.000000
319
+ -1.000000 0.000000 0.000000
320
+ -1.000000 0.000000 0.000000
321
+ -1.000000 0.000000 0.000000
322
+ -1.000000 0.000000 0.000000
323
+ -1.000000 0.000000 0.000000
324
+ -1.000000 0.000000 0.000000
325
+ 1.000000 0.000000 0.000000
326
+ 1.000000 0.000000 0.000000
327
+ 1.000000 0.000000 0.000000
328
+ 1.000000 0.000000 0.000000
329
+ 1.000000 0.000000 0.000000
330
+ 1.000000 0.000000 0.000000
331
+ 0.000000 -0.709874 0.704329
332
+ 0.000000 -0.709874 0.704329
333
+ 0.000000 -0.709874 0.704329
334
+ 0.000000 -0.709874 0.704329
335
+ 0.000000 -0.709874 0.704329
336
+ 0.000000 -0.709874 0.704329
337
+ 1.000000 0.000000 0.000000
338
+ 1.000000 0.000000 0.000000
339
+ 1.000000 0.000000 0.000000
340
+ 1.000000 0.000000 0.000000
341
+ 1.000000 0.000000 0.000000
342
+ 1.000000 0.000000 0.000000
343
+ 0.000000 0.709875 -0.704328
344
+ 0.000000 0.709875 -0.704328
345
+ 0.000000 0.709875 -0.704328
346
+ 0.000000 0.709875 -0.704328
347
+ 0.000000 0.709875 -0.704328
348
+ 0.000000 0.709875 -0.704328
349
+ -1.000000 0.000000 0.000000
350
+ -1.000000 0.000000 0.000000
351
+ -1.000000 0.000000 0.000000
352
+ -1.000000 0.000000 0.000000
353
+ -1.000000 0.000000 0.000000
354
+ -1.000000 0.000000 0.000000
355
+ 1.000000 0.000000 0.000000
356
+ 1.000000 0.000000 0.000000
357
+ 1.000000 0.000000 0.000000
358
+ 1.000000 0.000000 0.000000
359
+ 1.000000 0.000000 0.000000
360
+ 1.000000 0.000000 0.000000
361
+ 0.718280 -0.491401 0.492543
362
+ 0.718280 -0.491401 0.492543
363
+ 0.718280 -0.491401 0.492543
364
+ 0.722993 -0.489076 0.487941
365
+ 0.722993 -0.489076 0.487941
366
+ 0.722993 -0.489076 0.487941
367
+ 0.000000 -0.707107 0.707107
368
+ 0.000000 -0.707107 0.707107
369
+ 0.000000 -0.707107 0.707107
370
+ -0.002612 -0.706283 0.707925
371
+ -0.002612 -0.706283 0.707925
372
+ -0.002612 -0.706283 0.707925
373
+ -0.679657 -0.518081 0.519286
374
+ -0.679657 -0.518081 0.519286
375
+ -0.679657 -0.518081 0.519286
376
+ -0.676429 -0.520790 0.520790
377
+ -0.676429 -0.520790 0.520790
378
+ -0.676429 -0.520790 0.520790
379
+ -1.000000 0.000000 0.000000
380
+ -1.000000 0.000000 0.000000
381
+ -1.000000 0.000000 0.000000
382
+ -1.000000 0.000000 0.000000
383
+ -1.000000 0.000000 0.000000
384
+ -1.000000 0.000000 0.000000
385
+ -0.758408 0.460879 -0.460878
386
+ -0.758408 0.460879 -0.460878
387
+ -0.758408 0.460879 -0.460878
388
+ -0.758408 0.460878 -0.460878
389
+ -0.758408 0.460878 -0.460878
390
+ -0.758408 0.460878 -0.460878
391
+ 0.000000 0.706285 -0.707927
392
+ 0.000000 0.706285 -0.707927
393
+ 0.000000 0.706285 -0.707927
394
+ 0.002455 0.707105 -0.707105
395
+ 0.002455 0.707105 -0.707105
396
+ 0.002455 0.707105 -0.707105
397
+ 0.786698 0.436016 -0.437030
398
+ 0.786699 0.436016 -0.437030
399
+ 0.786698 0.436016 -0.437030
400
+ 0.786699 0.436016 -0.437030
401
+ 0.786699 0.436016 -0.437030
402
+ 0.786699 0.436016 -0.437030
403
+ 1.000000 0.000000 0.000000
404
+ 1.000000 0.000000 0.000000
405
+ 1.000000 0.000000 0.000000
406
+ 1.000000 0.000000 0.000000
407
+ 1.000000 0.000000 0.000000
408
+ 1.000000 0.000000 0.000000
409
+ 0.714203 0.494931 0.494931
410
+ 0.714203 0.494931 0.494931
411
+ 0.714203 0.494931 0.494931
412
+ 0.714203 0.494931 0.494931
413
+ 0.714203 0.494931 0.494931
414
+ 0.714203 0.494931 0.494931
415
+ 0.000000 0.707107 0.707107
416
+ 0.000000 0.707107 0.707107
417
+ 0.000000 0.707107 0.707107
418
+ 0.000000 0.707107 0.707107
419
+ 0.000000 0.707107 0.707107
420
+ 0.000000 0.707107 0.707107
421
+ -0.699589 0.505260 0.505260
422
+ -0.699589 0.505260 0.505260
423
+ -0.699589 0.505260 0.505260
424
+ -0.699588 0.505260 0.505260
425
+ -0.699588 0.505260 0.505260
426
+ -0.699588 0.505260 0.505260
427
+ -1.000000 0.000000 0.000000
428
+ -1.000000 0.000000 0.000000
429
+ -1.000000 0.000000 0.000000
430
+ -1.000000 0.000000 0.000000
431
+ -1.000000 0.000000 0.000000
432
+ -1.000000 0.000000 0.000000
433
+ -0.707720 -0.499566 -0.499566
434
+ -0.707720 -0.499566 -0.499566
435
+ -0.707720 -0.499566 -0.499566
436
+ -0.707719 -0.499567 -0.499567
437
+ -0.707719 -0.499567 -0.499567
438
+ -0.707719 -0.499567 -0.499567
439
+ 0.002709 -0.707104 -0.707104
440
+ 0.002709 -0.707104 -0.707104
441
+ 0.002709 -0.707104 -0.707104
442
+ 0.002709 -0.707104 -0.707104
443
+ 0.002709 -0.707104 -0.707104
444
+ 0.002709 -0.707104 -0.707104
445
+ 0.713066 -0.495750 -0.495750
446
+ 0.713066 -0.495750 -0.495750
447
+ 0.713066 -0.495750 -0.495750
448
+ 0.713067 -0.495750 -0.495750
449
+ 0.713067 -0.495750 -0.495750
450
+ 0.713067 -0.495750 -0.495750
451
+ 0.000000 0.707107 0.707107
452
+ 0.000000 0.707107 0.707107
453
+ 0.000000 0.707107 0.707107
454
+ -0.000000 0.707106 0.707107
455
+ -0.000000 0.707106 0.707107
456
+ -0.000000 0.707106 0.707107
457
+ -0.000001 0.707107 0.707107
458
+ -0.000001 0.707107 0.707107
459
+ -0.000001 0.707107 0.707107
460
+ 0.000000 0.707109 0.707105
461
+ 0.000000 0.707109 0.707105
462
+ 0.000000 0.707109 0.707105
463
+ -0.000001 0.707107 0.707107
464
+ -0.000001 0.707107 0.707107
465
+ -0.000001 0.707107 0.707107
466
+ 0.000003 0.707106 0.707107
467
+ 0.000003 0.707106 0.707107
468
+ 0.000003 0.707106 0.707107
469
+ -0.002742 0.715692 -0.698411
470
+ -0.002742 0.715692 -0.698411
471
+ -0.002742 0.715692 -0.698411
472
+ 0.000000 0.707107 -0.707106
473
+ 0.000000 0.707107 -0.707106
474
+ 0.000000 0.707107 -0.707106
475
+ 0.000001 0.707107 -0.707106
476
+ 0.000001 0.707107 -0.707106
477
+ 0.000001 0.707107 -0.707106
478
+ 0.000000 0.707107 -0.707107
479
+ 0.000000 0.707107 -0.707107
480
+ 0.000000 0.707107 -0.707107
481
+ 0.000000 0.707107 -0.707107
482
+ 0.000000 0.707107 -0.707107
483
+ 0.000000 0.707107 -0.707107
484
+ 0.000000 0.707107 -0.707107
485
+ 0.000000 0.707107 -0.707107
486
+ 0.000000 0.707107 -0.707107
487
+ -0.000002 -0.707108 0.707106
488
+ -0.000002 -0.707108 0.707106
489
+ -0.000002 -0.707108 0.707106
490
+ 0.000001 -0.707107 0.707106
491
+ 0.000001 -0.707107 0.707106
492
+ 0.000001 -0.707107 0.707106
493
+ 0.000000 -0.707109 0.707105
494
+ 0.000000 -0.707109 0.707105
495
+ 0.000000 -0.707109 0.707105
496
+ -0.000001 -0.707106 0.707107
497
+ -0.000001 -0.707106 0.707107
498
+ -0.000001 -0.707106 0.707107
499
+ -0.000003 -0.707107 0.707107
500
+ -0.000003 -0.707107 0.707107
501
+ -0.000003 -0.707107 0.707107
502
+ -0.002742 -0.698410 0.715692
503
+ -0.002742 -0.698410 0.715692
504
+ -0.002742 -0.698410 0.715692
505
+ 0.924597 -0.269371 -0.269371
506
+ 0.924597 -0.269370 -0.269370
507
+ 0.924597 -0.269371 -0.269371
508
+ 0.924597 -0.269371 -0.269371
509
+ 0.924597 -0.269371 -0.269371
510
+ 0.924597 -0.269371 -0.269371
511
+ 0.382348 -0.653380 -0.653380
512
+ 0.382348 -0.653380 -0.653380
513
+ 0.382348 -0.653380 -0.653380
514
+ 0.382348 -0.653380 -0.653380
515
+ 0.382348 -0.653380 -0.653380
516
+ 0.382348 -0.653380 -0.653380
517
+ -0.383561 -0.653024 -0.653024
518
+ -0.383561 -0.653024 -0.653024
519
+ -0.383561 -0.653024 -0.653024
520
+ -0.383561 -0.653024 -0.653024
521
+ -0.383561 -0.653024 -0.653024
522
+ -0.383561 -0.653024 -0.653024
523
+ -0.923385 -0.271441 -0.271441
524
+ -0.923385 -0.271441 -0.271441
525
+ -0.923385 -0.271441 -0.271441
526
+ -0.923385 -0.271441 -0.271441
527
+ -0.923385 -0.271441 -0.271441
528
+ -0.923385 -0.271441 -0.271441
529
+ -0.923385 0.271441 0.271441
530
+ -0.923385 0.271441 0.271441
531
+ -0.923385 0.271441 0.271441
532
+ -0.923384 0.271442 0.271442
533
+ -0.923385 0.271442 0.271442
534
+ -0.923385 0.271442 0.271442
535
+ -0.383561 0.653025 0.653024
536
+ -0.383561 0.653025 0.653024
537
+ -0.383561 0.653025 0.653024
538
+ -0.383561 0.653025 0.653024
539
+ -0.383561 0.653025 0.653024
540
+ -0.383561 0.653025 0.653024
541
+ 0.382348 0.653380 0.653379
542
+ 0.382348 0.653380 0.653379
543
+ 0.382348 0.653380 0.653379
544
+ 0.382348 0.653380 0.653379
545
+ 0.382348 0.653380 0.653379
546
+ 0.382348 0.653380 0.653379
547
+ 0.924597 0.269370 0.269370
548
+ 0.924597 0.269370 0.269370
549
+ 0.924597 0.269370 0.269370
550
+ 0.924597 0.269371 0.269370
551
+ 0.924597 0.269371 0.269370
552
+ 0.924597 0.269371 0.269370
553
+ 0.625975 -0.701883 0.339875
554
+ 0.625975 -0.701883 0.339875
555
+ 0.625975 -0.701883 0.339875
556
+ 0.619168 -0.705910 0.343980
557
+ 0.619168 -0.705910 0.343980
558
+ 0.619168 -0.705910 0.343980
559
+ 0.256581 -0.962708 0.085786
560
+ 0.256581 -0.962708 0.085786
561
+ 0.256581 -0.962708 0.085786
562
+ 0.257515 -0.962588 0.084326
563
+ 0.257515 -0.962588 0.084326
564
+ 0.257515 -0.962588 0.084326
565
+ -0.257080 -0.962458 0.087086
566
+ -0.257080 -0.962458 0.087086
567
+ -0.257080 -0.962458 0.087086
568
+ -0.257086 -0.962574 0.085774
569
+ -0.257086 -0.962574 0.085774
570
+ -0.257086 -0.962574 0.085774
571
+ -0.623633 -0.703907 0.339995
572
+ -0.623633 -0.703907 0.339995
573
+ -0.623633 -0.703907 0.339995
574
+ -0.621099 -0.704254 0.343892
575
+ -0.621099 -0.704254 0.343892
576
+ -0.621099 -0.704254 0.343892
577
+ -0.620307 -0.343298 0.705242
578
+ -0.620307 -0.343298 0.705242
579
+ -0.620307 -0.343298 0.705242
580
+ -0.623866 -0.341154 0.703140
581
+ -0.623866 -0.341154 0.703140
582
+ -0.623866 -0.341154 0.703140
583
+ -0.257472 -0.085765 0.962472
584
+ -0.257472 -0.085765 0.962472
585
+ -0.257472 -0.085765 0.962472
586
+ -0.256761 -0.086871 0.962563
587
+ -0.256761 -0.086871 0.962563
588
+ -0.256761 -0.086871 0.962563
589
+ 0.257094 -0.084047 0.962725
590
+ 0.257094 -0.084047 0.962725
591
+ 0.257094 -0.084047 0.962725
592
+ 0.257087 -0.085774 0.962574
593
+ 0.257087 -0.085774 0.962574
594
+ 0.257087 -0.085774 0.962574
595
+ 0.619604 -0.346179 0.704451
596
+ 0.619604 -0.346179 0.704451
597
+ 0.619604 -0.346179 0.704451
598
+ 0.624443 -0.338744 0.703792
599
+ 0.624443 -0.338744 0.703792
600
+ 0.624443 -0.338744 0.703792
601
+ 0.923312 -0.271190 -0.271937
602
+ 0.923312 -0.271190 -0.271937
603
+ 0.923312 -0.271190 -0.271937
604
+ 0.923015 -0.272068 -0.272068
605
+ 0.923015 -0.272068 -0.272068
606
+ 0.923016 -0.272068 -0.272068
607
+ 0.383036 -0.652279 -0.654076
608
+ 0.383036 -0.652279 -0.654076
609
+ 0.383036 -0.652279 -0.654076
610
+ 0.383036 -0.652279 -0.654076
611
+ 0.383036 -0.652279 -0.654076
612
+ 0.383036 -0.652279 -0.654076
613
+ -0.383036 -0.652279 -0.654076
614
+ -0.383036 -0.652279 -0.654076
615
+ -0.383036 -0.652279 -0.654076
616
+ -0.383036 -0.652279 -0.654076
617
+ -0.383036 -0.652279 -0.654076
618
+ -0.383036 -0.652279 -0.654076
619
+ -0.924320 -0.269845 -0.269845
620
+ -0.924320 -0.269845 -0.269845
621
+ -0.924320 -0.269845 -0.269845
622
+ -0.924026 -0.269976 -0.270720
623
+ -0.924026 -0.269976 -0.270720
624
+ -0.924026 -0.269976 -0.270720
625
+ -0.924319 0.270217 0.269474
626
+ -0.924319 0.270217 0.269474
627
+ -0.924319 0.270217 0.269474
628
+ -0.924026 0.270348 0.270348
629
+ -0.924026 0.270348 0.270348
630
+ -0.924026 0.270348 0.270348
631
+ -0.383036 0.654076 0.652279
632
+ -0.383036 0.654076 0.652279
633
+ -0.383036 0.654076 0.652279
634
+ -0.383036 0.654076 0.652279
635
+ -0.383036 0.654076 0.652279
636
+ -0.383036 0.654076 0.652279
637
+ 0.383036 0.654076 0.652279
638
+ 0.383036 0.654076 0.652279
639
+ 0.383036 0.654076 0.652279
640
+ 0.383036 0.654076 0.652279
641
+ 0.383036 0.654076 0.652279
642
+ 0.383036 0.654076 0.652279
643
+ 0.923313 0.271563 0.271563
644
+ 0.923313 0.271563 0.271563
645
+ 0.923313 0.271563 0.271563
646
+ 0.923015 0.272442 0.271694
647
+ 0.923015 0.272442 0.271694
648
+ 0.923015 0.272442 0.271694
649
+ 0.000000 -0.710134 0.704067
650
+ 0.000000 -0.710134 0.704067
651
+ 0.000000 -0.710134 0.704067
652
+ -0.001854 -0.708419 0.705789
653
+ -0.001854 -0.708419 0.705789
654
+ -0.001854 -0.708419 0.705789
655
+ -0.000001 -0.707107 0.707106
656
+ -0.000001 -0.707107 0.707106
657
+ -0.000001 -0.707107 0.707106
658
+ -0.000001 -0.707106 0.707108
659
+ -0.000001 -0.707106 0.707108
660
+ -0.000001 -0.707106 0.707108
661
+ 0.000002 -0.707106 0.707108
662
+ 0.000002 -0.707106 0.707108
663
+ 0.000002 -0.707106 0.707108
664
+ 0.000000 -0.707107 0.707107
665
+ 0.000000 -0.707107 0.707107
666
+ 0.000000 -0.707107 0.707107
667
+ 0.003030 -0.709250 0.704951
668
+ 0.003030 -0.709250 0.704951
669
+ 0.003030 -0.709250 0.704951
670
+ 0.000000 -0.708959 0.705249
671
+ 0.000000 -0.708959 0.705249
672
+ 0.000000 -0.708959 0.705249
673
+ 0.000000 -0.704066 0.710135
674
+ 0.000000 -0.704066 0.710135
675
+ 0.000000 -0.704066 0.710135
676
+ 0.001849 -0.705792 0.708416
677
+ 0.001849 -0.705792 0.708416
678
+ 0.001849 -0.705792 0.708416
679
+ 0.000001 -0.707106 0.707107
680
+ 0.000001 -0.707106 0.707107
681
+ 0.000001 -0.707106 0.707107
682
+ 0.000001 -0.707108 0.707106
683
+ 0.000001 -0.707108 0.707106
684
+ 0.000001 -0.707108 0.707106
685
+ -0.000002 -0.707108 0.707106
686
+ -0.000002 -0.707108 0.707106
687
+ -0.000002 -0.707108 0.707106
688
+ 0.000000 -0.707107 0.707107
689
+ 0.000000 -0.707107 0.707107
690
+ 0.000000 -0.707107 0.707107
691
+ -0.003030 -0.704950 0.709250
692
+ -0.003030 -0.704950 0.709250
693
+ -0.003030 -0.704950 0.709250
694
+ 0.000000 -0.705249 0.708960
695
+ 0.000000 -0.705249 0.708960
696
+ 0.000000 -0.705249 0.708960
697
+ 0.923783 -0.270764 -0.270763
698
+ 0.923783 -0.270764 -0.270763
699
+ 0.923783 -0.270764 -0.270763
700
+ 0.924357 -0.271452 -0.268101
701
+ 0.924357 -0.271452 -0.268101
702
+ 0.924357 -0.271452 -0.268101
703
+ 0.380462 -0.657979 -0.649856
704
+ 0.380462 -0.657979 -0.649856
705
+ 0.380462 -0.657978 -0.649856
706
+ 0.380462 -0.657978 -0.649856
707
+ 0.380462 -0.657978 -0.649856
708
+ 0.380462 -0.657978 -0.649856
709
+ -0.382443 -0.657397 -0.649282
710
+ -0.382443 -0.657397 -0.649282
711
+ -0.382443 -0.657397 -0.649282
712
+ -0.382443 -0.657397 -0.649282
713
+ -0.382443 -0.657397 -0.649282
714
+ -0.382443 -0.657397 -0.649282
715
+ -0.923780 -0.272444 -0.269081
716
+ -0.923780 -0.272444 -0.269081
717
+ -0.923780 -0.272444 -0.269081
718
+ -0.924363 -0.269772 -0.269771
719
+ -0.924363 -0.269772 -0.269771
720
+ -0.924363 -0.269772 -0.269771
721
+ -0.923783 0.270764 0.270763
722
+ -0.923783 0.270764 0.270763
723
+ -0.923783 0.270764 0.270763
724
+ -0.924357 0.268101 0.271452
725
+ -0.924357 0.268101 0.271452
726
+ -0.924357 0.268101 0.271452
727
+ -0.385815 0.648296 0.656399
728
+ -0.385815 0.648296 0.656399
729
+ -0.385815 0.648296 0.656399
730
+ -0.382449 0.653350 0.653350
731
+ -0.382449 0.653350 0.653350
732
+ -0.382449 0.653350 0.653350
733
+ 0.383849 0.652939 0.652939
734
+ 0.383849 0.652939 0.652939
735
+ 0.383849 0.652939 0.652939
736
+ 0.380462 0.649856 0.657979
737
+ 0.380462 0.649856 0.657978
738
+ 0.380462 0.649856 0.657979
739
+ 0.923780 0.269081 0.272444
740
+ 0.923780 0.269081 0.272444
741
+ 0.923780 0.269081 0.272444
742
+ 0.924363 0.269771 0.269770
743
+ 0.924363 0.269771 0.269770
744
+ 0.924363 0.269771 0.269770
745
+ -0.005175 -0.708611 0.705580
746
+ -0.005175 -0.708611 0.705580
747
+ -0.005175 -0.708611 0.705580
748
+ 0.000000 -0.704955 0.709253
749
+ 0.000000 -0.704955 0.709252
750
+ 0.000000 -0.704955 0.709252
751
+ 0.005213 -0.708622 0.705569
752
+ 0.005213 -0.708622 0.705569
753
+ 0.005213 -0.708622 0.705569
754
+ -0.000002 -0.707107 0.707106
755
+ -0.000002 -0.707107 0.707106
756
+ -0.000002 -0.707107 0.707106
757
+ 0.000000 -0.707106 0.707107
758
+ 0.000000 -0.707106 0.707107
759
+ 0.000000 -0.707106 0.707107
760
+ 0.000001 -0.707107 0.707106
761
+ 0.000001 -0.707107 0.707106
762
+ 0.000001 -0.707107 0.707106
763
+ 0.000002 0.707106 -0.707108
764
+ 0.000002 0.707106 -0.707108
765
+ 0.000002 0.707106 -0.707108
766
+ 0.000000 0.707106 -0.707107
767
+ 0.000000 0.707106 -0.707107
768
+ 0.000000 0.707106 -0.707107
769
+ -0.008138 0.716701 -0.697333
770
+ -0.008138 0.716701 -0.697333
771
+ -0.008138 0.716701 -0.697333
772
+ 0.000001 0.707105 -0.707108
773
+ 0.000001 0.707105 -0.707108
774
+ 0.000001 0.707105 -0.707108
775
+ 0.001735 0.705868 -0.708342
776
+ 0.001735 0.705868 -0.708342
777
+ 0.001735 0.705868 -0.708342
778
+ 0.005679 0.716713 -0.697345
779
+ 0.005679 0.716713 -0.697345
780
+ 0.005679 0.716713 -0.697345
781
+ 0.000000 0.707106 -0.707107
782
+ 0.000000 0.707106 -0.707107
783
+ 0.000000 0.707106 -0.707107
784
+ -0.000001 0.707106 -0.707108
785
+ -0.000001 0.707106 -0.707108
786
+ -0.000001 0.707106 -0.707108
787
+ 0.000001 0.707107 -0.707106
788
+ 0.000001 0.707107 -0.707106
789
+ 0.000001 0.707107 -0.707106
790
+ 0.000000 0.707107 -0.707106
791
+ 0.000000 0.707107 -0.707106
792
+ 0.000000 0.707107 -0.707106
793
+ 0.008166 0.697333 -0.716701
794
+ 0.008166 0.697333 -0.716701
795
+ 0.008166 0.697333 -0.716701
796
+ 0.000000 0.707107 -0.707107
797
+ 0.000000 0.707107 -0.707107
798
+ 0.000000 0.707107 -0.707107
799
+ -0.001746 0.708313 -0.705896
800
+ -0.001746 0.708313 -0.705896
801
+ -0.001746 0.708313 -0.705896
802
+ -0.005679 0.697345 -0.716713
803
+ -0.005679 0.697345 -0.716713
804
+ -0.005679 0.697345 -0.716713
805
+ 0.000000 0.707107 -0.707106
806
+ 0.000000 0.707107 -0.707106
807
+ 0.000000 0.707107 -0.707106
808
+ -0.000000 0.707107 -0.707106
809
+ -0.000000 0.707107 -0.707106
810
+ -0.000000 0.707107 -0.707106
811
+ -0.923782 0.270764 0.270764
812
+ -0.923783 0.270764 0.270764
813
+ -0.923782 0.270764 0.270764
814
+ -0.923782 0.270764 0.270764
815
+ -0.923782 0.270764 0.270764
816
+ -0.923782 0.270764 0.270764
817
+ -0.383251 0.653115 0.653115
818
+ -0.383251 0.653115 0.653115
819
+ -0.383251 0.653115 0.653115
820
+ -0.383252 0.653115 0.653115
821
+ -0.383252 0.653115 0.653115
822
+ -0.383252 0.653115 0.653115
823
+ 0.384390 0.652780 0.652781
824
+ 0.384390 0.652780 0.652781
825
+ 0.384390 0.652780 0.652781
826
+ 0.384390 0.652780 0.652780
827
+ 0.384390 0.652780 0.652780
828
+ 0.384390 0.652780 0.652780
829
+ 0.923782 0.270764 0.270764
830
+ 0.923782 0.270764 0.270764
831
+ 0.923782 0.270764 0.270764
832
+ 0.923782 0.270764 0.270764
833
+ 0.923782 0.270764 0.270764
834
+ 0.923782 0.270764 0.270764
835
+ 0.924115 -0.270613 -0.269777
836
+ 0.924115 -0.270613 -0.269777
837
+ 0.924115 -0.270613 -0.269777
838
+ 0.923782 -0.270764 -0.270764
839
+ 0.923782 -0.270764 -0.270764
840
+ 0.923782 -0.270764 -0.270764
841
+ 0.382449 -0.653350 -0.653350
842
+ 0.382449 -0.653350 -0.653350
843
+ 0.382449 -0.653350 -0.653350
844
+ 0.384387 -0.653789 -0.651771
845
+ 0.384387 -0.653790 -0.651771
846
+ 0.384387 -0.653789 -0.651771
847
+ -0.381314 -0.654691 -0.652670
848
+ -0.381314 -0.654691 -0.652670
849
+ -0.381314 -0.654691 -0.652670
850
+ -0.383252 -0.653115 -0.653115
851
+ -0.383252 -0.653115 -0.653115
852
+ -0.383252 -0.653115 -0.653115
853
+ -0.924115 -0.270196 -0.270196
854
+ -0.924115 -0.270196 -0.270196
855
+ -0.924115 -0.270196 -0.270196
856
+ -0.923782 -0.271182 -0.270345
857
+ -0.923782 -0.271182 -0.270345
858
+ -0.923782 -0.271182 -0.270345
859
+ 0.000000 0.711279 -0.702910
860
+ 0.000000 0.711279 -0.702910
861
+ 0.000000 0.711279 -0.702910
862
+ 0.000000 0.706237 -0.707976
863
+ 0.000000 0.706237 -0.707976
864
+ 0.000000 0.706237 -0.707976
865
+ -0.002967 0.706234 -0.707973
866
+ -0.002967 0.706234 -0.707973
867
+ -0.002967 0.706234 -0.707973
868
+ 0.000000 0.707106 -0.707108
869
+ 0.000000 0.707106 -0.707108
870
+ 0.000000 0.707106 -0.707108
871
+ 0.000000 0.706237 -0.707976
872
+ 0.000000 0.706237 -0.707976
873
+ 0.000000 0.706237 -0.707976
874
+ 0.002967 0.706234 -0.707973
875
+ 0.002967 0.706234 -0.707973
876
+ 0.002967 0.706234 -0.707973
877
+ </float_array>
878
+ <technique_common>
879
+ <accessor source="#drc_r_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_r_farm-UV0">
887
+ <float_array id="drc_r_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_r_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_r_farm-VERTEX">
1145
+ <input semantic="POSITION" source="#drc_r_farm-POSITION"/>
1146
+ </vertices>
1147
+ <triangles count="222" material="drc_extremities_diffuse">
1148
+ <input semantic="VERTEX" offset="0" source="#drc_r_farm-VERTEX"/>
1149
+ <input semantic="NORMAL" offset="1" source="#drc_r_farm-Normal0"/>
1150
+ <input semantic="TEXCOORD" offset="2" set="0" source="#drc_r_farm-UV0"/>
1151
+ <p> 0 0 183 1 1 184 2 2 185 2 3 185 3 4 182 0 5 183 4 6 169 5 7 168 6 8 166 6 9 166 7 10 167 4 11 169 3 12 182 8 13 180 9 14 181 9 15 181 0 16 183 3 17 182 2 18 144 10 19 138 8 20 143 8 21 143 3 22 145 2 23 144 1 24 184 11 25 186 10 26 187 10 27 187 2 28 185 1 29 184 0 30 154 9 31 155 11 32 151 11 33 151 1 34 156 0 35 154 12 36 175 13 37 174 14 38 176 14 39 176 15 40 177 12 41 175 16 42 139 17 43 0 8 44 143 8 45 143 10 46 138 16 47 139 18 48 165 16 49 162 10 50 163 10 51 163 11 52 164 18 53 165 19 54 1 18 55 150 11 56 151 11 57 151 9 58 155 19 59 1 5 60 168 4 61 169 20 62 170 20 63 170 21 64 171 5 65 168 19 66 1 22 67 158 20 68 159 20 69 159 4 70 152 19 71 1 9 72 181 8 73 180 23 74 178 23 75 178 24 76 179 9 77 181 17 78 0 25 79 147 23 80 142 23 81 142 8 82 143 17 83 0 21 84 171 20 85 170 22 86 172 22 87 172 25 88 173 21 89 171 6 90 140 5 91 141 17 92 0 17 93 0 16 94 139 6 95 140 7 96 167 6 97 166 16 98 162 16 99 162 18 100 165 7 101 167 4 102 152 7 103 153 18 104 150 18 105 150 19 106 1 4 107 152 9 108 155 24 109 157 22 110 158 22 111 158 19 112 1 9 113 155 5 114 141 21 115 146 25 116 147 25 117 147 17 118 0 5 119 141 24 120 179 23 121 178 15 122 177 15 123 177 14 124 176 24 125 179 23 126 142 25 127 147 12 128 148 12 129 148 15 130 149 23 131 142 25 132 173 22 133 172 13 134 174 13 135 174 12 136 175 25 137 173 22 138 158 24 139 157 14 140 160 14 141 160 13 142 161 22 143 158 26 144 206 27 145 208 28 146 209 28 147 209 29 148 207 26 149 206 27 150 208 30 151 210 31 152 211 31 153 211 28 154 209 27 155 208 30 156 210 32 157 212 33 158 213 33 159 213 31 160 211 30 161 210 32 162 196 34 163 197 35 164 198 35 165 198 33 166 199 32 167 196 34 168 197 36 169 200 37 170 201 37 171 201 35 172 198 34 173 197 36 174 200 38 175 202 39 176 203 39 177 203 37 178 201 36 179 200 38 180 202 40 181 204 41 182 205 41 183 205 39 184 203 38 185 202 40 186 204 26 187 206 29 188 207 29 189 207 41 190 205 40 191 204 42 192 240 43 193 238 44 194 239 44 195 239 45 196 241 42 197 240 43 198 238 46 199 236 47 200 237 47 201 237 44 202 239 43 203 238 46 204 236 48 205 234 49 206 235 49 207 235 47 208 237 46 209 236 48 210 234 50 211 230 51 212 233 51 213 233 49 214 235 48 215 234 50 216 230 52 217 231 53 218 232 53 219 232 51 220 233 50 221 230 52 222 246 54 223 244 55 224 245 55 225 245 53 226 247 52 227 246 54 228 244 56 229 242 57 230 243 57 231 243 55 232 245 54 233 244 56 234 242 42 235 240 45 236 241 45 237 241 57 238 243 56 239 242 26 240 192 40 241 193 38 242 194 38 243 194 34 244 188 26 245 192 38 246 194 36 247 195 34 248 188 34 249 188 32 250 189 30 251 190 30 252 190 26 253 192 34 254 188 27 255 191 26 256 192 30 257 190 42 258 226 56 259 227 54 260 228 54 261 228 50 262 222 42 263 226 54 264 228 52 265 229 50 266 222 50 267 222 48 268 223 46 269 224 46 270 224 42 271 226 50 272 222 43 273 225 42 274 226 46 275 224 45 276 219 44 277 220 47 278 214 47 279 214 55 280 218 45 281 219 47 282 214 49 283 215 51 284 216 51 285 216 55 286 218 47 287 214 51 288 216 53 289 217 55 290 218 45 291 219 55 292 218 57 293 221 58 294 94 59 295 95 60 296 96 60 297 96 61 298 97 58 299 94 59 300 110 62 301 108 63 302 109 63 303 109 60 304 111 59 305 110 62 306 108 64 307 106 65 308 107 65 309 107 63 310 109 62 311 108 64 312 106 66 313 104 67 314 105 67 315 105 65 316 107 64 317 106 66 318 104 68 319 102 69 320 103 69 321 103 67 322 105 66 323 104 68 324 102 70 325 100 71 326 101 71 327 101 69 328 103 68 329 102 70 330 100 72 331 98 73 332 99 73 333 99 71 334 101 70 335 100 72 336 98 58 337 94 61 338 97 61 339 97 73 340 99 72 341 98 61 342 44 60 343 45 74 344 46 74 345 46 75 346 47 61 347 44 60 348 45 63 349 48 76 350 49 76 351 49 74 352 46 60 353 45 63 354 48 65 355 52 77 356 53 77 357 53 76 358 49 63 359 48 65 360 52 67 361 56 78 362 57 78 363 57 77 364 53 65 365 52 67 366 56 69 367 58 79 368 59 79 369 59 78 370 57 67 371 56 69 372 58 71 373 54 80 374 55 80 375 55 79 376 59 69 377 58 71 378 54 73 379 50 81 380 51 81 381 51 80 382 55 71 383 54 73 384 50 61 385 44 75 386 47 75 387 47 81 388 51 73 389 50 75 390 30 74 391 26 82 392 29 82 393 29 83 394 31 75 395 30 74 396 26 76 397 27 84 398 28 84 399 28 82 400 29 74 401 26 76 402 42 77 403 40 85 404 41 85 405 41 84 406 43 76 407 42 77 408 40 78 409 38 86 410 39 86 411 39 85 412 41 77 413 40 78 414 38 79 415 36 87 416 37 87 417 37 86 418 39 78 419 38 79 420 36 80 421 34 88 422 35 88 423 35 87 424 37 79 425 36 80 426 34 81 427 32 89 428 33 89 429 33 88 430 35 80 431 34 81 432 32 75 433 30 83 434 31 83 435 31 89 436 33 81 437 32 58 438 81 90 439 78 91 440 79 91 441 79 59 442 80 58 443 81 59 444 80 91 445 79 92 446 84 92 447 84 62 448 85 59 449 80 62 450 85 92 451 84 93 452 88 93 453 88 64 454 89 62 455 85 64 456 89 93 457 88 94 458 92 94 459 92 66 460 93 64 461 89 66 462 93 94 463 92 95 464 90 95 465 90 68 466 91 66 467 93 68 468 91 95 469 90 96 470 86 96 471 86 70 472 87 68 473 91 70 474 87 96 475 86 97 476 82 97 477 82 72 478 83 70 479 87 72 480 83 97 481 82 90 482 78 90 483 78 58 484 81 72 485 83 90 486 65 98 487 64 99 488 60 99 489 60 91 490 63 90 491 65 91 492 63 99 493 60 100 494 61 100 495 61 92 496 62 91 497 63 92 498 76 100 499 77 101 500 74 101 501 74 93 502 75 92 503 76 93 504 75 101 505 74 102 506 72 102 507 72 94 508 73 93 509 75 94 510 73 102 511 72 103 512 70 103 513 70 95 514 71 94 515 73 95 516 71 103 517 70 104 518 68 104 519 68 96 520 69 95 521 71 96 522 69 104 523 68 105 524 66 105 525 66 97 526 67 96 527 69 97 528 67 105 529 66 98 530 64 98 531 64 90 532 65 97 533 67 98 534 2 105 535 3 104 536 4 104 537 4 102 538 6 98 539 2 104 540 4 103 541 5 102 542 6 102 543 6 101 544 7 100 545 8 100 546 8 98 547 2 102 548 6 99 549 9 98 550 2 100 551 8 82 552 13 106 553 10 107 554 11 107 555 11 83 556 12 82 557 13 84 558 15 108 559 14 106 560 10 106 561 10 82 562 13 84 563 15 85 564 19 109 565 18 108 566 14 108 567 14 84 568 15 85 569 19 86 570 23 110 571 22 109 572 18 109 573 18 85 574 19 86 575 23 87 576 25 111 577 24 110 578 22 110 579 22 86 580 23 87 581 25 88 582 21 112 583 20 111 584 24 111 585 24 87 586 25 88 587 21 89 588 17 113 589 16 112 590 20 112 591 20 88 592 21 89 593 17 83 594 12 107 595 11 113 596 16 113 597 16 89 598 17 83 599 12 106 600 120 114 601 121 115 602 122 115 603 122 107 604 123 106 605 120 108 606 135 116 607 134 114 608 136 114 609 136 106 610 137 108 611 135 109 612 133 117 613 132 116 614 134 116 615 134 108 616 135 109 617 133 110 618 131 118 619 130 117 620 132 117 621 132 109 622 133 110 623 131 111 624 129 119 625 128 118 626 130 118 627 130 110 628 131 111 629 129 112 630 127 120 631 126 119 632 128 119 633 128 111 634 129 112 635 127 113 636 125 121 637 124 120 638 126 120 639 126 112 640 127 113 641 125 107 642 123 115 643 122 121 644 124 121 645 124 113 646 125 107 647 123 114 648 116 116 649 117 117 650 118 117 651 118 119 652 112 114 653 116 117 654 118 118 655 119 119 656 112 119 657 112 120 658 113 121 659 114 121 660 114 114 661 116 119 662 112 115 663 115 114 664 116 121 665 114</p>
1152
+ </triangles>
1153
+ </mesh>
1154
+ </geometry>
1155
+ </library_geometries>
1156
+ <library_visual_scenes>
1157
+ <visual_scene id="r_farm" name="r_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="r_farm_node" id="r_farm_node" sid="r_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_r_farm" id="drc_r_farm" sid="drc_r_farm">
1173
+ <matrix sid="matrix">0.000000 -0.714781 0.714781 0.093826 0.000000 -0.714781 -0.714781 0.400717 1.010853 0.000000 -0.000000 0.294832 0.000000 0.000000 0.000000 1.000000</matrix>
1174
+ <instance_geometry url="#drc_r_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="#r_farm"></instance_visual_scene>
1202
+ </scene>
1203
+ </COLLADA>
1204
+