dartpy 7.0.0.dev0__cp313-cp313-manylinux_2_39_x86_64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of dartpy might be problematic. Click here for more details.
- dartpy-7.0.0.dev0.dist-info/METADATA +86 -0
- dartpy-7.0.0.dev0.dist-info/RECORD +994 -0
- dartpy-7.0.0.dev0.dist-info/WHEEL +5 -0
- dartpy-7.0.0.dev0.dist-info/licenses/LICENSE +31 -0
- dartpy.cpython-313-x86_64-linux-gnu.so +0 -0
- dartpy.libs/libBulletCollision-f96eb02c.so.3.25 +0 -0
- dartpy.libs/libBulletDynamics-3cff1f18.so.3.25 +0 -0
- dartpy.libs/libBulletSoftBody-220f01bd.so.3.25 +0 -0
- dartpy.libs/libLinearMath-71568d02.so.3.25 +0 -0
- dartpy.libs/libOpenThreads-8bc434db.so.3.3.1 +0 -0
- dartpy.libs/libSDL2-2-3db87ac0.0.so.0.3200.56 +0 -0
- dartpy.libs/libassimp-44cf3e77.so.5.4.3 +0 -0
- dartpy.libs/libccd-4f119cf4.so.2.0 +0 -0
- dartpy.libs/libconsole_bridge-f26e11cc.so.1.0 +0 -0
- dartpy.libs/libfcl-0400fc28.so.0.7.0 +0 -0
- dartpy.libs/libfmt-277170bf.so.11.2.0 +0 -0
- dartpy.libs/libfontconfig-582da43c.so.1.14.0 +0 -0
- dartpy.libs/libfreetype-64806fc6.so.6.20.4 +0 -0
- dartpy.libs/libglfw-6f066845.so.3.4 +0 -0
- dartpy.libs/libimgui-ab87b07d.so +0 -0
- dartpy.libs/libnlopt-d1ae937b.so.1.0.0 +0 -0
- dartpy.libs/liboctomap-38e56f99.so.1.10.0 +0 -0
- dartpy.libs/liboctomath-bff26442.so.1.10.0 +0 -0
- dartpy.libs/libode-99b67f5b.so.8.2.0 +0 -0
- dartpy.libs/libosg-e67375e5.so.3.6.5 +0 -0
- dartpy.libs/libosgDB-bcdb6be9.so.3.6.5 +0 -0
- dartpy.libs/libosgGA-6af4078b.so.3.6.5 +0 -0
- dartpy.libs/libosgManipulator-3270f659.so.3.6.5 +0 -0
- dartpy.libs/libosgShadow-127a8d77.so.3.6.5 +0 -0
- dartpy.libs/libosgText-87d82d87.so.3.6.5 +0 -0
- dartpy.libs/libosgUtil-55896958.so.3.6.5 +0 -0
- dartpy.libs/libosgViewer-76d832e3.so.3.6.5 +0 -0
- dartpy.libs/libpng16-bd65464e.so.16.50.0 +0 -0
- dartpy.libs/libtinyxml2-8d10763c.so.11.0.0 +0 -0
- dartpy.libs/liburdfdom_model-7b26ae88.so.4.0 +0 -0
- dartpy.libs/liburdfdom_model_state-95a5ad6e.so.4.0 +0 -0
- dartpy.libs/liburdfdom_sensor-55a145ea.so.4.0 +0 -0
- dartpy.libs/liburdfdom_world-a32c7194.so.4.0 +0 -0
- dartpy.libs/libvulkan-08e1e162.so.1.4.328 +0 -0
- include/dart/collision/CollisionDetector.hpp +305 -0
- include/dart/collision/CollisionFilter.hpp +126 -0
- include/dart/collision/CollisionGroup.hpp +546 -0
- include/dart/collision/CollisionObject.hpp +90 -0
- include/dart/collision/CollisionOption.hpp +71 -0
- include/dart/collision/CollisionResult.hpp +109 -0
- include/dart/collision/Contact.hpp +103 -0
- include/dart/collision/DistanceFilter.hpp +66 -0
- include/dart/collision/DistanceOption.hpp +80 -0
- include/dart/collision/DistanceResult.hpp +123 -0
- include/dart/collision/Option.hpp +42 -0
- include/dart/collision/RaycastOption.hpp +58 -0
- include/dart/collision/RaycastResult.hpp +80 -0
- include/dart/collision/Result.hpp +42 -0
- include/dart/collision/SmartPointer.hpp +51 -0
- include/dart/collision/all.hpp +17 -0
- include/dart/collision/bullet/BulletCollisionDetector.hpp +168 -0
- include/dart/collision/bullet/BulletCollisionGroup.hpp +98 -0
- include/dart/collision/bullet/BulletCollisionObject.hpp +75 -0
- include/dart/collision/bullet/BulletCollisionShape.hpp +62 -0
- include/dart/collision/bullet/BulletInclude.hpp +47 -0
- include/dart/collision/bullet/BulletTypes.hpp +57 -0
- include/dart/collision/bullet/all.hpp +8 -0
- include/dart/collision/bullet/bullet.hpp +14 -0
- include/dart/collision/bullet/detail/BulletCollisionDispatcher.hpp +70 -0
- include/dart/collision/bullet/detail/BulletOverlapFilterCallback.hpp +72 -0
- include/dart/collision/collision.hpp +14 -0
- include/dart/collision/dart/DARTCollide.hpp +106 -0
- include/dart/collision/dart/DARTCollisionDetector.hpp +109 -0
- include/dart/collision/dart/DARTCollisionGroup.hpp +82 -0
- include/dart/collision/dart/DARTCollisionObject.hpp +63 -0
- include/dart/collision/dart/all.hpp +6 -0
- include/dart/collision/dart/dart.hpp +14 -0
- include/dart/collision/detail/CollisionDetector.hpp +66 -0
- include/dart/collision/detail/CollisionGroup.hpp +287 -0
- include/dart/collision/detail/Contact-impl.hpp +56 -0
- include/dart/collision/detail/UnorderedPairs.hpp +153 -0
- include/dart/collision/fcl/BackwardCompatibility.hpp +145 -0
- include/dart/collision/fcl/CollisionShapes.hpp +374 -0
- include/dart/collision/fcl/FCLCollisionDetector.hpp +204 -0
- include/dart/collision/fcl/FCLCollisionGroup.hpp +95 -0
- include/dart/collision/fcl/FCLCollisionObject.hpp +72 -0
- include/dart/collision/fcl/FCLTypes.hpp +62 -0
- include/dart/collision/fcl/TriTriIntersectionTest.hpp +17 -0
- include/dart/collision/fcl/all.hpp +9 -0
- include/dart/collision/fcl/fcl.hpp +14 -0
- include/dart/collision/fcl/tri_tri_intersection_test.hpp +332 -0
- include/dart/collision/ode/OdeCollisionDetector.hpp +131 -0
- include/dart/collision/ode/OdeCollisionGroup.hpp +87 -0
- include/dart/collision/ode/OdeCollisionObject.hpp +89 -0
- include/dart/collision/ode/OdeTypes.hpp +51 -0
- include/dart/collision/ode/all.hpp +6 -0
- include/dart/collision/ode/detail/OdeBox.hpp +58 -0
- include/dart/collision/ode/detail/OdeCapsule.hpp +58 -0
- include/dart/collision/ode/detail/OdeCylinder.hpp +58 -0
- include/dart/collision/ode/detail/OdeGeom.hpp +83 -0
- include/dart/collision/ode/detail/OdeHeightmap-impl.hpp +170 -0
- include/dart/collision/ode/detail/OdeHeightmap.hpp +70 -0
- include/dart/collision/ode/detail/OdeMesh.hpp +83 -0
- include/dart/collision/ode/detail/OdePlane.hpp +67 -0
- include/dart/collision/ode/detail/OdeSphere.hpp +58 -0
- include/dart/collision/ode/ode.hpp +14 -0
- include/dart/common/Aspect.hpp +215 -0
- include/dart/common/AspectWithVersion.hpp +180 -0
- include/dart/common/CAllocator.hpp +65 -0
- include/dart/common/Castable.hpp +102 -0
- include/dart/common/ClassWithVirtualBase.hpp +47 -0
- include/dart/common/Cloneable.hpp +327 -0
- include/dart/common/Composite.hpp +205 -0
- include/dart/common/CompositeJoiner.hpp +160 -0
- include/dart/common/Console.hpp +75 -0
- include/dart/common/Deprecated.hpp +126 -0
- include/dart/common/EmbeddedAspect.hpp +466 -0
- include/dart/common/Empty.hpp +55 -0
- include/dart/common/Factory.hpp +146 -0
- include/dart/common/Filesystem.hpp +112 -0
- include/dart/common/FreeListAllocator.hpp +162 -0
- include/dart/common/IncludeWindows.hpp +50 -0
- include/dart/common/LocalResource.hpp +76 -0
- include/dart/common/LocalResourceRetriever.hpp +63 -0
- include/dart/common/LockableReference.hpp +166 -0
- include/dart/common/Logging.hpp +146 -0
- include/dart/common/Macros.hpp +78 -0
- include/dart/common/Memory.hpp +215 -0
- include/dart/common/MemoryAllocator.hpp +120 -0
- include/dart/common/MemoryAllocatorDebugger.hpp +98 -0
- include/dart/common/MemoryManager.hpp +189 -0
- include/dart/common/Metaprogramming.hpp +68 -0
- include/dart/common/NameManager.hpp +184 -0
- include/dart/common/Observer.hpp +85 -0
- include/dart/common/Optional.hpp +48 -0
- include/dart/common/Platform.hpp +92 -0
- include/dart/common/PoolAllocator.hpp +141 -0
- include/dart/common/Profile.hpp +56 -0
- include/dart/common/ProxyAspect.hpp +93 -0
- include/dart/common/RequiresAspect.hpp +79 -0
- include/dart/common/Resource.hpp +96 -0
- include/dart/common/ResourceRetriever.hpp +82 -0
- include/dart/common/SharedLibrary.hpp +201 -0
- include/dart/common/Signal.hpp +250 -0
- include/dart/common/Singleton.hpp +85 -0
- include/dart/common/SmartPointer.hpp +63 -0
- include/dart/common/SpecializedForAspect.hpp +207 -0
- include/dart/common/StlAllocator.hpp +111 -0
- include/dart/common/StlHelpers.hpp +61 -0
- include/dart/common/Stopwatch.hpp +143 -0
- include/dart/common/String.hpp +71 -0
- include/dart/common/SubPtr.hpp +17 -0
- include/dart/common/Subject.hpp +84 -0
- include/dart/common/Timer.hpp +119 -0
- include/dart/common/Uri.hpp +229 -0
- include/dart/common/VersionCounter.hpp +68 -0
- include/dart/common/Virtual.hpp +51 -0
- include/dart/common/all.hpp +53 -0
- include/dart/common/common.hpp +14 -0
- include/dart/common/detail/Aspect.hpp +102 -0
- include/dart/common/detail/AspectWithVersion.hpp +455 -0
- include/dart/common/detail/Castable-impl.hpp +109 -0
- include/dart/common/detail/Cloneable.hpp +638 -0
- include/dart/common/detail/Composite.hpp +241 -0
- include/dart/common/detail/CompositeData.hpp +393 -0
- include/dart/common/detail/CompositeJoiner.hpp +128 -0
- include/dart/common/detail/ConnectionBody.hpp +157 -0
- include/dart/common/detail/EmbeddedAspect.hpp +487 -0
- include/dart/common/detail/Factory-impl.hpp +200 -0
- include/dart/common/detail/LockableReference-impl.hpp +156 -0
- include/dart/common/detail/Logging-impl.hpp +162 -0
- include/dart/common/detail/Memory-impl.hpp +66 -0
- include/dart/common/detail/MemoryAllocator-impl.hpp +97 -0
- include/dart/common/detail/MemoryAllocatorDebugger-impl.hpp +201 -0
- include/dart/common/detail/MemoryManager-impl.hpp +102 -0
- include/dart/common/detail/Metaprogramming-impl.hpp +89 -0
- include/dart/common/detail/NameManager.hpp +301 -0
- include/dart/common/detail/NoOp.hpp +57 -0
- include/dart/common/detail/ProxyAspect.hpp +172 -0
- include/dart/common/detail/RequiresAspect.hpp +51 -0
- include/dart/common/detail/SharedLibraryManager.hpp +106 -0
- include/dart/common/detail/Signal.hpp +242 -0
- include/dart/common/detail/Singleton-impl.hpp +74 -0
- include/dart/common/detail/SpecializedForAspect.hpp +331 -0
- include/dart/common/detail/StlAllocator-impl.hpp +108 -0
- include/dart/common/detail/Stopwatch-impl.hpp +242 -0
- include/dart/common/detail/SubPtr.hpp +17 -0
- include/dart/common/detail/TemplateJoinerDispatchMacro.hpp +59 -0
- include/dart/common/detail/sub_ptr.hpp +139 -0
- include/dart/common/sub_ptr.hpp +103 -0
- include/dart/config.hpp +100 -0
- include/dart/constraint/BalanceConstraint.hpp +202 -0
- include/dart/constraint/BallJointConstraint.hpp +142 -0
- include/dart/constraint/BoxedLcpConstraintSolver.hpp +182 -0
- include/dart/constraint/BoxedLcpSolver.hpp +101 -0
- include/dart/constraint/ConstrainedGroup.hpp +120 -0
- include/dart/constraint/ConstraintBase.hpp +141 -0
- include/dart/constraint/ConstraintSolver.hpp +325 -0
- include/dart/constraint/ContactConstraint.hpp +286 -0
- include/dart/constraint/ContactSurface.hpp +191 -0
- include/dart/constraint/DantzigBoxedLcpSolver.hpp +71 -0
- include/dart/constraint/DantzigLCPSolver.hpp +87 -0
- include/dart/constraint/DynamicJointConstraint.hpp +120 -0
- include/dart/constraint/JointConstraint.hpp +182 -0
- include/dart/constraint/JointCoulombFrictionConstraint.hpp +149 -0
- include/dart/constraint/JointLimitConstraint.hpp +185 -0
- include/dart/constraint/LCPSolver.hpp +71 -0
- include/dart/constraint/MimicMotorConstraint.hpp +164 -0
- include/dart/constraint/PGSLCPSolver.hpp +109 -0
- include/dart/constraint/PgsBoxedLcpSolver.hpp +106 -0
- include/dart/constraint/ServoMotorConstraint.hpp +151 -0
- include/dart/constraint/SmartPointer.hpp +69 -0
- include/dart/constraint/SoftContactConstraint.hpp +262 -0
- include/dart/constraint/WeldJointConstraint.hpp +133 -0
- include/dart/constraint/all.hpp +25 -0
- include/dart/constraint/constraint.hpp +14 -0
- include/dart/constraint/detail/ConstraintSolver-impl.hpp +78 -0
- include/dart/dart.hpp +44 -0
- include/dart/dynamics/ArrowShape.hpp +121 -0
- include/dart/dynamics/AssimpInputResourceAdaptor.hpp +129 -0
- include/dart/dynamics/BallJoint.hpp +143 -0
- include/dart/dynamics/BodyNode.hpp +1279 -0
- include/dart/dynamics/BoxShape.hpp +90 -0
- include/dart/dynamics/Branch.hpp +107 -0
- include/dart/dynamics/CapsuleShape.hpp +105 -0
- include/dart/dynamics/Chain.hpp +142 -0
- include/dart/dynamics/CompositeNode.hpp +114 -0
- include/dart/dynamics/ConeShape.hpp +107 -0
- include/dart/dynamics/CylinderShape.hpp +96 -0
- include/dart/dynamics/DegreeOfFreedom.hpp +415 -0
- include/dart/dynamics/EllipsoidShape.hpp +115 -0
- include/dart/dynamics/EndEffector.hpp +158 -0
- include/dart/dynamics/Entity.hpp +258 -0
- include/dart/dynamics/EntityNode.hpp +77 -0
- include/dart/dynamics/EulerJoint.hpp +174 -0
- include/dart/dynamics/FixedFrame.hpp +105 -0
- include/dart/dynamics/FixedJacobianNode.hpp +168 -0
- include/dart/dynamics/Frame.hpp +388 -0
- include/dart/dynamics/FreeJoint.hpp +369 -0
- include/dart/dynamics/GenericJoint.hpp +825 -0
- include/dart/dynamics/Group.hpp +270 -0
- include/dart/dynamics/HeightmapShape.hpp +195 -0
- include/dart/dynamics/HierarchicalIK.hpp +419 -0
- include/dart/dynamics/IkFast.hpp +277 -0
- include/dart/dynamics/Inertia.hpp +176 -0
- include/dart/dynamics/InvalidIndex.hpp +46 -0
- include/dart/dynamics/InverseKinematics.hpp +1401 -0
- include/dart/dynamics/JacobianNode.hpp +312 -0
- include/dart/dynamics/Joint.hpp +1128 -0
- include/dart/dynamics/LineSegmentShape.hpp +140 -0
- include/dart/dynamics/Linkage.hpp +246 -0
- include/dart/dynamics/Marker.hpp +126 -0
- include/dart/dynamics/MeshShape.hpp +225 -0
- include/dart/dynamics/MetaSkeleton.hpp +1034 -0
- include/dart/dynamics/MimicDofProperties.hpp +62 -0
- include/dart/dynamics/MultiSphereConvexHullShape.hpp +111 -0
- include/dart/dynamics/MultiSphereShape.hpp +42 -0
- include/dart/dynamics/Node.hpp +273 -0
- include/dart/dynamics/NodeManagerJoiner.hpp +190 -0
- include/dart/dynamics/PlanarJoint.hpp +161 -0
- include/dart/dynamics/PlaneShape.hpp +105 -0
- include/dart/dynamics/PointCloudShape.hpp +186 -0
- include/dart/dynamics/PointMass.hpp +709 -0
- include/dart/dynamics/PrismaticJoint.hpp +120 -0
- include/dart/dynamics/PyramidShape.hpp +122 -0
- include/dart/dynamics/ReferentialSkeleton.hpp +550 -0
- include/dart/dynamics/RevoluteJoint.hpp +120 -0
- include/dart/dynamics/ScrewJoint.hpp +126 -0
- include/dart/dynamics/Shape.hpp +231 -0
- include/dart/dynamics/ShapeFrame.hpp +291 -0
- include/dart/dynamics/ShapeNode.hpp +134 -0
- include/dart/dynamics/SharedLibraryIkFast.hpp +147 -0
- include/dart/dynamics/SimpleFrame.hpp +247 -0
- include/dart/dynamics/Skeleton.hpp +1350 -0
- include/dart/dynamics/SmartPointer.hpp +185 -0
- include/dart/dynamics/SoftBodyNode.hpp +472 -0
- include/dart/dynamics/SoftMeshShape.hpp +100 -0
- include/dart/dynamics/SpecializedNodeManager.hpp +230 -0
- include/dart/dynamics/SphereShape.hpp +89 -0
- include/dart/dynamics/TemplatedJacobianNode.hpp +128 -0
- include/dart/dynamics/TranslationalJoint.hpp +105 -0
- include/dart/dynamics/TranslationalJoint2D.hpp +156 -0
- include/dart/dynamics/UniversalJoint.hpp +128 -0
- include/dart/dynamics/VoxelGridShape.hpp +171 -0
- include/dart/dynamics/WeldJoint.hpp +116 -0
- include/dart/dynamics/ZeroDofJoint.hpp +562 -0
- include/dart/dynamics/all.hpp +69 -0
- include/dart/dynamics/detail/BasicNodeManager.hpp +539 -0
- include/dart/dynamics/detail/BodyNode.hpp +344 -0
- include/dart/dynamics/detail/BodyNodeAspect.hpp +177 -0
- include/dart/dynamics/detail/BodyNodePtr.hpp +351 -0
- include/dart/dynamics/detail/CompositeNode.hpp +93 -0
- include/dart/dynamics/detail/DegreeOfFreedomPtr.hpp +338 -0
- include/dart/dynamics/detail/EndEffectorAspect.hpp +106 -0
- include/dart/dynamics/detail/EntityNode.hpp +81 -0
- include/dart/dynamics/detail/EntityNodeAspect.hpp +101 -0
- include/dart/dynamics/detail/EulerJointAspect.hpp +93 -0
- include/dart/dynamics/detail/FixedFrameAspect.hpp +58 -0
- include/dart/dynamics/detail/FixedJacobianNode.hpp +55 -0
- include/dart/dynamics/detail/GenericJoint.hpp +2471 -0
- include/dart/dynamics/detail/GenericJointAspect.hpp +353 -0
- include/dart/dynamics/detail/HeightmapShape-impl.hpp +243 -0
- include/dart/dynamics/detail/InverseKinematics.hpp +83 -0
- include/dart/dynamics/detail/InverseKinematicsPtr.hpp +341 -0
- include/dart/dynamics/detail/JointAspect.hpp +161 -0
- include/dart/dynamics/detail/JointPtr.hpp +293 -0
- include/dart/dynamics/detail/MarkerAspect.hpp +68 -0
- include/dart/dynamics/detail/MetaSkeleton-impl.hpp +151 -0
- include/dart/dynamics/detail/Node.hpp +532 -0
- include/dart/dynamics/detail/NodeManagerJoiner.hpp +184 -0
- include/dart/dynamics/detail/NodePtr.hpp +259 -0
- include/dart/dynamics/detail/PlanarJointAspect.hpp +136 -0
- include/dart/dynamics/detail/PrismaticJointAspect.hpp +85 -0
- include/dart/dynamics/detail/RevoluteJointAspect.hpp +86 -0
- include/dart/dynamics/detail/ScrewJointAspect.hpp +90 -0
- include/dart/dynamics/detail/ShapeFrameAspect.hpp +169 -0
- include/dart/dynamics/detail/ShapeNode.hpp +51 -0
- include/dart/dynamics/detail/Skeleton.hpp +92 -0
- include/dart/dynamics/detail/SkeletonAspect.hpp +181 -0
- include/dart/dynamics/detail/SoftBodyNodeAspect.hpp +132 -0
- include/dart/dynamics/detail/SpecializedNodeManager.hpp +324 -0
- include/dart/dynamics/detail/TemplatedJacobianNode.hpp +294 -0
- include/dart/dynamics/detail/TranslationalJoint2DAspect.hpp +140 -0
- include/dart/dynamics/detail/UniversalJointAspect.hpp +86 -0
- include/dart/dynamics/dynamics.hpp +14 -0
- include/dart/dynamics/ikfast.h +345 -0
- include/dart/external/convhull_3d/convhull_3d.h +1878 -0
- include/dart/external/convhull_3d/safe_convhull_3d.h +53 -0
- include/dart/external/odelcpsolver/common.h +418 -0
- include/dart/external/odelcpsolver/error.h +62 -0
- include/dart/external/odelcpsolver/lcp.h +75 -0
- include/dart/external/odelcpsolver/matrix.h +277 -0
- include/dart/external/odelcpsolver/misc.h +82 -0
- include/dart/external/odelcpsolver/odeconfig.h +110 -0
- include/dart/gui/osg/DefaultEventHandler.hpp +237 -0
- include/dart/gui/osg/DragAndDrop.hpp +360 -0
- include/dart/gui/osg/GridVisual.hpp +218 -0
- include/dart/gui/osg/ImGuiHandler.hpp +113 -0
- include/dart/gui/osg/ImGuiViewer.hpp +83 -0
- include/dart/gui/osg/ImGuiWidget.hpp +91 -0
- include/dart/gui/osg/IncludeImGui.hpp +75 -0
- include/dart/gui/osg/InteractiveFrame.hpp +170 -0
- include/dart/gui/osg/MouseEventHandler.hpp +76 -0
- include/dart/gui/osg/RealTimeWorldNode.hpp +126 -0
- include/dart/gui/osg/ShapeFrameNode.hpp +117 -0
- include/dart/gui/osg/SupportPolygonVisual.hpp +202 -0
- include/dart/gui/osg/TrackballManipulator.hpp +97 -0
- include/dart/gui/osg/Utils.hpp +120 -0
- include/dart/gui/osg/Viewer.hpp +427 -0
- include/dart/gui/osg/WorldNode.hpp +211 -0
- include/dart/gui/osg/all.hpp +19 -0
- include/dart/gui/osg/detail/CameraModeCallback.hpp +82 -0
- include/dart/gui/osg/detail/Utils-impl.hpp +160 -0
- include/dart/gui/osg/osg.hpp +14 -0
- include/dart/gui/osg/render/BoxShapeNode.hpp +74 -0
- include/dart/gui/osg/render/CapsuleShapeNode.hpp +75 -0
- include/dart/gui/osg/render/ConeShapeNode.hpp +74 -0
- include/dart/gui/osg/render/CylinderShapeNode.hpp +75 -0
- include/dart/gui/osg/render/EllipsoidShapeNode.hpp +76 -0
- include/dart/gui/osg/render/HeightmapShapeNode.hpp +485 -0
- include/dart/gui/osg/render/LineSegmentShapeNode.hpp +75 -0
- include/dart/gui/osg/render/MeshShapeNode.hpp +86 -0
- include/dart/gui/osg/render/MultiSphereShapeNode.hpp +76 -0
- include/dart/gui/osg/render/PlaneShapeNode.hpp +75 -0
- include/dart/gui/osg/render/PointCloudShapeNode.hpp +85 -0
- include/dart/gui/osg/render/PyramidShapeNode.hpp +75 -0
- include/dart/gui/osg/render/ShapeNode.hpp +126 -0
- include/dart/gui/osg/render/SoftMeshShapeNode.hpp +75 -0
- include/dart/gui/osg/render/SphereShapeNode.hpp +76 -0
- include/dart/gui/osg/render/VoxelGridShapeNode.hpp +83 -0
- include/dart/gui/osg/render/WarningShapeNode.hpp +64 -0
- include/dart/gui/osg/render/all.hpp +19 -0
- include/dart/gui/osg/render/render.hpp +14 -0
- include/dart/integration/EulerIntegrator.hpp +64 -0
- include/dart/integration/Integrator.hpp +104 -0
- include/dart/integration/RK4Integrator.hpp +68 -0
- include/dart/integration/SemiImplicitEulerIntegrator.hpp +64 -0
- include/dart/integration/all.hpp +6 -0
- include/dart/integration/integration.hpp +14 -0
- include/dart/lcpsolver/Lemke.hpp +54 -0
- include/dart/lcpsolver/ODELCPSolver.hpp +88 -0
- include/dart/lcpsolver/all.hpp +4 -0
- include/dart/lcpsolver/lcpsolver.hpp +14 -0
- include/dart/math/ConfigurationSpace.hpp +144 -0
- include/dart/math/Constants.hpp +79 -0
- include/dart/math/Geometry.hpp +659 -0
- include/dart/math/Helpers.hpp +481 -0
- include/dart/math/Icosphere.hpp +106 -0
- include/dart/math/MathTypes.hpp +100 -0
- include/dart/math/Mesh.hpp +108 -0
- include/dart/math/Random.hpp +225 -0
- include/dart/math/TriMesh.hpp +121 -0
- include/dart/math/all.hpp +11 -0
- include/dart/math/detail/ConfigurationSpace.hpp +235 -0
- include/dart/math/detail/Geometry-impl.hpp +126 -0
- include/dart/math/detail/Icosphere-impl.hpp +214 -0
- include/dart/math/detail/Mesh-impl.hpp +151 -0
- include/dart/math/detail/Random-impl.hpp +353 -0
- include/dart/math/detail/TriMesh-impl.hpp +202 -0
- include/dart/math/math.hpp +14 -0
- include/dart/optimizer/Function.hpp +203 -0
- include/dart/optimizer/GenericMultiObjectiveProblem.hpp +174 -0
- include/dart/optimizer/GradientDescentSolver.hpp +240 -0
- include/dart/optimizer/MultiObjectiveProblem.hpp +168 -0
- include/dart/optimizer/MultiObjectiveSolver.hpp +168 -0
- include/dart/optimizer/Population.hpp +108 -0
- include/dart/optimizer/Problem.hpp +191 -0
- include/dart/optimizer/Solver.hpp +182 -0
- include/dart/optimizer/all.hpp +10 -0
- include/dart/optimizer/ipopt/BackwardCompatibility.hpp +43 -0
- include/dart/optimizer/ipopt/IpoptSolver.hpp +223 -0
- include/dart/optimizer/ipopt/all.hpp +4 -0
- include/dart/optimizer/ipopt/ipopt.hpp +14 -0
- include/dart/optimizer/nlopt/NloptSolver.hpp +212 -0
- include/dart/optimizer/nlopt/all.hpp +3 -0
- include/dart/optimizer/nlopt/nlopt.hpp +14 -0
- include/dart/optimizer/optimizer.hpp +14 -0
- include/dart/simulation/Recording.hpp +118 -0
- include/dart/simulation/SmartPointer.hpp +46 -0
- include/dart/simulation/World.hpp +405 -0
- include/dart/simulation/all.hpp +5 -0
- include/dart/simulation/detail/World-impl.hpp +129 -0
- include/dart/simulation/simulation.hpp +14 -0
- include/dart/utils/C3D.hpp +107 -0
- include/dart/utils/CompositeResourceRetriever.hpp +97 -0
- include/dart/utils/DartResourceRetriever.hpp +104 -0
- include/dart/utils/FileInfoC3D.hpp +91 -0
- include/dart/utils/FileInfoDof.hpp +109 -0
- include/dart/utils/FileInfoWorld.hpp +75 -0
- include/dart/utils/PackageResourceRetriever.hpp +118 -0
- include/dart/utils/SkelParser.hpp +70 -0
- include/dart/utils/VskParser.hpp +108 -0
- include/dart/utils/XmlHelpers.hpp +243 -0
- include/dart/utils/all.hpp +14 -0
- include/dart/utils/detail/XmlHelpers-impl.hpp +213 -0
- include/dart/utils/mjcf/MjcfParser.hpp +80 -0
- include/dart/utils/mjcf/all.hpp +3 -0
- include/dart/utils/mjcf/mjcf.hpp +14 -0
- include/dart/utils/sdf/SdfParser.hpp +98 -0
- include/dart/utils/sdf/all.hpp +3 -0
- include/dart/utils/sdf/sdf.hpp +14 -0
- include/dart/utils/urdf/BackwardCompatibility.hpp +52 -0
- include/dart/utils/urdf/DartLoader.hpp +277 -0
- include/dart/utils/urdf/IncludeUrdf.hpp +47 -0
- include/dart/utils/urdf/URDFTypes.hpp +42 -0
- include/dart/utils/urdf/all.hpp +5 -0
- include/dart/utils/urdf/urdf.hpp +14 -0
- include/dart/utils/urdf/urdf_world_parser.hpp +83 -0
- include/dart/utils/utils.hpp +14 -0
- lib64/libdart-collision-bullet.a +0 -0
- lib64/libdart-collision-ode.a +0 -0
- lib64/libdart-external-odelcpsolver.a +0 -0
- lib64/libdart-gui-osg.a +0 -0
- lib64/libdart-optimizer-ipopt.a +0 -0
- lib64/libdart-optimizer-nlopt.a +0 -0
- lib64/libdart-utils-urdf.a +0 -0
- lib64/libdart-utils.a +0 -0
- lib64/libdart.a +0 -0
- lib64/pkgconfig/dart.pc +12 -0
- share/dart/cmake/DARTConfig.cmake +194 -0
- share/dart/cmake/DARTConfigVersion.cmake +65 -0
- share/dart/cmake/DARTFindBullet.cmake +96 -0
- share/dart/cmake/DARTFindEigen3.cmake +9 -0
- share/dart/cmake/DARTFindIPOPT.cmake +20 -0
- share/dart/cmake/DARTFindNLOPT.cmake +17 -0
- share/dart/cmake/DARTFindODE.cmake +23 -0
- share/dart/cmake/DARTFindOpenSceneGraph.cmake +69 -0
- share/dart/cmake/DARTFindassimp.cmake +18 -0
- share/dart/cmake/DARTFindfcl.cmake +23 -0
- share/dart/cmake/DARTFindfmt.cmake +9 -0
- share/dart/cmake/DARTFindimgui.cmake +21 -0
- share/dart/cmake/DARTFindoctomap.cmake +17 -0
- share/dart/cmake/DARTFindspdlog.cmake +9 -0
- share/dart/cmake/DARTFindtinyxml2.cmake +27 -0
- share/dart/cmake/DARTFindurdfdom.cmake +29 -0
- share/dart/cmake/FindIPOPT.cmake +54 -0
- share/dart/cmake/FindNLOPT.cmake +54 -0
- share/dart/cmake/FindODE.cmake +54 -0
- share/dart/cmake/Findassimp.cmake +56 -0
- share/dart/cmake/Findfcl.cmake +67 -0
- share/dart/cmake/Findimgui.cmake +70 -0
- share/dart/cmake/Findtinyxml2.cmake +54 -0
- share/dart/cmake/dart_collision-bulletComponent.cmake +19 -0
- share/dart/cmake/dart_collision-bulletTargets-release.cmake +19 -0
- share/dart/cmake/dart_collision-bulletTargets.cmake +122 -0
- share/dart/cmake/dart_collision-odeComponent.cmake +19 -0
- share/dart/cmake/dart_collision-odeTargets-release.cmake +19 -0
- share/dart/cmake/dart_collision-odeTargets.cmake +122 -0
- share/dart/cmake/dart_dartComponent.cmake +19 -0
- share/dart/cmake/dart_dartTargets-release.cmake +19 -0
- share/dart/cmake/dart_dartTargets.cmake +125 -0
- share/dart/cmake/dart_external-odelcpsolverComponent.cmake +19 -0
- share/dart/cmake/dart_external-odelcpsolverTargets-release.cmake +19 -0
- share/dart/cmake/dart_external-odelcpsolverTargets.cmake +106 -0
- share/dart/cmake/dart_gui-osgComponent.cmake +19 -0
- share/dart/cmake/dart_gui-osgTargets-release.cmake +19 -0
- share/dart/cmake/dart_gui-osgTargets.cmake +122 -0
- share/dart/cmake/dart_optimizer-ipoptComponent.cmake +19 -0
- share/dart/cmake/dart_optimizer-ipoptTargets-release.cmake +19 -0
- share/dart/cmake/dart_optimizer-ipoptTargets.cmake +123 -0
- share/dart/cmake/dart_optimizer-nloptComponent.cmake +19 -0
- share/dart/cmake/dart_optimizer-nloptTargets-release.cmake +19 -0
- share/dart/cmake/dart_optimizer-nloptTargets.cmake +123 -0
- share/dart/cmake/dart_utils-urdfComponent.cmake +19 -0
- share/dart/cmake/dart_utils-urdfTargets-release.cmake +19 -0
- share/dart/cmake/dart_utils-urdfTargets.cmake +122 -0
- share/dart/cmake/dart_utilsComponent.cmake +19 -0
- share/dart/cmake/dart_utilsTargets-release.cmake +19 -0
- share/dart/cmake/dart_utilsTargets.cmake +122 -0
- share/dart/package.xml +42 -0
- share/doc/dart/data/c3d/nick_freeform_001.c3d +0 -0
- share/doc/dart/data/c3d/squat.c3d +0 -0
- share/doc/dart/data/dof/RHand.dof +205 -0
- share/doc/dart/data/dof/fixedHand.dof +205 -0
- share/doc/dart/data/dof/init_Tpose.dof +240 -0
- share/doc/dart/data/dof/same.dof +1003 -0
- share/doc/dart/data/dof/simMotion.dof +1817 -0
- share/doc/dart/data/dof/simMotion1.dof +1355 -0
- share/doc/dart/data/etc/fort.4 +43 -0
- share/doc/dart/data/humanJointLimits/neuralnets/net-larm +0 -0
- share/doc/dart/data/humanJointLimits/neuralnets/net-lleg +0 -0
- share/doc/dart/data/mjcf/openai/LICENSE.md +36 -0
- share/doc/dart/data/mjcf/openai/ant.xml +81 -0
- share/doc/dart/data/mjcf/openai/half_cheetah.xml +96 -0
- share/doc/dart/data/mjcf/openai/hopper.xml +50 -0
- share/doc/dart/data/mjcf/openai/humanoid.xml +121 -0
- share/doc/dart/data/mjcf/openai/humanoidstandup.xml +121 -0
- share/doc/dart/data/mjcf/openai/inverted_double_pendulum.xml +47 -0
- share/doc/dart/data/mjcf/openai/inverted_pendulum.xml +27 -0
- share/doc/dart/data/mjcf/openai/point.xml +31 -0
- share/doc/dart/data/mjcf/openai/pusher.xml +91 -0
- share/doc/dart/data/mjcf/openai/reacher.xml +39 -0
- share/doc/dart/data/mjcf/openai/robotics/fetch/pick_and_place.xml +35 -0
- share/doc/dart/data/mjcf/openai/robotics/fetch/push.xml +32 -0
- share/doc/dart/data/mjcf/openai/robotics/fetch/reach.xml +26 -0
- share/doc/dart/data/mjcf/openai/robotics/fetch/robot.xml +123 -0
- share/doc/dart/data/mjcf/openai/robotics/fetch/shared.xml +66 -0
- share/doc/dart/data/mjcf/openai/robotics/fetch/slide.xml +32 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/.get +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/base_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/bellows_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/elbow_flex_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/estop_link.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/forearm_roll_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/gripper_link.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/head_pan_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/head_tilt_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/l_wheel_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/laser_link.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/r_wheel_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/shoulder_lift_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/shoulder_pan_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/torso_fixed_link.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/torso_lift_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/upperarm_roll_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/wrist_flex_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/wrist_roll_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/textures/block.png +0 -0
- share/doc/dart/data/mjcf/openai/robotics/textures/block_hidden.png +0 -0
- share/doc/dart/data/mjcf/openai/striker.xml +101 -0
- share/doc/dart/data/mjcf/openai/swimmer.xml +39 -0
- share/doc/dart/data/mjcf/openai/thrower.xml +127 -0
- share/doc/dart/data/mjcf/openai/walker2d.xml +62 -0
- share/doc/dart/data/mjcf/test/default.xml +17 -0
- share/doc/dart/data/mjcf/test/include_default.xml +8 -0
- share/doc/dart/data/mjcf/test/include_main.xml +12 -0
- share/doc/dart/data/obj/Body_Hip.obj +22830 -0
- share/doc/dart/data/obj/BoxSmall.obj +23 -0
- share/doc/dart/data/obj/foot.obj +10970 -0
- share/doc/dart/data/other/torus1.path +11991 -0
- share/doc/dart/data/other/torus1.tris +5329 -0
- share/doc/dart/data/other/torus2.path +11991 -0
- share/doc/dart/data/other/torus2.tris +12961 -0
- share/doc/dart/data/screencap/.KEEP +0 -0
- share/doc/dart/data/sdf/atlas/atlas_v3.urdf +914 -0
- share/doc/dart/data/sdf/atlas/atlas_v3_no_head.sdf +1541 -0
- share/doc/dart/data/sdf/atlas/atlas_v3_no_head.urdf +914 -0
- share/doc/dart/data/sdf/atlas/atlas_v3_no_head_soft_feet.sdf +1567 -0
- share/doc/dart/data/sdf/atlas/ground.urdf +28 -0
- share/doc/dart/data/sdf/atlas/head.dae +8607 -0
- share/doc/dart/data/sdf/atlas/head.stl +0 -0
- share/doc/dart/data/sdf/atlas/head_camera.dae +2326 -0
- share/doc/dart/data/sdf/atlas/head_camera.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_clav.dae +1278 -0
- share/doc/dart/data/sdf/atlas/l_clav.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_farm.dae +1204 -0
- share/doc/dart/data/sdf/atlas/l_farm.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_foot.dae +1330 -0
- share/doc/dart/data/sdf/atlas/l_foot.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_hand.dae +964 -0
- share/doc/dart/data/sdf/atlas/l_hand.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_larm.dae +1378 -0
- share/doc/dart/data/sdf/atlas/l_larm.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_lglut.dae +897 -0
- share/doc/dart/data/sdf/atlas/l_lglut.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_lleg.dae +6660 -0
- share/doc/dart/data/sdf/atlas/l_lleg.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_scap.dae +1531 -0
- share/doc/dart/data/sdf/atlas/l_scap.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_talus.dae +374 -0
- share/doc/dart/data/sdf/atlas/l_talus.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_uarm.dae +1204 -0
- share/doc/dart/data/sdf/atlas/l_uarm.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_uglut.dae +398 -0
- share/doc/dart/data/sdf/atlas/l_uglut.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_uleg.dae +9087 -0
- share/doc/dart/data/sdf/atlas/l_uleg.stl +0 -0
- share/doc/dart/data/sdf/atlas/ltorso.dae +614 -0
- share/doc/dart/data/sdf/atlas/ltorso.stl +0 -0
- share/doc/dart/data/sdf/atlas/mtorso.dae +266 -0
- share/doc/dart/data/sdf/atlas/mtorso.stl +0 -0
- share/doc/dart/data/sdf/atlas/pelvis.dae +8727 -0
- share/doc/dart/data/sdf/atlas/pelvis.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_clav.dae +1278 -0
- share/doc/dart/data/sdf/atlas/r_clav.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_farm.dae +1204 -0
- share/doc/dart/data/sdf/atlas/r_farm.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_foot.dae +1330 -0
- share/doc/dart/data/sdf/atlas/r_foot.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_hand.dae +904 -0
- share/doc/dart/data/sdf/atlas/r_hand.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_larm.dae +1378 -0
- share/doc/dart/data/sdf/atlas/r_larm.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_lglut.dae +897 -0
- share/doc/dart/data/sdf/atlas/r_lglut.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_lleg.dae +6661 -0
- share/doc/dart/data/sdf/atlas/r_lleg.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_scap.dae +1531 -0
- share/doc/dart/data/sdf/atlas/r_scap.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_talus.dae +374 -0
- share/doc/dart/data/sdf/atlas/r_talus.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_uarm.dae +1144 -0
- share/doc/dart/data/sdf/atlas/r_uarm.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_uglut.dae +398 -0
- share/doc/dart/data/sdf/atlas/r_uglut.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_uleg.dae +9087 -0
- share/doc/dart/data/sdf/atlas/r_uleg.stl +0 -0
- share/doc/dart/data/sdf/atlas/utorso.dae +28342 -0
- share/doc/dart/data/sdf/atlas/utorso.stl +0 -0
- share/doc/dart/data/sdf/atlas/utorso_mod.dae +16508 -0
- share/doc/dart/data/sdf/atlas/utorso_mod.stl +0 -0
- share/doc/dart/data/sdf/atlas/utorso_pack.dae +8521 -0
- share/doc/dart/data/sdf/atlas/utorso_pack.stl +0 -0
- share/doc/dart/data/sdf/benchmark.world +2510 -0
- share/doc/dart/data/sdf/double_pendulum.world +168 -0
- share/doc/dart/data/sdf/double_pendulum_with_base.world +263 -0
- share/doc/dart/data/sdf/empty.world +13 -0
- share/doc/dart/data/sdf/ground.world +48 -0
- share/doc/dart/data/sdf/materials/textures/atlas_cage_and_camera_diffuse_flat.jpg +0 -0
- share/doc/dart/data/sdf/materials/textures/drc_extremities_diffuse.jpg +0 -0
- share/doc/dart/data/sdf/materials/textures/drc_labels_1.jpg +0 -0
- share/doc/dart/data/sdf/materials/textures/drc_torso_head_diffuse.jpg +0 -0
- share/doc/dart/data/sdf/materials/textures/extremities_diffuse_unplugged.jpg +0 -0
- share/doc/dart/data/sdf/materials/textures/right_leg_diffuse_unplugged.jpg +0 -0
- share/doc/dart/data/sdf/materials/textures/torso_diffuse_unplugged.jpg +0 -0
- share/doc/dart/data/sdf/quad.sdf +867 -0
- share/doc/dart/data/sdf/test/force_torque_test.world +173 -0
- share/doc/dart/data/sdf/test/force_torque_test2.world +214 -0
- share/doc/dart/data/sdf/test/issue1193_revolute_test.sdf +70 -0
- share/doc/dart/data/sdf/test/issue1193_revolute_with_offset_test.sdf +70 -0
- share/doc/dart/data/sdf/test/issue1624_cubes.sdf +5037 -0
- share/doc/dart/data/sdf/test/single_bodynode_skeleton.world +55 -0
- share/doc/dart/data/sdf/test/test_issue1583.model +45 -0
- share/doc/dart/data/sdf/test/test_issue1596.model +182 -0
- share/doc/dart/data/sdf/test/test_skeleton_joint.world +278 -0
- share/doc/dart/data/skel/biped.skel +850 -0
- share/doc/dart/data/skel/bullet_collision.skel +174 -0
- share/doc/dart/data/skel/chain.skel +212 -0
- share/doc/dart/data/skel/cube.skel +71 -0
- share/doc/dart/data/skel/cubes.skel +137 -0
- share/doc/dart/data/skel/empty.skel +10 -0
- share/doc/dart/data/skel/freeChain.skel +212 -0
- share/doc/dart/data/skel/fullbody1.skel +1177 -0
- share/doc/dart/data/skel/ground.skel +31 -0
- share/doc/dart/data/skel/joint_limit.skel +123 -0
- share/doc/dart/data/skel/kima/abdomen.dae +18933 -0
- share/doc/dart/data/skel/kima/head.dae +34634 -0
- share/doc/dart/data/skel/kima/kima_human_edited.skel +933 -0
- share/doc/dart/data/skel/kima/kima_human_left_arm.skel +323 -0
- share/doc/dart/data/skel/kima/kima_human_left_leg.skel +327 -0
- share/doc/dart/data/skel/kima/l-clavicle.dae +20111 -0
- share/doc/dart/data/skel/kima/l-foot.dae +28208 -0
- share/doc/dart/data/skel/kima/pelvis.dae +35919 -0
- share/doc/dart/data/skel/kima/r-clavicle.dae +20090 -0
- share/doc/dart/data/skel/kima/thorax.dae +47337 -0
- share/doc/dart/data/skel/mesh_collision.skel +137 -0
- share/doc/dart/data/skel/shapes.skel +378 -0
- share/doc/dart/data/skel/skateboard.skel +222 -0
- share/doc/dart/data/skel/softBodies.skel +284 -0
- share/doc/dart/data/skel/soft_cubes.skel +134 -0
- share/doc/dart/data/skel/soft_open_chain.skel +241 -0
- share/doc/dart/data/skel/sphere.skel +74 -0
- share/doc/dart/data/skel/spheres.skel +118 -0
- share/doc/dart/data/skel/test/SimplePendulum.skel +141 -0
- share/doc/dart/data/skel/test/ball_joints.skel +49 -0
- share/doc/dart/data/skel/test/box_stacking.skel +346 -0
- share/doc/dart/data/skel/test/boxes.skel +52 -0
- share/doc/dart/data/skel/test/chainwhipa.skel +193 -0
- share/doc/dart/data/skel/test/collision_of_prescribed_joints_test.skel +249 -0
- share/doc/dart/data/skel/test/dof_attribute_test.skel +206 -0
- share/doc/dart/data/skel/test/double_pendulum.skel +76 -0
- share/doc/dart/data/skel/test/double_pendulum_ball_joint.skel +76 -0
- share/doc/dart/data/skel/test/double_pendulum_euler_joint.skel +78 -0
- share/doc/dart/data/skel/test/double_pendulum_with_base.skel +1390 -0
- share/doc/dart/data/skel/test/drop.skel +116 -0
- share/doc/dart/data/skel/test/drop_BENCHMARK.skel +10 -0
- share/doc/dart/data/skel/test/drop_unrotated_box.skel +156 -0
- share/doc/dart/data/skel/test/empty.skel +10 -0
- share/doc/dart/data/skel/test/file_info_world_test.skel +1177 -0
- share/doc/dart/data/skel/test/free_joints.skel +49 -0
- share/doc/dart/data/skel/test/gazebo/drop_test.skel +161 -0
- share/doc/dart/data/skel/test/gazebo/force_torque_test.skel +138 -0
- share/doc/dart/data/skel/test/gazebo/force_torque_test2.skel +171 -0
- share/doc/dart/data/skel/test/hybrid_dynamics_test.skel +172 -0
- share/doc/dart/data/skel/test/joint_actuator_type_test.skel +185 -0
- share/doc/dart/data/skel/test/joint_dynamics_elements_test.skel +103 -0
- share/doc/dart/data/skel/test/joint_friction_test.skel +80 -0
- share/doc/dart/data/skel/test/joint_limit_test.skel +80 -0
- share/doc/dart/data/skel/test/planar_joint.skel +167 -0
- share/doc/dart/data/skel/test/serial_chain_BENCHMARK.skel +10 -0
- share/doc/dart/data/skel/test/serial_chain_ball_joint.skel +212 -0
- share/doc/dart/data/skel/test/serial_chain_ball_joint_20.skel +412 -0
- share/doc/dart/data/skel/test/serial_chain_ball_joint_40.skel +812 -0
- share/doc/dart/data/skel/test/serial_chain_eulerxyz_joint.skel +224 -0
- share/doc/dart/data/skel/test/serial_chain_revolute_joint.skel +244 -0
- share/doc/dart/data/skel/test/simple_tree_structure.skel +108 -0
- share/doc/dart/data/skel/test/simple_tree_structure_ball_joint.skel +108 -0
- share/doc/dart/data/skel/test/simple_tree_structure_euler_joint.skel +111 -0
- share/doc/dart/data/skel/test/single_pendulum.skel +55 -0
- share/doc/dart/data/skel/test/single_pendulum_ball_joint.skel +55 -0
- share/doc/dart/data/skel/test/single_pendulum_euler_joint.skel +56 -0
- share/doc/dart/data/skel/test/spheres.skel +118 -0
- share/doc/dart/data/skel/test/test_adaptive_deformable.skel +88 -0
- share/doc/dart/data/skel/test/test_articulated_bodies.skel +112 -0
- share/doc/dart/data/skel/test/test_articulated_bodies_10bodies.skel +401 -0
- share/doc/dart/data/skel/test/test_double_pendulum.skel +105 -0
- share/doc/dart/data/skel/test/test_drop_box.skel +87 -0
- share/doc/dart/data/skel/test/test_drop_box_offset.skel +87 -0
- share/doc/dart/data/skel/test/test_drop_low_stiffness.skel +86 -0
- share/doc/dart/data/skel/test/test_drop_sphere.skel +86 -0
- share/doc/dart/data/skel/test/test_shapes.skel +324 -0
- share/doc/dart/data/skel/test/test_single_body.skel +55 -0
- share/doc/dart/data/skel/test/test_single_pendulum.skel +55 -0
- share/doc/dart/data/skel/test/translational_joints.skel +49 -0
- share/doc/dart/data/skel/test/tree_structure.skel +428 -0
- share/doc/dart/data/skel/test/tree_structure_ball_joint.skel +441 -0
- share/doc/dart/data/skel/test/tree_structure_euler_joint.skel +441 -0
- share/doc/dart/data/skel/two_cubes.skel +118 -0
- share/doc/dart/data/skel/vehicle.skel +322 -0
- share/doc/dart/data/test/hello_world.txt +1 -0
- share/doc/dart/data/urdf/KR5/KR5 sixx R650.urdf +397 -0
- share/doc/dart/data/urdf/KR5/ground.urdf +28 -0
- share/doc/dart/data/urdf/KR5/meshes/base_link.STL +0 -0
- share/doc/dart/data/urdf/KR5/meshes/bicep.STL +0 -0
- share/doc/dart/data/urdf/KR5/meshes/elbow.STL +0 -0
- share/doc/dart/data/urdf/KR5/meshes/forearm.STL +0 -0
- share/doc/dart/data/urdf/KR5/meshes/palm.STL +0 -0
- share/doc/dart/data/urdf/KR5/meshes/shoulder.STL +0 -0
- share/doc/dart/data/urdf/KR5/meshes/wrist.STL +0 -0
- share/doc/dart/data/urdf/drchubo/CMakeLists.txt +5 -0
- share/doc/dart/data/urdf/drchubo/drchubo.urdf +1508 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LAP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LAR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LEP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LF1.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LF2.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LF3.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LHP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LHR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LHY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LKP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LSP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LSR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LSY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LWP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LWR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LWY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_NK1_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_NK2.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_NKY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RAP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RAR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_REP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RF1.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RF2.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RF3.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RHP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RHR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RHY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RKP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RSP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RSR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RSY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RWP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RWR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RWY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_TSY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_Torso_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/package.xml +11 -0
- share/doc/dart/data/urdf/test/invalid.urdf +1 -0
- share/doc/dart/data/urdf/test/invalid_mesh.stl +1 -0
- share/doc/dart/data/urdf/test/invalid_mesh.urdf +10 -0
- share/doc/dart/data/urdf/test/issue838.urdf +86 -0
- share/doc/dart/data/urdf/test/joint_properties.urdf +60 -0
- share/doc/dart/data/urdf/test/missing_mesh.urdf +10 -0
- share/doc/dart/data/urdf/test/missing_package.urdf +10 -0
- share/doc/dart/data/urdf/test/primitive_geometry.urdf +12 -0
- share/doc/dart/data/urdf/test/testWorld.urdf +9 -0
- share/doc/dart/data/urdf/wam/meshes/images/base_gray_128x.jpg +0 -0
- share/doc/dart/data/urdf/wam/meshes/images/forearm_256x.jpg +0 -0
- share/doc/dart/data/urdf/wam/meshes/images/lpu_128x.jpg +0 -0
- share/doc/dart/data/urdf/wam/meshes/images/shoulder_256x.jpg +0 -0
- share/doc/dart/data/urdf/wam/meshes/images/upperarm_128x.jpg +0 -0
- share/doc/dart/data/urdf/wam/meshes/images/wrist_yaw_128x.jpg +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam1.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam1.dae +187 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam1_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam2.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam2.dae +187 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam2_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam3.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam3.dae +187 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam3_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam4.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam4.dae +187 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam4_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam5.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam5.dae +187 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam5_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam6.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam6.dae +187 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam6_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam7.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam7.dae +137 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam7_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam_base.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam_base.dae +103 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam_base_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/wam.urdf +230 -0
- share/doc/dart/data/vsk/Nick01.vsk +398 -0
- share/doc/dart/data/vsk/SehoonVSK3.vsk +398 -0
- share/doc/dart/data/vsk/Yuting.vsk +398 -0
- share/doc/dart/data/vsk/test/empty.vsk +3 -0
- share/doc/dart/examples/CMakeLists.txt +44 -0
- share/doc/dart/examples/README.md +33 -0
- share/doc/dart/examples/add_delete_skels/CMakeLists.txt +19 -0
- share/doc/dart/examples/add_delete_skels/main.cpp +165 -0
- share/doc/dart/examples/atlas_puppet/CMakeLists.txt +19 -0
- share/doc/dart/examples/atlas_puppet/README.md +20 -0
- share/doc/dart/examples/atlas_puppet/main.cpp +930 -0
- share/doc/dart/examples/atlas_simbicon/AtlasSimbiconEventHandler.cpp +71 -0
- share/doc/dart/examples/atlas_simbicon/AtlasSimbiconEventHandler.hpp +56 -0
- share/doc/dart/examples/atlas_simbicon/AtlasSimbiconWidget.cpp +187 -0
- share/doc/dart/examples/atlas_simbicon/AtlasSimbiconWidget.hpp +85 -0
- share/doc/dart/examples/atlas_simbicon/AtlasSimbiconWorldNode.cpp +134 -0
- share/doc/dart/examples/atlas_simbicon/AtlasSimbiconWorldNode.hpp +75 -0
- share/doc/dart/examples/atlas_simbicon/CMakeLists.txt +19 -0
- share/doc/dart/examples/atlas_simbicon/Controller.cpp +996 -0
- share/doc/dart/examples/atlas_simbicon/Controller.hpp +203 -0
- share/doc/dart/examples/atlas_simbicon/README.md +20 -0
- share/doc/dart/examples/atlas_simbicon/State.cpp +674 -0
- share/doc/dart/examples/atlas_simbicon/State.hpp +336 -0
- share/doc/dart/examples/atlas_simbicon/StateMachine.cpp +222 -0
- share/doc/dart/examples/atlas_simbicon/StateMachine.hpp +134 -0
- share/doc/dart/examples/atlas_simbicon/TerminalCondition.cpp +111 -0
- share/doc/dart/examples/atlas_simbicon/TerminalCondition.hpp +102 -0
- share/doc/dart/examples/atlas_simbicon/main.cpp +102 -0
- share/doc/dart/examples/biped_stand/CMakeLists.txt +19 -0
- share/doc/dart/examples/biped_stand/README.md +20 -0
- share/doc/dart/examples/biped_stand/main.cpp +287 -0
- share/doc/dart/examples/box_stacking/CMakeLists.txt +19 -0
- share/doc/dart/examples/box_stacking/README.md +20 -0
- share/doc/dart/examples/box_stacking/main.cpp +417 -0
- share/doc/dart/examples/boxes/CMakeLists.txt +19 -0
- share/doc/dart/examples/boxes/README.md +20 -0
- share/doc/dart/examples/boxes/main.cpp +157 -0
- share/doc/dart/examples/drag_and_drop/CMakeLists.txt +19 -0
- share/doc/dart/examples/drag_and_drop/README.md +20 -0
- share/doc/dart/examples/drag_and_drop/main.cpp +101 -0
- share/doc/dart/examples/empty/CMakeLists.txt +19 -0
- share/doc/dart/examples/empty/README.md +20 -0
- share/doc/dart/examples/empty/main.cpp +164 -0
- share/doc/dart/examples/fetch/CMakeLists.txt +19 -0
- share/doc/dart/examples/fetch/README.md +20 -0
- share/doc/dart/examples/fetch/main.cpp +246 -0
- share/doc/dart/examples/hardcoded_design/CMakeLists.txt +19 -0
- share/doc/dart/examples/hardcoded_design/HardcodedEventHandler.cpp +71 -0
- share/doc/dart/examples/hardcoded_design/HardcodedEventHandler.hpp +56 -0
- share/doc/dart/examples/hardcoded_design/README.md +27 -0
- share/doc/dart/examples/hardcoded_design/main.cpp +186 -0
- share/doc/dart/examples/heightmap/CMakeLists.txt +19 -0
- share/doc/dart/examples/heightmap/README.md +20 -0
- share/doc/dart/examples/heightmap/main.cpp +460 -0
- share/doc/dart/examples/hello_world/CMakeLists.txt +19 -0
- share/doc/dart/examples/hello_world/README.md +20 -0
- share/doc/dart/examples/hello_world/main.cpp +114 -0
- share/doc/dart/examples/hubo_puppet/CMakeLists.txt +19 -0
- share/doc/dart/examples/hubo_puppet/README.md +20 -0
- share/doc/dart/examples/hubo_puppet/main.cpp +1464 -0
- share/doc/dart/examples/human_joint_limits/CMakeLists.txt +49 -0
- share/doc/dart/examples/human_joint_limits/HumanArmJointLimitConstraint.cpp +411 -0
- share/doc/dart/examples/human_joint_limits/HumanArmJointLimitConstraint.hpp +182 -0
- share/doc/dart/examples/human_joint_limits/HumanLegJointLimitConstraint.cpp +432 -0
- share/doc/dart/examples/human_joint_limits/HumanLegJointLimitConstraint.hpp +179 -0
- share/doc/dart/examples/human_joint_limits/main.cpp +157 -0
- share/doc/dart/examples/hybrid_dynamics/CMakeLists.txt +19 -0
- share/doc/dart/examples/hybrid_dynamics/README.md +17 -0
- share/doc/dart/examples/hybrid_dynamics/main.cpp +187 -0
- share/doc/dart/examples/imgui/CMakeLists.txt +19 -0
- share/doc/dart/examples/imgui/README.md +20 -0
- share/doc/dart/examples/imgui/main.cpp +289 -0
- share/doc/dart/examples/joint_constraints/CMakeLists.txt +19 -0
- share/doc/dart/examples/joint_constraints/Controller.cpp +110 -0
- share/doc/dart/examples/joint_constraints/Controller.hpp +105 -0
- share/doc/dart/examples/joint_constraints/README.md +22 -0
- share/doc/dart/examples/joint_constraints/main.cpp +242 -0
- share/doc/dart/examples/mixed_chain/CMakeLists.txt +19 -0
- share/doc/dart/examples/mixed_chain/README.md +35 -0
- share/doc/dart/examples/mixed_chain/main.cpp +188 -0
- share/doc/dart/examples/operational_space_control/CMakeLists.txt +19 -0
- share/doc/dart/examples/operational_space_control/README.md +20 -0
- share/doc/dart/examples/operational_space_control/main.cpp +338 -0
- share/doc/dart/examples/point_cloud/CMakeLists.txt +19 -0
- share/doc/dart/examples/point_cloud/README.md +20 -0
- share/doc/dart/examples/point_cloud/main.cpp +740 -0
- share/doc/dart/examples/rerun/CMakeLists.txt +19 -0
- share/doc/dart/examples/rigid_chain/CMakeLists.txt +19 -0
- share/doc/dart/examples/rigid_chain/README.md +19 -0
- share/doc/dart/examples/rigid_chain/main.cpp +110 -0
- share/doc/dart/examples/rigid_cubes/CMakeLists.txt +19 -0
- share/doc/dart/examples/rigid_cubes/README.md +91 -0
- share/doc/dart/examples/rigid_cubes/main.cpp +201 -0
- share/doc/dart/examples/rigid_loop/CMakeLists.txt +19 -0
- share/doc/dart/examples/rigid_loop/README.md +34 -0
- share/doc/dart/examples/rigid_loop/main.cpp +127 -0
- share/doc/dart/examples/rigid_shapes/CMakeLists.txt +19 -0
- share/doc/dart/examples/rigid_shapes/README.md +19 -0
- share/doc/dart/examples/rigid_shapes/main.cpp +250 -0
- share/doc/dart/examples/simple_frames/CMakeLists.txt +19 -0
- share/doc/dart/examples/simple_frames/README.md +27 -0
- share/doc/dart/examples/simple_frames/main.cpp +124 -0
- share/doc/dart/examples/simulation_event_handler/CMakeLists.txt +19 -0
- share/doc/dart/examples/simulation_event_handler/README.md +189 -0
- share/doc/dart/examples/simulation_event_handler/SimulationEventHandler.cpp +572 -0
- share/doc/dart/examples/simulation_event_handler/SimulationEventHandler.hpp +211 -0
- share/doc/dart/examples/simulation_event_handler/main.cpp +277 -0
- share/doc/dart/examples/soft_bodies/CMakeLists.txt +19 -0
- share/doc/dart/examples/soft_bodies/README.md +20 -0
- share/doc/dart/examples/soft_bodies/main.cpp +219 -0
- share/doc/dart/examples/speed_test/CMakeLists.txt +19 -0
- share/doc/dart/examples/speed_test/README.md +20 -0
- share/doc/dart/examples/speed_test/main.cpp +250 -0
- share/doc/dart/examples/tinkertoy/CMakeLists.txt +19 -0
- share/doc/dart/examples/tinkertoy/README.md +20 -0
- share/doc/dart/examples/tinkertoy/TinkertoyWidget.cpp +208 -0
- share/doc/dart/examples/tinkertoy/TinkertoyWidget.hpp +70 -0
- share/doc/dart/examples/tinkertoy/TinkertoyWorldNode.cpp +35 -0
- share/doc/dart/examples/tinkertoy/TinkertoyWorldNode.hpp +470 -0
- share/doc/dart/examples/tinkertoy/main.cpp +186 -0
- share/doc/dart/examples/vehicle/CMakeLists.txt +19 -0
- share/doc/dart/examples/vehicle/README.md +22 -0
- share/doc/dart/examples/vehicle/main.cpp +195 -0
- share/doc/dart/examples/wam_ikfast/CMakeLists.txt +22 -0
- share/doc/dart/examples/wam_ikfast/Helpers.cpp +148 -0
- share/doc/dart/examples/wam_ikfast/Helpers.hpp +46 -0
- share/doc/dart/examples/wam_ikfast/InputHandler.cpp +110 -0
- share/doc/dart/examples/wam_ikfast/InputHandler.hpp +73 -0
- share/doc/dart/examples/wam_ikfast/README.md +20 -0
- share/doc/dart/examples/wam_ikfast/WamWorld.cpp +46 -0
- share/doc/dart/examples/wam_ikfast/WamWorld.hpp +53 -0
- share/doc/dart/examples/wam_ikfast/ikfast/CMakeLists.txt +11 -0
- share/doc/dart/examples/wam_ikfast/ikfast/ikfast71.Transform6D.4_6_9_10_11_12_f8.cpp +14930 -0
- share/doc/dart/examples/wam_ikfast/osgWamIkFast.cpp +96 -0
- share/doc/dart/tutorials/CMakeLists.txt +12 -0
- share/doc/dart/tutorials/README.md +45 -0
- share/doc/dart/tutorials/tutorial_biped/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_biped/README +18 -0
- share/doc/dart/tutorials/tutorial_biped/main.cpp +374 -0
- share/doc/dart/tutorials/tutorial_biped_finished/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_biped_finished/README +18 -0
- share/doc/dart/tutorials/tutorial_biped_finished/main.cpp +532 -0
- share/doc/dart/tutorials/tutorial_collisions/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_collisions/README +18 -0
- share/doc/dart/tutorials/tutorial_collisions/main.cpp +506 -0
- share/doc/dart/tutorials/tutorial_collisions_finished/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_collisions_finished/README +18 -0
- share/doc/dart/tutorials/tutorial_collisions_finished/main.cpp +679 -0
- share/doc/dart/tutorials/tutorial_dominoes/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_dominoes/README +18 -0
- share/doc/dart/tutorials/tutorial_dominoes/main.cpp +394 -0
- share/doc/dart/tutorials/tutorial_dominoes_finished/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_dominoes_finished/README +18 -0
- share/doc/dart/tutorials/tutorial_dominoes_finished/main.cpp +559 -0
- share/doc/dart/tutorials/tutorial_multi_pendulum/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_multi_pendulum/README +18 -0
- share/doc/dart/tutorials/tutorial_multi_pendulum/main.cpp +443 -0
- share/doc/dart/tutorials/tutorial_multi_pendulum_finished/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_multi_pendulum_finished/README +18 -0
- share/doc/dart/tutorials/tutorial_multi_pendulum_finished/main.cpp +512 -0
|
@@ -0,0 +1,1278 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<COLLADA xmlns="http://www.collada.org/2005/11/COLLADASchema" version="1.4.1">
|
|
3
|
+
<asset><contributor><author></author><authoring_tool>FBX COLLADA exporter</authoring_tool><comments></comments></contributor><created>2013-08-22T20:21:52Z</created><keywords></keywords><modified>2013-08-22T20:21:52Z</modified><revision></revision><subject></subject><title></title><unit meter="1.000000" name="centimeter"></unit><up_axis>Z_UP</up_axis></asset>
|
|
4
|
+
<library_images>
|
|
5
|
+
<image id="drc_extremities_diffuse-image" name="drc_extremities_diffuse"><init_from>../materials/textures/drc_extremities_diffuse.jpg</init_from></image>
|
|
6
|
+
</library_images>
|
|
7
|
+
<library_materials>
|
|
8
|
+
<material id="drc_extremities_diffuse" name="drc_extremities_diffuse">
|
|
9
|
+
<instance_effect url="#drc_extremities_diffuse-fx"/>
|
|
10
|
+
</material>
|
|
11
|
+
</library_materials>
|
|
12
|
+
<library_effects>
|
|
13
|
+
<effect id="drc_extremities_diffuse-fx" name="drc_extremities_diffuse">
|
|
14
|
+
<profile_COMMON>
|
|
15
|
+
<technique sid="standard">
|
|
16
|
+
<phong>
|
|
17
|
+
<emission>
|
|
18
|
+
<color sid="emission">0.000000 0.000000 0.000000 1.000000</color>
|
|
19
|
+
</emission>
|
|
20
|
+
<ambient>
|
|
21
|
+
<color sid="ambient">0.588235 0.588235 0.588235 1.000000</color>
|
|
22
|
+
</ambient>
|
|
23
|
+
<diffuse>
|
|
24
|
+
<texture texture="drc_extremities_diffuse-image" texcoord="CHANNEL0">
|
|
25
|
+
<extra>
|
|
26
|
+
<technique profile="MAYA">
|
|
27
|
+
<wrapU sid="wrapU0">TRUE</wrapU>
|
|
28
|
+
<wrapV sid="wrapV0">TRUE</wrapV>
|
|
29
|
+
<blend_mode>ADD</blend_mode>
|
|
30
|
+
</technique>
|
|
31
|
+
</extra>
|
|
32
|
+
</texture>
|
|
33
|
+
</diffuse>
|
|
34
|
+
<specular>
|
|
35
|
+
<color sid="specular">0.000000 0.000000 0.000000 1.000000</color>
|
|
36
|
+
</specular>
|
|
37
|
+
<shininess>
|
|
38
|
+
<float sid="shininess">2.000000</float>
|
|
39
|
+
</shininess>
|
|
40
|
+
<reflective>
|
|
41
|
+
<color sid="reflective">0.000000 0.000000 0.000000 1.000000</color>
|
|
42
|
+
</reflective>
|
|
43
|
+
<reflectivity>
|
|
44
|
+
<float sid="reflectivity">1.000000</float>
|
|
45
|
+
</reflectivity>
|
|
46
|
+
<transparent opaque="RGB_ZERO">
|
|
47
|
+
<color sid="transparent">1.000000 1.000000 1.000000 1.000000</color>
|
|
48
|
+
</transparent>
|
|
49
|
+
<transparency>
|
|
50
|
+
<float sid="transparency">0.000000</float>
|
|
51
|
+
</transparency>
|
|
52
|
+
</phong>
|
|
53
|
+
</technique>
|
|
54
|
+
</profile_COMMON>
|
|
55
|
+
</effect>
|
|
56
|
+
</library_effects>
|
|
57
|
+
<library_geometries>
|
|
58
|
+
<geometry id="drc_l_clav-lib" name="drc_l_clavMesh">
|
|
59
|
+
<mesh>
|
|
60
|
+
<source id="drc_l_clav-POSITION">
|
|
61
|
+
<float_array id="drc_l_clav-POSITION-array" count="414">
|
|
62
|
+
-0.065726 0.201262 0.022449
|
|
63
|
+
-0.065655 0.184893 0.022449
|
|
64
|
+
-0.065655 0.184893 -0.023342
|
|
65
|
+
-0.065726 0.201262 -0.023343
|
|
66
|
+
0.050069 0.201262 0.022449
|
|
67
|
+
0.050069 0.201262 -0.023343
|
|
68
|
+
0.050069 0.184822 -0.023342
|
|
69
|
+
0.050069 0.184822 0.022450
|
|
70
|
+
-0.054146 0.201262 -0.023343
|
|
71
|
+
-0.054146 0.201262 0.022449
|
|
72
|
+
-0.054076 0.184893 -0.023342
|
|
73
|
+
-0.054076 0.184893 0.022449
|
|
74
|
+
-0.007257 0.232999 -0.023342
|
|
75
|
+
-0.007257 0.232999 0.022449
|
|
76
|
+
-0.054146 0.232999 0.022449
|
|
77
|
+
-0.054146 0.232999 -0.023342
|
|
78
|
+
-0.007257 0.184822 -0.023342
|
|
79
|
+
-0.007257 0.201262 -0.023343
|
|
80
|
+
-0.007257 0.184822 0.022450
|
|
81
|
+
-0.007257 0.201262 0.022449
|
|
82
|
+
0.050069 0.214700 0.022449
|
|
83
|
+
0.050069 0.214700 -0.023342
|
|
84
|
+
-0.007185 0.214771 0.022449
|
|
85
|
+
-0.054076 0.214772 -0.023342
|
|
86
|
+
-0.054076 0.214771 0.022449
|
|
87
|
+
-0.007185 0.214772 -0.023342
|
|
88
|
+
-0.023955 0.186752 -0.011360
|
|
89
|
+
-0.023955 0.186752 0.012086
|
|
90
|
+
-0.022413 0.095587 0.013640
|
|
91
|
+
-0.022413 0.095587 -0.009663
|
|
92
|
+
-0.013847 0.186752 0.022522
|
|
93
|
+
-0.012304 0.095587 0.024218
|
|
94
|
+
0.013548 0.186752 0.022522
|
|
95
|
+
0.015090 0.095515 0.024146
|
|
96
|
+
0.022342 0.186752 0.014373
|
|
97
|
+
0.023885 0.095587 0.016070
|
|
98
|
+
0.022342 0.186752 -0.013790
|
|
99
|
+
0.023885 0.095516 -0.012165
|
|
100
|
+
0.014356 0.186752 -0.023081
|
|
101
|
+
0.015899 0.095515 -0.021456
|
|
102
|
+
-0.014756 0.186752 -0.023081
|
|
103
|
+
-0.013214 0.095587 -0.021384
|
|
104
|
+
-0.020821 0.155113 -0.003952
|
|
105
|
+
-0.020821 0.168551 -0.003953
|
|
106
|
+
-0.020821 0.169097 0.065051
|
|
107
|
+
-0.020821 0.155660 0.065050
|
|
108
|
+
-0.012836 0.176699 -0.003952
|
|
109
|
+
-0.012836 0.177245 0.065050
|
|
110
|
+
0.012334 0.176699 -0.003952
|
|
111
|
+
0.012334 0.177245 0.065050
|
|
112
|
+
0.020219 0.168980 -0.003952
|
|
113
|
+
0.020219 0.169526 0.065050
|
|
114
|
+
0.020219 0.154827 -0.003953
|
|
115
|
+
0.020219 0.155373 0.065051
|
|
116
|
+
0.012941 0.147536 -0.003952
|
|
117
|
+
0.012941 0.148082 0.065050
|
|
118
|
+
-0.013442 0.147607 -0.004024
|
|
119
|
+
-0.013442 0.148154 0.065122
|
|
120
|
+
-0.054263 0.247381 -0.062421
|
|
121
|
+
-0.054192 0.220149 -0.051201
|
|
122
|
+
-0.008302 0.220149 -0.051201
|
|
123
|
+
-0.008231 0.247381 -0.062421
|
|
124
|
+
-0.054192 0.208855 -0.023908
|
|
125
|
+
-0.008302 0.208855 -0.023908
|
|
126
|
+
-0.054192 0.220149 0.003283
|
|
127
|
+
-0.008302 0.220149 0.003283
|
|
128
|
+
-0.054263 0.247381 0.014605
|
|
129
|
+
-0.008231 0.247381 0.014605
|
|
130
|
+
-0.054192 0.274614 0.003284
|
|
131
|
+
-0.008302 0.274614 0.003284
|
|
132
|
+
-0.054192 0.285907 -0.023908
|
|
133
|
+
-0.008302 0.285907 -0.023908
|
|
134
|
+
-0.054192 0.274614 -0.051202
|
|
135
|
+
-0.008302 0.274614 -0.051202
|
|
136
|
+
-0.001726 0.214573 -0.056660
|
|
137
|
+
-0.001655 0.247381 -0.070306
|
|
138
|
+
-0.001726 0.200992 -0.023908
|
|
139
|
+
-0.001726 0.214573 0.008844
|
|
140
|
+
-0.001655 0.247382 0.022389
|
|
141
|
+
-0.001726 0.280190 0.008843
|
|
142
|
+
-0.001726 0.293771 -0.023909
|
|
143
|
+
-0.001726 0.280190 -0.056660
|
|
144
|
+
0.050238 0.214644 -0.056660
|
|
145
|
+
0.050238 0.247381 -0.070306
|
|
146
|
+
0.050238 0.201064 -0.023909
|
|
147
|
+
0.050238 0.214644 0.008843
|
|
148
|
+
0.050238 0.247382 0.022389
|
|
149
|
+
0.050238 0.280119 0.008844
|
|
150
|
+
0.050238 0.293700 -0.023908
|
|
151
|
+
0.050238 0.280119 -0.056660
|
|
152
|
+
-0.054263 0.247381 -0.047461
|
|
153
|
+
-0.054192 0.230728 -0.040588
|
|
154
|
+
-0.054192 0.223865 -0.023908
|
|
155
|
+
-0.054192 0.230727 -0.007330
|
|
156
|
+
-0.054263 0.247382 -0.000456
|
|
157
|
+
-0.054192 0.264036 -0.007331
|
|
158
|
+
-0.054192 0.270898 -0.023908
|
|
159
|
+
-0.054192 0.264036 -0.040587
|
|
160
|
+
-0.065699 0.247381 -0.047461
|
|
161
|
+
-0.065699 0.230799 -0.040587
|
|
162
|
+
-0.065699 0.223936 -0.023908
|
|
163
|
+
-0.065699 0.230799 -0.007331
|
|
164
|
+
-0.065699 0.247382 -0.000456
|
|
165
|
+
-0.065699 0.263964 -0.007330
|
|
166
|
+
-0.065628 0.270898 -0.023908
|
|
167
|
+
-0.065699 0.263965 -0.040588
|
|
168
|
+
0.050238 0.218362 -0.053021
|
|
169
|
+
0.050238 0.247382 -0.065050
|
|
170
|
+
0.050167 0.206282 -0.023908
|
|
171
|
+
0.050238 0.218362 0.005103
|
|
172
|
+
0.050238 0.247381 0.017133
|
|
173
|
+
0.050238 0.276401 0.005103
|
|
174
|
+
0.050167 0.288481 -0.023908
|
|
175
|
+
0.050238 0.276402 -0.053021
|
|
176
|
+
0.003920 0.218362 -0.053021
|
|
177
|
+
0.003920 0.247382 -0.065050
|
|
178
|
+
0.003992 0.206282 -0.023908
|
|
179
|
+
0.003920 0.218362 0.005103
|
|
180
|
+
0.003920 0.247381 0.017133
|
|
181
|
+
0.003992 0.276474 0.005103
|
|
182
|
+
0.003992 0.288481 -0.023908
|
|
183
|
+
0.003992 0.276474 -0.053021
|
|
184
|
+
0.005819 0.156868 -0.018741
|
|
185
|
+
0.005387 0.170298 -0.018772
|
|
186
|
+
-0.063585 0.168623 -0.020092
|
|
187
|
+
-0.063153 0.155193 -0.020062
|
|
188
|
+
0.004972 0.178455 -0.010805
|
|
189
|
+
-0.064000 0.176780 -0.012126
|
|
190
|
+
0.004489 0.178496 0.014361
|
|
191
|
+
-0.064483 0.176822 0.013039
|
|
192
|
+
0.004586 0.170794 0.022261
|
|
193
|
+
-0.064386 0.169119 0.020940
|
|
194
|
+
0.005041 0.156649 0.022293
|
|
195
|
+
-0.063931 0.154974 0.020972
|
|
196
|
+
0.005415 0.149349 0.015032
|
|
197
|
+
-0.063557 0.147675 0.013711
|
|
198
|
+
0.005990 0.149380 -0.011345
|
|
199
|
+
-0.063126 0.147701 -0.012668
|
|
200
|
+
</float_array>
|
|
201
|
+
<technique_common>
|
|
202
|
+
<accessor source="#drc_l_clav-POSITION-array" count="138" stride="3">
|
|
203
|
+
<param name="X" type="float"/>
|
|
204
|
+
<param name="Y" type="float"/>
|
|
205
|
+
<param name="Z" type="float"/>
|
|
206
|
+
</accessor>
|
|
207
|
+
</technique_common>
|
|
208
|
+
</source>
|
|
209
|
+
<source id="drc_l_clav-Normal0">
|
|
210
|
+
<float_array id="drc_l_clav-Normal0-array" count="2250">
|
|
211
|
+
-0.999991 -0.004323 -0.000000
|
|
212
|
+
-0.999991 -0.004323 -0.000000
|
|
213
|
+
-0.999991 -0.004323 -0.000000
|
|
214
|
+
-0.999991 -0.004323 -0.000000
|
|
215
|
+
-0.999991 -0.004323 -0.000000
|
|
216
|
+
-0.999991 -0.004323 -0.000000
|
|
217
|
+
1.000000 0.000000 0.000000
|
|
218
|
+
1.000000 0.000000 0.000000
|
|
219
|
+
1.000000 0.000000 0.000000
|
|
220
|
+
1.000000 0.000000 0.000000
|
|
221
|
+
1.000000 0.000000 0.000000
|
|
222
|
+
1.000000 0.000000 0.000000
|
|
223
|
+
0.000000 1.000000 0.000000
|
|
224
|
+
0.000000 1.000000 0.000000
|
|
225
|
+
0.000000 1.000000 0.000000
|
|
226
|
+
0.000000 1.000000 0.000000
|
|
227
|
+
0.000000 1.000000 0.000000
|
|
228
|
+
0.000000 1.000000 0.000000
|
|
229
|
+
0.000000 -0.000013 -1.000000
|
|
230
|
+
0.000000 -0.000013 -1.000000
|
|
231
|
+
0.000000 -0.000013 -1.000000
|
|
232
|
+
0.000000 -0.000013 -1.000000
|
|
233
|
+
0.000000 -0.000013 -1.000000
|
|
234
|
+
0.000000 -0.000013 -1.000000
|
|
235
|
+
0.000000 -1.000000 -0.000001
|
|
236
|
+
0.000000 -1.000000 -0.000001
|
|
237
|
+
0.000000 -1.000000 -0.000001
|
|
238
|
+
0.000000 -1.000000 -0.000001
|
|
239
|
+
0.000000 -1.000000 -0.000001
|
|
240
|
+
0.000000 -1.000000 -0.000001
|
|
241
|
+
0.000000 0.000010 1.000000
|
|
242
|
+
0.000000 0.000010 1.000000
|
|
243
|
+
0.000000 0.000010 1.000000
|
|
244
|
+
0.000000 0.000010 1.000000
|
|
245
|
+
0.000000 0.000010 1.000000
|
|
246
|
+
0.000000 0.000010 1.000000
|
|
247
|
+
0.000000 1.000000 0.000000
|
|
248
|
+
0.000000 1.000000 0.000000
|
|
249
|
+
0.000000 1.000000 0.000000
|
|
250
|
+
0.000000 1.000000 0.000000
|
|
251
|
+
0.000000 1.000000 0.000000
|
|
252
|
+
0.000000 1.000000 0.000000
|
|
253
|
+
0.000007 -0.000013 -1.000000
|
|
254
|
+
0.000007 -0.000013 -1.000000
|
|
255
|
+
0.000007 -0.000013 -1.000000
|
|
256
|
+
0.000000 -0.000032 -1.000000
|
|
257
|
+
0.000000 -0.000032 -1.000000
|
|
258
|
+
0.000000 -0.000032 -1.000000
|
|
259
|
+
-0.001500 -0.999999 -0.000001
|
|
260
|
+
-0.001500 -0.999999 -0.000001
|
|
261
|
+
-0.001500 -0.999999 -0.000001
|
|
262
|
+
-0.001500 -0.999999 -0.000001
|
|
263
|
+
-0.001500 -0.999999 -0.000001
|
|
264
|
+
-0.001500 -0.999999 -0.000001
|
|
265
|
+
-0.000000 0.000010 1.000000
|
|
266
|
+
-0.000000 0.000010 1.000000
|
|
267
|
+
-0.000000 0.000010 1.000000
|
|
268
|
+
-0.000007 0.000030 1.000000
|
|
269
|
+
-0.000007 0.000030 1.000000
|
|
270
|
+
-0.000007 0.000030 1.000000
|
|
271
|
+
1.000000 0.000001 0.000000
|
|
272
|
+
1.000000 0.000001 0.000000
|
|
273
|
+
1.000000 0.000001 0.000000
|
|
274
|
+
1.000000 0.000000 0.000000
|
|
275
|
+
1.000000 0.000000 0.000000
|
|
276
|
+
1.000000 0.000000 0.000000
|
|
277
|
+
0.000000 0.000001 1.000000
|
|
278
|
+
0.000000 0.000001 1.000000
|
|
279
|
+
0.000000 0.000001 1.000000
|
|
280
|
+
0.000003 -0.000012 1.000000
|
|
281
|
+
0.000003 -0.000012 1.000000
|
|
282
|
+
0.000003 -0.000012 1.000000
|
|
283
|
+
-0.999986 0.005238 0.000000
|
|
284
|
+
-0.999986 0.005238 0.000000
|
|
285
|
+
-0.999986 0.005238 0.000000
|
|
286
|
+
-0.999986 0.005238 0.000000
|
|
287
|
+
-0.999986 0.005238 0.000000
|
|
288
|
+
-0.999986 0.005238 0.000000
|
|
289
|
+
0.000000 0.000018 -1.000000
|
|
290
|
+
0.000000 0.000018 -1.000000
|
|
291
|
+
0.000000 0.000018 -1.000000
|
|
292
|
+
0.000000 0.000018 -1.000000
|
|
293
|
+
0.000000 0.000018 -1.000000
|
|
294
|
+
0.000000 0.000018 -1.000000
|
|
295
|
+
0.001242 0.999999 0.000001
|
|
296
|
+
0.001242 0.999999 0.000001
|
|
297
|
+
0.001242 0.999999 0.000001
|
|
298
|
+
0.001241 0.999999 0.000000
|
|
299
|
+
0.001241 0.999999 0.000000
|
|
300
|
+
0.001241 0.999999 0.000000
|
|
301
|
+
0.000000 -0.000032 -1.000000
|
|
302
|
+
0.000000 -0.000032 -1.000000
|
|
303
|
+
0.000000 -0.000032 -1.000000
|
|
304
|
+
0.000000 -0.000033 -1.000000
|
|
305
|
+
0.000000 -0.000033 -1.000000
|
|
306
|
+
0.000000 -0.000033 -1.000000
|
|
307
|
+
0.000000 -1.000000 -0.000001
|
|
308
|
+
0.000000 -1.000000 -0.000001
|
|
309
|
+
0.000000 -1.000000 -0.000001
|
|
310
|
+
0.000000 -1.000000 -0.000001
|
|
311
|
+
0.000000 -1.000000 -0.000001
|
|
312
|
+
0.000000 -1.000000 -0.000001
|
|
313
|
+
0.000000 0.000030 1.000000
|
|
314
|
+
0.000000 0.000030 1.000000
|
|
315
|
+
0.000000 0.000030 1.000000
|
|
316
|
+
0.000000 0.000030 1.000000
|
|
317
|
+
0.000000 0.000030 1.000000
|
|
318
|
+
0.000000 0.000030 1.000000
|
|
319
|
+
-0.000000 -0.000012 1.000000
|
|
320
|
+
-0.000000 -0.000012 1.000000
|
|
321
|
+
-0.000000 -0.000012 1.000000
|
|
322
|
+
0.000000 -0.000013 1.000000
|
|
323
|
+
0.000000 -0.000013 1.000000
|
|
324
|
+
0.000000 -0.000013 1.000000
|
|
325
|
+
0.000000 0.000018 -1.000000
|
|
326
|
+
0.000000 0.000018 -1.000000
|
|
327
|
+
0.000000 0.000018 -1.000000
|
|
328
|
+
-0.000004 0.000002 -1.000000
|
|
329
|
+
-0.000004 0.000002 -1.000000
|
|
330
|
+
-0.000004 0.000002 -1.000000
|
|
331
|
+
-0.999992 -0.003882 -0.000000
|
|
332
|
+
-0.999992 -0.003882 -0.000000
|
|
333
|
+
-0.999992 -0.003882 -0.000000
|
|
334
|
+
-0.999992 -0.003882 -0.000000
|
|
335
|
+
-0.999992 -0.003882 -0.000000
|
|
336
|
+
-0.999992 -0.003882 -0.000000
|
|
337
|
+
0.000000 -0.000005 -1.000000
|
|
338
|
+
0.000000 -0.000005 -1.000000
|
|
339
|
+
0.000000 -0.000005 -1.000000
|
|
340
|
+
0.000000 -0.000005 -1.000000
|
|
341
|
+
0.000000 -0.000005 -1.000000
|
|
342
|
+
0.000000 -0.000005 -1.000000
|
|
343
|
+
0.999992 0.003938 0.000000
|
|
344
|
+
0.999992 0.003938 0.000000
|
|
345
|
+
0.999992 0.003938 0.000000
|
|
346
|
+
0.999992 0.003937 0.000000
|
|
347
|
+
0.999992 0.003937 0.000000
|
|
348
|
+
0.999992 0.003937 0.000000
|
|
349
|
+
-0.000000 0.000004 1.000000
|
|
350
|
+
-0.000000 0.000004 1.000000
|
|
351
|
+
-0.000000 0.000004 1.000000
|
|
352
|
+
0.000000 0.000005 1.000000
|
|
353
|
+
0.000000 0.000005 1.000000
|
|
354
|
+
0.000000 0.000005 1.000000
|
|
355
|
+
-0.999857 -0.016918 -0.000000
|
|
356
|
+
-0.999857 -0.016918 -0.000000
|
|
357
|
+
-0.999857 -0.016918 -0.000000
|
|
358
|
+
-0.999857 -0.016918 -0.000000
|
|
359
|
+
-0.999857 -0.016918 -0.000000
|
|
360
|
+
-0.999857 -0.016918 -0.000000
|
|
361
|
+
-0.722980 -0.000460 0.690869
|
|
362
|
+
-0.722980 -0.000460 0.690869
|
|
363
|
+
-0.722980 -0.000460 0.690869
|
|
364
|
+
-0.718264 0.000795 0.695771
|
|
365
|
+
-0.718264 0.000795 0.695771
|
|
366
|
+
-0.718264 0.000795 0.695771
|
|
367
|
+
0.002669 0.018652 0.999823
|
|
368
|
+
0.002669 0.018652 0.999822
|
|
369
|
+
0.002669 0.018652 0.999822
|
|
370
|
+
0.000000 0.017806 0.999841
|
|
371
|
+
0.000000 0.017806 0.999841
|
|
372
|
+
0.000000 0.017806 0.999842
|
|
373
|
+
0.676087 0.024545 0.736413
|
|
374
|
+
0.676087 0.024545 0.736413
|
|
375
|
+
0.676087 0.024545 0.736413
|
|
376
|
+
0.679452 0.025148 0.733289
|
|
377
|
+
0.679452 0.025148 0.733289
|
|
378
|
+
0.679452 0.025148 0.733289
|
|
379
|
+
0.999857 0.016918 -0.000043
|
|
380
|
+
0.999857 0.016918 -0.000043
|
|
381
|
+
0.999857 0.016918 -0.000043
|
|
382
|
+
0.999857 0.016905 0.000000
|
|
383
|
+
0.999857 0.016905 0.000000
|
|
384
|
+
0.999857 0.016905 0.000000
|
|
385
|
+
0.758378 0.001210 -0.651814
|
|
386
|
+
0.758378 0.001210 -0.651814
|
|
387
|
+
0.758378 0.001210 -0.651814
|
|
388
|
+
0.758378 0.001210 -0.651814
|
|
389
|
+
0.758378 0.001210 -0.651814
|
|
390
|
+
0.758378 0.001210 -0.651814
|
|
391
|
+
-0.002509 -0.017854 -0.999837
|
|
392
|
+
-0.002509 -0.017854 -0.999837
|
|
393
|
+
-0.002509 -0.017854 -0.999837
|
|
394
|
+
0.000000 -0.018613 -0.999827
|
|
395
|
+
0.000000 -0.018613 -0.999827
|
|
396
|
+
0.000000 -0.018613 -0.999827
|
|
397
|
+
-0.786434 -0.024796 -0.617176
|
|
398
|
+
-0.786434 -0.024796 -0.617176
|
|
399
|
+
-0.786434 -0.024796 -0.617176
|
|
400
|
+
-0.786434 -0.024796 -0.617177
|
|
401
|
+
-0.786434 -0.024796 -0.617177
|
|
402
|
+
-0.786434 -0.024796 -0.617177
|
|
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.699917 -0.005538
|
|
410
|
+
-0.714203 0.699917 -0.005538
|
|
411
|
+
-0.714203 0.699917 -0.005538
|
|
412
|
+
-0.714182 0.699938 -0.005543
|
|
413
|
+
-0.714182 0.699938 -0.005543
|
|
414
|
+
-0.714182 0.699938 -0.005543
|
|
415
|
+
0.000000 0.999969 -0.007919
|
|
416
|
+
0.000000 0.999969 -0.007919
|
|
417
|
+
0.000000 0.999969 -0.007919
|
|
418
|
+
0.000000 0.999969 -0.007919
|
|
419
|
+
0.000000 0.999969 -0.007919
|
|
420
|
+
0.000000 0.999969 -0.007919
|
|
421
|
+
0.699543 0.714568 -0.005659
|
|
422
|
+
0.699543 0.714568 -0.005659
|
|
423
|
+
0.699543 0.714568 -0.005659
|
|
424
|
+
0.699548 0.714563 -0.005660
|
|
425
|
+
0.699548 0.714563 -0.005660
|
|
426
|
+
0.699548 0.714563 -0.005660
|
|
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.707738 -0.706453 0.005590
|
|
434
|
+
0.707738 -0.706453 0.005590
|
|
435
|
+
0.707738 -0.706453 0.005590
|
|
436
|
+
0.707721 -0.706470 0.005586
|
|
437
|
+
0.707721 -0.706470 0.005586
|
|
438
|
+
0.707721 -0.706470 0.005586
|
|
439
|
+
-0.002698 -0.999965 0.007907
|
|
440
|
+
-0.002698 -0.999965 0.007907
|
|
441
|
+
-0.002698 -0.999965 0.007907
|
|
442
|
+
-0.002710 -0.999965 0.007903
|
|
443
|
+
-0.002710 -0.999965 0.007903
|
|
444
|
+
-0.002710 -0.999965 0.007903
|
|
445
|
+
-0.713111 -0.701029 0.005540
|
|
446
|
+
-0.713111 -0.701029 0.005540
|
|
447
|
+
-0.713111 -0.701029 0.005540
|
|
448
|
+
-0.713058 -0.701083 0.005552
|
|
449
|
+
-0.713058 -0.701083 0.005552
|
|
450
|
+
-0.713058 -0.701083 0.005552
|
|
451
|
+
0.000006 1.000000 0.000000
|
|
452
|
+
0.000006 1.000000 0.000000
|
|
453
|
+
0.000006 1.000000 0.000000
|
|
454
|
+
0.000000 1.000000 -0.000020
|
|
455
|
+
0.000000 1.000000 -0.000020
|
|
456
|
+
0.000000 1.000000 -0.000020
|
|
457
|
+
-0.000042 1.000000 0.000011
|
|
458
|
+
-0.000042 1.000000 0.000011
|
|
459
|
+
-0.000042 1.000000 0.000011
|
|
460
|
+
0.000011 1.000000 -0.000009
|
|
461
|
+
0.000011 1.000000 -0.000009
|
|
462
|
+
0.000011 1.000000 -0.000009
|
|
463
|
+
0.000000 1.000000 -0.000059
|
|
464
|
+
0.000000 1.000000 -0.000059
|
|
465
|
+
0.000000 1.000000 -0.000059
|
|
466
|
+
-0.000052 1.000000 0.000010
|
|
467
|
+
-0.000052 1.000000 0.000010
|
|
468
|
+
-0.000052 1.000000 0.000010
|
|
469
|
+
0.000006 -0.000024 -1.000000
|
|
470
|
+
0.000006 -0.000024 -1.000000
|
|
471
|
+
0.000006 -0.000024 -1.000000
|
|
472
|
+
0.002773 0.012305 -0.999920
|
|
473
|
+
0.002773 0.012305 -0.999920
|
|
474
|
+
0.002773 0.012305 -0.999920
|
|
475
|
+
-0.000130 0.000023 -1.000000
|
|
476
|
+
-0.000130 0.000023 -1.000000
|
|
477
|
+
-0.000130 0.000023 -1.000000
|
|
478
|
+
-0.000001 -0.000002 -1.000000
|
|
479
|
+
-0.000001 -0.000002 -1.000000
|
|
480
|
+
-0.000001 -0.000002 -1.000000
|
|
481
|
+
0.000000 0.000003 -1.000000
|
|
482
|
+
0.000000 0.000003 -1.000000
|
|
483
|
+
0.000000 0.000003 -1.000000
|
|
484
|
+
0.000090 -0.000036 -1.000000
|
|
485
|
+
0.000090 -0.000036 -1.000000
|
|
486
|
+
0.000090 -0.000036 -1.000000
|
|
487
|
+
0.000004 0.000002 1.000000
|
|
488
|
+
0.000004 0.000002 1.000000
|
|
489
|
+
0.000004 0.000002 1.000000
|
|
490
|
+
0.000087 -0.000029 1.000000
|
|
491
|
+
0.000087 -0.000029 1.000000
|
|
492
|
+
0.000087 -0.000029 1.000000
|
|
493
|
+
-0.000001 -0.000003 1.000000
|
|
494
|
+
-0.000001 -0.000003 1.000000
|
|
495
|
+
-0.000001 -0.000003 1.000000
|
|
496
|
+
0.000000 0.000002 1.000000
|
|
497
|
+
0.000000 0.000002 1.000000
|
|
498
|
+
0.000000 0.000002 1.000000
|
|
499
|
+
-0.000128 0.000040 1.000000
|
|
500
|
+
-0.000128 0.000040 1.000000
|
|
501
|
+
-0.000128 0.000040 1.000000
|
|
502
|
+
0.002754 0.012254 0.999921
|
|
503
|
+
0.002754 0.012254 0.999921
|
|
504
|
+
0.002754 0.012254 0.999921
|
|
505
|
+
0.000000 -0.380951 -0.924595
|
|
506
|
+
0.000000 -0.380951 -0.924595
|
|
507
|
+
0.000000 -0.380951 -0.924595
|
|
508
|
+
0.000000 -0.380951 -0.924595
|
|
509
|
+
0.000000 -0.380951 -0.924595
|
|
510
|
+
0.000000 -0.380951 -0.924595
|
|
511
|
+
0.000000 -0.924012 -0.382364
|
|
512
|
+
0.000000 -0.924012 -0.382364
|
|
513
|
+
0.000000 -0.924012 -0.382364
|
|
514
|
+
0.000000 -0.924012 -0.382364
|
|
515
|
+
0.000000 -0.924012 -0.382364
|
|
516
|
+
0.000000 -0.924012 -0.382364
|
|
517
|
+
-0.000000 -0.923501 0.383595
|
|
518
|
+
-0.000000 -0.923501 0.383595
|
|
519
|
+
-0.000000 -0.923501 0.383595
|
|
520
|
+
0.000000 -0.923501 0.383595
|
|
521
|
+
0.000000 -0.923501 0.383595
|
|
522
|
+
0.000000 -0.923501 0.383595
|
|
523
|
+
0.000000 -0.383902 0.923374
|
|
524
|
+
0.000000 -0.383903 0.923374
|
|
525
|
+
0.000000 -0.383903 0.923374
|
|
526
|
+
0.000000 -0.383902 0.923374
|
|
527
|
+
0.000000 -0.383902 0.923374
|
|
528
|
+
0.000000 -0.383902 0.923374
|
|
529
|
+
0.000000 0.383889 0.923379
|
|
530
|
+
0.000000 0.383889 0.923379
|
|
531
|
+
0.000000 0.383889 0.923379
|
|
532
|
+
-0.000000 0.383889 0.923379
|
|
533
|
+
-0.000000 0.383889 0.923379
|
|
534
|
+
-0.000000 0.383889 0.923379
|
|
535
|
+
-0.000000 0.923523 0.383544
|
|
536
|
+
-0.000000 0.923523 0.383544
|
|
537
|
+
-0.000000 0.923523 0.383544
|
|
538
|
+
-0.000000 0.923523 0.383544
|
|
539
|
+
-0.000000 0.923523 0.383544
|
|
540
|
+
-0.000000 0.923522 0.383544
|
|
541
|
+
0.000000 0.924026 -0.382328
|
|
542
|
+
0.000000 0.924026 -0.382328
|
|
543
|
+
0.000000 0.924026 -0.382328
|
|
544
|
+
0.000000 0.924026 -0.382329
|
|
545
|
+
0.000000 0.924026 -0.382329
|
|
546
|
+
0.000000 0.924026 -0.382329
|
|
547
|
+
0.000000 0.380929 -0.924604
|
|
548
|
+
0.000000 0.380929 -0.924604
|
|
549
|
+
0.000000 0.380929 -0.924604
|
|
550
|
+
0.000000 0.380930 -0.924604
|
|
551
|
+
0.000000 0.380930 -0.924604
|
|
552
|
+
0.000000 0.380930 -0.924604
|
|
553
|
+
-0.742358 -0.255923 -0.619199
|
|
554
|
+
-0.742358 -0.255923 -0.619199
|
|
555
|
+
-0.742358 -0.255923 -0.619199
|
|
556
|
+
-0.736681 -0.255977 -0.625921
|
|
557
|
+
-0.736681 -0.255977 -0.625921
|
|
558
|
+
-0.736681 -0.255977 -0.625921
|
|
559
|
+
-0.740319 -0.620985 -0.257498
|
|
560
|
+
-0.740319 -0.620985 -0.257498
|
|
561
|
+
-0.740319 -0.620985 -0.257498
|
|
562
|
+
-0.741409 -0.620061 -0.256587
|
|
563
|
+
-0.741409 -0.620061 -0.256587
|
|
564
|
+
-0.741409 -0.620061 -0.256587
|
|
565
|
+
-0.741308 -0.619980 0.257076
|
|
566
|
+
-0.741308 -0.619980 0.257076
|
|
567
|
+
-0.741308 -0.619980 0.257076
|
|
568
|
+
-0.742220 -0.618891 0.257069
|
|
569
|
+
-0.742220 -0.618891 0.257069
|
|
570
|
+
-0.742220 -0.618891 0.257069
|
|
571
|
+
-0.741216 -0.254771 0.621040
|
|
572
|
+
-0.741216 -0.254771 0.621040
|
|
573
|
+
-0.741216 -0.254771 0.621040
|
|
574
|
+
-0.738094 -0.257382 0.623676
|
|
575
|
+
-0.738094 -0.257382 0.623676
|
|
576
|
+
-0.738094 -0.257382 0.623676
|
|
577
|
+
-0.738385 0.255975 0.623910
|
|
578
|
+
-0.738385 0.255975 0.623910
|
|
579
|
+
-0.738385 0.255975 0.623910
|
|
580
|
+
-0.741459 0.255945 0.620267
|
|
581
|
+
-0.741459 0.255945 0.620267
|
|
582
|
+
-0.741459 0.255945 0.620267
|
|
583
|
+
-0.742104 0.619165 0.256743
|
|
584
|
+
-0.742104 0.619165 0.256743
|
|
585
|
+
-0.742104 0.619165 0.256743
|
|
586
|
+
-0.741284 0.619861 0.257432
|
|
587
|
+
-0.741284 0.619861 0.257432
|
|
588
|
+
-0.741284 0.619861 0.257432
|
|
589
|
+
-0.741370 0.619911 -0.257064
|
|
590
|
+
-0.741370 0.619911 -0.257064
|
|
591
|
+
-0.741370 0.619911 -0.257064
|
|
592
|
+
-0.740202 0.621301 -0.257072
|
|
593
|
+
-0.740202 0.621301 -0.257072
|
|
594
|
+
-0.740202 0.621301 -0.257072
|
|
595
|
+
-0.737186 0.258118 -0.624445
|
|
596
|
+
-0.737186 0.258118 -0.624445
|
|
597
|
+
-0.737186 0.258118 -0.624445
|
|
598
|
+
-0.742876 0.253354 -0.619635
|
|
599
|
+
-0.742876 0.253354 -0.619635
|
|
600
|
+
-0.742876 0.253354 -0.619635
|
|
601
|
+
0.000000 -0.384754 -0.923019
|
|
602
|
+
0.000000 -0.384754 -0.923019
|
|
603
|
+
0.000000 -0.384754 -0.923019
|
|
604
|
+
0.000529 -0.384040 -0.923316
|
|
605
|
+
0.000529 -0.384040 -0.923316
|
|
606
|
+
0.000529 -0.384040 -0.923316
|
|
607
|
+
0.001264 -0.923734 -0.383031
|
|
608
|
+
0.001264 -0.923734 -0.383031
|
|
609
|
+
0.001264 -0.923734 -0.383031
|
|
610
|
+
0.001267 -0.923733 -0.383035
|
|
611
|
+
0.001267 -0.923733 -0.383035
|
|
612
|
+
0.001267 -0.923733 -0.383035
|
|
613
|
+
0.001278 -0.923735 0.383029
|
|
614
|
+
0.001278 -0.923735 0.383029
|
|
615
|
+
0.001278 -0.923735 0.383029
|
|
616
|
+
0.001277 -0.923735 0.383029
|
|
617
|
+
0.001277 -0.923735 0.383029
|
|
618
|
+
0.001277 -0.923735 0.383029
|
|
619
|
+
0.000538 -0.382331 0.924025
|
|
620
|
+
0.000538 -0.382331 0.924025
|
|
621
|
+
0.000538 -0.382331 0.924025
|
|
622
|
+
0.000000 -0.381602 0.924327
|
|
623
|
+
0.000000 -0.381602 0.924327
|
|
624
|
+
0.000000 -0.381602 0.924327
|
|
625
|
+
0.000000 0.382315 0.924032
|
|
626
|
+
0.000000 0.382315 0.924032
|
|
627
|
+
0.000000 0.382315 0.924032
|
|
628
|
+
0.000513 0.381620 0.924319
|
|
629
|
+
0.000513 0.381620 0.924319
|
|
630
|
+
0.000513 0.381620 0.924319
|
|
631
|
+
0.001266 0.923733 0.383034
|
|
632
|
+
0.001266 0.923733 0.383034
|
|
633
|
+
0.001266 0.923733 0.383034
|
|
634
|
+
0.001267 0.923733 0.383036
|
|
635
|
+
0.001267 0.923733 0.383036
|
|
636
|
+
0.001267 0.923733 0.383036
|
|
637
|
+
0.001278 0.923736 -0.383028
|
|
638
|
+
0.001278 0.923736 -0.383028
|
|
639
|
+
0.001278 0.923736 -0.383028
|
|
640
|
+
0.001262 0.923727 -0.383049
|
|
641
|
+
0.001262 0.923727 -0.383049
|
|
642
|
+
0.001262 0.923727 -0.383049
|
|
643
|
+
0.000522 0.384747 -0.923022
|
|
644
|
+
0.000522 0.384747 -0.923022
|
|
645
|
+
0.000522 0.384747 -0.923022
|
|
646
|
+
0.000000 0.384042 -0.923316
|
|
647
|
+
0.000000 0.384042 -0.923316
|
|
648
|
+
0.000000 0.384042 -0.923316
|
|
649
|
+
-0.999997 -0.001842 0.001836
|
|
650
|
+
-0.999997 -0.001842 0.001836
|
|
651
|
+
-0.999997 -0.001842 0.001836
|
|
652
|
+
-0.999991 -0.004249 -0.000000
|
|
653
|
+
-0.999991 -0.004249 -0.000000
|
|
654
|
+
-0.999991 -0.004249 -0.000000
|
|
655
|
+
-1.000000 0.000000 0.000000
|
|
656
|
+
-1.000000 0.000000 0.000000
|
|
657
|
+
-1.000000 0.000000 0.000000
|
|
658
|
+
-1.000000 0.000000 0.000000
|
|
659
|
+
-1.000000 0.000000 0.000000
|
|
660
|
+
-1.000000 0.000000 0.000000
|
|
661
|
+
-1.000000 0.000000 -0.000000
|
|
662
|
+
-1.000000 0.000000 -0.000000
|
|
663
|
+
-1.000000 0.000000 -0.000000
|
|
664
|
+
-1.000000 0.000000 0.000000
|
|
665
|
+
-1.000000 0.000000 0.000000
|
|
666
|
+
-1.000000 0.000000 0.000000
|
|
667
|
+
-0.999997 -0.002598 -0.000000
|
|
668
|
+
-0.999997 -0.002598 -0.000000
|
|
669
|
+
-0.999997 -0.002598 -0.000000
|
|
670
|
+
-0.999991 -0.003010 -0.003001
|
|
671
|
+
-0.999991 -0.003010 -0.003001
|
|
672
|
+
-0.999991 -0.003010 -0.003001
|
|
673
|
+
-0.999997 0.001837 -0.001831
|
|
674
|
+
-0.999997 0.001837 -0.001831
|
|
675
|
+
-0.999997 0.001837 -0.001831
|
|
676
|
+
-0.999991 0.004249 0.000000
|
|
677
|
+
-0.999991 0.004249 0.000000
|
|
678
|
+
-0.999991 0.004249 0.000000
|
|
679
|
+
-1.000000 0.000000 -0.000000
|
|
680
|
+
-1.000000 0.000000 -0.000000
|
|
681
|
+
-1.000000 0.000000 -0.000000
|
|
682
|
+
-1.000000 -0.000000 -0.000000
|
|
683
|
+
-1.000000 -0.000000 -0.000000
|
|
684
|
+
-1.000000 -0.000000 -0.000000
|
|
685
|
+
-1.000000 0.000000 0.000000
|
|
686
|
+
-1.000000 0.000000 0.000000
|
|
687
|
+
-1.000000 0.000000 0.000000
|
|
688
|
+
-1.000000 0.000000 0.000000
|
|
689
|
+
-1.000000 0.000000 0.000000
|
|
690
|
+
-1.000000 0.000000 0.000000
|
|
691
|
+
-0.999997 0.002598 -0.000001
|
|
692
|
+
-0.999997 0.002598 -0.000001
|
|
693
|
+
-0.999997 0.002598 -0.000001
|
|
694
|
+
-0.999991 0.003010 0.003000
|
|
695
|
+
-0.999991 0.003010 0.003000
|
|
696
|
+
-0.999991 0.003010 0.003000
|
|
697
|
+
-0.002375 -0.381508 -0.924363
|
|
698
|
+
-0.002375 -0.381508 -0.924363
|
|
699
|
+
-0.002375 -0.381508 -0.924363
|
|
700
|
+
0.000000 -0.382907 -0.923787
|
|
701
|
+
0.000000 -0.382907 -0.923787
|
|
702
|
+
0.000000 -0.382907 -0.923787
|
|
703
|
+
-0.005720 -0.924773 -0.380476
|
|
704
|
+
-0.005720 -0.924773 -0.380476
|
|
705
|
+
-0.005720 -0.924773 -0.380476
|
|
706
|
+
-0.005722 -0.924773 -0.380477
|
|
707
|
+
-0.005722 -0.924773 -0.380477
|
|
708
|
+
-0.005722 -0.924773 -0.380477
|
|
709
|
+
-0.005775 -0.923963 0.382437
|
|
710
|
+
-0.005775 -0.923963 0.382437
|
|
711
|
+
-0.005775 -0.923963 0.382437
|
|
712
|
+
-0.005704 -0.923946 0.382479
|
|
713
|
+
-0.005704 -0.923946 0.382479
|
|
714
|
+
-0.005704 -0.923946 0.382479
|
|
715
|
+
0.000000 -0.381502 0.924368
|
|
716
|
+
0.000000 -0.381502 0.924368
|
|
717
|
+
0.000000 -0.381502 0.924368
|
|
718
|
+
-0.002438 -0.382940 0.923770
|
|
719
|
+
-0.002438 -0.382940 0.923770
|
|
720
|
+
-0.002438 -0.382940 0.923770
|
|
721
|
+
-0.002317 0.381541 0.924349
|
|
722
|
+
-0.002317 0.381541 0.924349
|
|
723
|
+
-0.002317 0.381541 0.924349
|
|
724
|
+
0.000000 0.382906 0.923787
|
|
725
|
+
0.000000 0.382906 0.923787
|
|
726
|
+
0.000000 0.382906 0.923787
|
|
727
|
+
0.000000 0.923972 0.382460
|
|
728
|
+
0.000000 0.923972 0.382460
|
|
729
|
+
0.000000 0.923972 0.382460
|
|
730
|
+
-0.005715 0.922557 0.385817
|
|
731
|
+
-0.005715 0.922558 0.385817
|
|
732
|
+
-0.005715 0.922558 0.385817
|
|
733
|
+
-0.005707 0.924772 -0.380480
|
|
734
|
+
-0.005707 0.924772 -0.380479
|
|
735
|
+
-0.005707 0.924772 -0.380479
|
|
736
|
+
0.000000 0.923397 -0.383845
|
|
737
|
+
0.000000 0.923397 -0.383845
|
|
738
|
+
0.000000 0.923397 -0.383845
|
|
739
|
+
0.000000 0.381503 -0.924367
|
|
740
|
+
0.000000 0.381503 -0.924367
|
|
741
|
+
0.000000 0.381503 -0.924367
|
|
742
|
+
-0.002347 0.382887 -0.923792
|
|
743
|
+
-0.002347 0.382887 -0.923792
|
|
744
|
+
-0.002347 0.382887 -0.923792
|
|
745
|
+
-0.999995 0.003052 -0.000000
|
|
746
|
+
-0.999995 0.003052 -0.000000
|
|
747
|
+
-0.999995 0.003052 -0.000000
|
|
748
|
+
-0.999984 -0.002154 0.005198
|
|
749
|
+
-0.999984 -0.002154 0.005198
|
|
750
|
+
-0.999984 -0.002154 0.005198
|
|
751
|
+
-0.999984 -0.002170 -0.005236
|
|
752
|
+
-0.999984 -0.002170 -0.005236
|
|
753
|
+
-0.999984 -0.002170 -0.005236
|
|
754
|
+
-1.000000 0.000000 0.000000
|
|
755
|
+
-1.000000 0.000000 0.000000
|
|
756
|
+
-1.000000 0.000000 0.000000
|
|
757
|
+
-1.000000 0.000000 0.000000
|
|
758
|
+
-1.000000 0.000000 0.000000
|
|
759
|
+
-1.000000 0.000000 0.000000
|
|
760
|
+
-1.000000 0.000000 0.000000
|
|
761
|
+
-1.000000 0.000000 0.000000
|
|
762
|
+
-1.000000 0.000000 0.000000
|
|
763
|
+
1.000000 0.000000 0.000000
|
|
764
|
+
1.000000 0.000000 0.000000
|
|
765
|
+
1.000000 0.000000 0.000000
|
|
766
|
+
1.000000 0.000000 0.000000
|
|
767
|
+
1.000000 0.000000 0.000000
|
|
768
|
+
1.000000 0.000000 0.000000
|
|
769
|
+
1.000000 0.000000 0.000000
|
|
770
|
+
1.000000 0.000000 0.000000
|
|
771
|
+
1.000000 0.000000 0.000000
|
|
772
|
+
0.999872 0.013752 0.008172
|
|
773
|
+
0.999872 0.013752 0.008172
|
|
774
|
+
0.999872 0.013752 0.008172
|
|
775
|
+
0.999889 0.013753 -0.005703
|
|
776
|
+
0.999889 0.013753 -0.005703
|
|
777
|
+
0.999889 0.013753 -0.005703
|
|
778
|
+
0.999997 -0.001754 -0.001744
|
|
779
|
+
0.999997 -0.001754 -0.001744
|
|
780
|
+
0.999997 -0.001754 -0.001744
|
|
781
|
+
1.000000 0.000000 0.000000
|
|
782
|
+
1.000000 0.000000 0.000000
|
|
783
|
+
1.000000 0.000000 0.000000
|
|
784
|
+
1.000000 0.000000 0.000000
|
|
785
|
+
1.000000 0.000000 0.000000
|
|
786
|
+
1.000000 0.000000 0.000000
|
|
787
|
+
1.000000 0.000000 -0.000000
|
|
788
|
+
1.000000 0.000000 -0.000000
|
|
789
|
+
1.000000 0.000000 -0.000000
|
|
790
|
+
1.000000 0.000001 0.000001
|
|
791
|
+
1.000000 0.000001 0.000001
|
|
792
|
+
1.000000 0.000001 0.000001
|
|
793
|
+
1.000000 0.000001 0.000001
|
|
794
|
+
1.000000 0.000001 0.000001
|
|
795
|
+
1.000000 0.000001 0.000001
|
|
796
|
+
0.999872 -0.013750 -0.008198
|
|
797
|
+
0.999872 -0.013750 -0.008198
|
|
798
|
+
0.999872 -0.013750 -0.008198
|
|
799
|
+
0.999889 -0.013751 0.005702
|
|
800
|
+
0.999889 -0.013751 0.005702
|
|
801
|
+
0.999889 -0.013751 0.005702
|
|
802
|
+
0.999997 0.001716 0.001753
|
|
803
|
+
0.999997 0.001716 0.001753
|
|
804
|
+
0.999997 0.001716 0.001753
|
|
805
|
+
1.000000 0.000000 0.000000
|
|
806
|
+
1.000000 0.000000 0.000000
|
|
807
|
+
1.000000 0.000000 0.000000
|
|
808
|
+
1.000000 0.000000 0.000000
|
|
809
|
+
1.000000 0.000000 0.000000
|
|
810
|
+
1.000000 0.000000 0.000000
|
|
811
|
+
0.000000 0.382926 0.923779
|
|
812
|
+
0.000000 0.382926 0.923779
|
|
813
|
+
0.000000 0.382926 0.923779
|
|
814
|
+
0.000000 0.382926 0.923779
|
|
815
|
+
0.000000 0.382926 0.923779
|
|
816
|
+
0.000000 0.382926 0.923779
|
|
817
|
+
0.000000 0.923646 0.383246
|
|
818
|
+
0.000000 0.923646 0.383246
|
|
819
|
+
0.000000 0.923646 0.383246
|
|
820
|
+
-0.000000 0.923646 0.383246
|
|
821
|
+
-0.000000 0.923646 0.383246
|
|
822
|
+
-0.000000 0.923646 0.383246
|
|
823
|
+
0.000000 0.923173 -0.384386
|
|
824
|
+
0.000000 0.923173 -0.384386
|
|
825
|
+
0.000000 0.923173 -0.384386
|
|
826
|
+
0.000000 0.923173 -0.384386
|
|
827
|
+
0.000000 0.923173 -0.384386
|
|
828
|
+
0.000000 0.923173 -0.384386
|
|
829
|
+
0.000000 0.382934 -0.923776
|
|
830
|
+
0.000000 0.382934 -0.923776
|
|
831
|
+
0.000000 0.382934 -0.923776
|
|
832
|
+
0.000000 0.382934 -0.923776
|
|
833
|
+
0.000000 0.382934 -0.923776
|
|
834
|
+
0.000000 0.382934 -0.923776
|
|
835
|
+
0.000000 -0.382925 -0.923779
|
|
836
|
+
0.000000 -0.382925 -0.923780
|
|
837
|
+
0.000000 -0.382925 -0.923779
|
|
838
|
+
-0.000595 -0.382114 -0.924115
|
|
839
|
+
-0.000595 -0.382114 -0.924115
|
|
840
|
+
-0.000595 -0.382114 -0.924115
|
|
841
|
+
-0.001445 -0.923173 -0.384383
|
|
842
|
+
-0.001445 -0.923173 -0.384383
|
|
843
|
+
-0.001445 -0.923172 -0.384383
|
|
844
|
+
0.000000 -0.923988 -0.382421
|
|
845
|
+
0.000000 -0.923988 -0.382421
|
|
846
|
+
0.000000 -0.923988 -0.382421
|
|
847
|
+
-0.000000 -0.923649 0.383238
|
|
848
|
+
-0.000000 -0.923649 0.383238
|
|
849
|
+
-0.000000 -0.923649 0.383238
|
|
850
|
+
-0.001434 -0.924453 0.381294
|
|
851
|
+
-0.001434 -0.924453 0.381294
|
|
852
|
+
-0.001434 -0.924453 0.381294
|
|
853
|
+
-0.000583 -0.382903 0.923788
|
|
854
|
+
-0.000583 -0.382903 0.923788
|
|
855
|
+
-0.000583 -0.382903 0.923788
|
|
856
|
+
0.000000 -0.382111 0.924116
|
|
857
|
+
0.000000 -0.382111 0.924116
|
|
858
|
+
0.000000 -0.382111 0.924116
|
|
859
|
+
0.999999 -0.001235 0.000000
|
|
860
|
+
0.999999 -0.001235 0.000000
|
|
861
|
+
0.999999 -0.001235 0.000000
|
|
862
|
+
0.999982 0.005941 0.000000
|
|
863
|
+
0.999982 0.005941 0.000000
|
|
864
|
+
0.999982 0.005941 0.000000
|
|
865
|
+
0.999995 -0.001235 0.002979
|
|
866
|
+
0.999995 -0.001235 0.002979
|
|
867
|
+
0.999995 -0.001235 0.002979
|
|
868
|
+
0.999999 -0.001235 0.000000
|
|
869
|
+
0.999999 -0.001235 0.000000
|
|
870
|
+
0.999999 -0.001235 0.000000
|
|
871
|
+
1.000000 -0.000001 0.000000
|
|
872
|
+
1.000000 -0.000001 0.000000
|
|
873
|
+
1.000000 -0.000001 0.000000
|
|
874
|
+
0.999995 -0.001235 -0.002979
|
|
875
|
+
0.999995 -0.001235 -0.002979
|
|
876
|
+
0.999995 -0.001235 -0.002979
|
|
877
|
+
0.019183 -0.001643 -0.999815
|
|
878
|
+
0.019183 -0.001643 -0.999815
|
|
879
|
+
0.019183 -0.001643 -0.999815
|
|
880
|
+
0.019183 -0.001643 -0.999815
|
|
881
|
+
0.019183 -0.001643 -0.999815
|
|
882
|
+
0.019183 -0.001643 -0.999815
|
|
883
|
+
-0.003263 0.698589 -0.715516
|
|
884
|
+
-0.003263 0.698589 -0.715516
|
|
885
|
+
-0.003263 0.698589 -0.715516
|
|
886
|
+
-0.003263 0.698588 -0.715517
|
|
887
|
+
-0.003263 0.698588 -0.715517
|
|
888
|
+
-0.003263 0.698588 -0.715517
|
|
889
|
+
-0.024234 0.999704 -0.002116
|
|
890
|
+
-0.024234 0.999704 -0.002116
|
|
891
|
+
-0.024234 0.999704 -0.002116
|
|
892
|
+
-0.024227 0.999704 -0.002094
|
|
893
|
+
-0.024227 0.999704 -0.002094
|
|
894
|
+
-0.024227 0.999704 -0.002094
|
|
895
|
+
-0.030740 0.715511 0.697925
|
|
896
|
+
-0.030740 0.715511 0.697925
|
|
897
|
+
-0.030740 0.715511 0.697925
|
|
898
|
+
-0.030736 0.715496 0.697940
|
|
899
|
+
-0.030736 0.715496 0.697940
|
|
900
|
+
-0.030736 0.715496 0.697940
|
|
901
|
+
-0.019182 0.001632 0.999815
|
|
902
|
+
-0.019182 0.001632 0.999815
|
|
903
|
+
-0.019182 0.001632 0.999815
|
|
904
|
+
-0.019183 0.001635 0.999815
|
|
905
|
+
-0.019183 0.001635 0.999815
|
|
906
|
+
-0.019183 0.001635 0.999815
|
|
907
|
+
0.003545 -0.705133 0.709066
|
|
908
|
+
0.003545 -0.705133 0.709066
|
|
909
|
+
0.003545 -0.705133 0.709066
|
|
910
|
+
0.003546 -0.705136 0.709063
|
|
911
|
+
0.003546 -0.705136 0.709063
|
|
912
|
+
0.003546 -0.705136 0.709063
|
|
913
|
+
0.024286 -0.999705 -0.000619
|
|
914
|
+
0.024286 -0.999705 -0.000619
|
|
915
|
+
0.024286 -0.999705 -0.000619
|
|
916
|
+
0.024300 -0.999704 -0.000652
|
|
917
|
+
0.024300 -0.999704 -0.000652
|
|
918
|
+
0.024300 -0.999704 -0.000652
|
|
919
|
+
0.030676 -0.702061 -0.711456
|
|
920
|
+
0.030676 -0.702061 -0.711456
|
|
921
|
+
0.030676 -0.702061 -0.711456
|
|
922
|
+
0.030670 -0.702090 -0.711428
|
|
923
|
+
0.030670 -0.702090 -0.711428
|
|
924
|
+
0.030670 -0.702090 -0.711428
|
|
925
|
+
0.999299 0.032187 0.019099
|
|
926
|
+
0.999299 0.032187 0.019099
|
|
927
|
+
0.999299 0.032187 0.019099
|
|
928
|
+
0.998771 0.044491 0.021832
|
|
929
|
+
0.998771 0.044491 0.021832
|
|
930
|
+
0.998771 0.044491 0.021832
|
|
931
|
+
0.999299 0.032178 0.019126
|
|
932
|
+
0.999299 0.032178 0.019126
|
|
933
|
+
0.999299 0.032178 0.019126
|
|
934
|
+
0.999301 0.032138 0.019116
|
|
935
|
+
0.999301 0.032138 0.019116
|
|
936
|
+
0.999301 0.032138 0.019116
|
|
937
|
+
0.999298 0.032217 0.019134
|
|
938
|
+
0.999298 0.032217 0.019134
|
|
939
|
+
0.999298 0.032217 0.019134
|
|
940
|
+
0.999301 0.032160 0.019058
|
|
941
|
+
0.999301 0.032160 0.019058
|
|
942
|
+
0.999301 0.032160 0.019058
|
|
943
|
+
-0.999299 -0.032181 -0.019128
|
|
944
|
+
-0.999299 -0.032181 -0.019128
|
|
945
|
+
-0.999299 -0.032181 -0.019128
|
|
946
|
+
-0.999299 -0.032160 -0.019185
|
|
947
|
+
-0.999299 -0.032160 -0.019185
|
|
948
|
+
-0.999299 -0.032160 -0.019185
|
|
949
|
+
-0.999299 -0.032178 -0.019125
|
|
950
|
+
-0.999299 -0.032178 -0.019125
|
|
951
|
+
-0.999299 -0.032178 -0.019125
|
|
952
|
+
-0.999298 -0.032218 -0.019135
|
|
953
|
+
-0.999298 -0.032218 -0.019135
|
|
954
|
+
-0.999298 -0.032218 -0.019135
|
|
955
|
+
-0.999299 -0.032178 -0.019127
|
|
956
|
+
-0.999299 -0.032178 -0.019127
|
|
957
|
+
-0.999299 -0.032178 -0.019127
|
|
958
|
+
-0.999670 -0.019806 -0.016377
|
|
959
|
+
-0.999670 -0.019806 -0.016377
|
|
960
|
+
-0.999670 -0.019806 -0.016377
|
|
961
|
+
</float_array>
|
|
962
|
+
<technique_common>
|
|
963
|
+
<accessor source="#drc_l_clav-Normal0-array" count="750" stride="3">
|
|
964
|
+
<param name="X" type="float"/>
|
|
965
|
+
<param name="Y" type="float"/>
|
|
966
|
+
<param name="Z" type="float"/>
|
|
967
|
+
</accessor>
|
|
968
|
+
</technique_common>
|
|
969
|
+
</source>
|
|
970
|
+
<source id="drc_l_clav-UV0">
|
|
971
|
+
<float_array id="drc_l_clav-UV0-array" count="564">
|
|
972
|
+
0.780336 0.973370
|
|
973
|
+
0.991473 0.777143
|
|
974
|
+
0.755162 0.897322
|
|
975
|
+
0.772689 0.915086
|
|
976
|
+
0.769156 0.916402
|
|
977
|
+
0.753624 0.900642
|
|
978
|
+
0.729711 0.896667
|
|
979
|
+
0.731057 0.900074
|
|
980
|
+
0.772026 0.939588
|
|
981
|
+
0.768600 0.938120
|
|
982
|
+
0.711216 0.913526
|
|
983
|
+
0.714642 0.914994
|
|
984
|
+
0.753533 0.956448
|
|
985
|
+
0.752156 0.953104
|
|
986
|
+
0.710554 0.938028
|
|
987
|
+
0.714057 0.936776
|
|
988
|
+
0.728051 0.955856
|
|
989
|
+
0.729588 0.952536
|
|
990
|
+
0.779551 0.876756
|
|
991
|
+
0.787162 0.884183
|
|
992
|
+
0.787085 0.894608
|
|
993
|
+
0.779347 0.901984
|
|
994
|
+
0.768505 0.901914
|
|
995
|
+
0.760893 0.894486
|
|
996
|
+
0.760954 0.883990
|
|
997
|
+
0.768709 0.876686
|
|
998
|
+
0.534517 0.835389
|
|
999
|
+
0.521572 0.835295
|
|
1000
|
+
0.521601 0.827389
|
|
1001
|
+
0.534502 0.827434
|
|
1002
|
+
0.547408 0.835399
|
|
1003
|
+
0.547419 0.827494
|
|
1004
|
+
0.560365 0.835420
|
|
1005
|
+
0.560404 0.827465
|
|
1006
|
+
0.573307 0.835366
|
|
1007
|
+
0.573310 0.827460
|
|
1008
|
+
0.586249 0.835428
|
|
1009
|
+
0.586214 0.827473
|
|
1010
|
+
0.599208 0.835408
|
|
1011
|
+
0.599178 0.827453
|
|
1012
|
+
0.612098 0.835339
|
|
1013
|
+
0.612074 0.827384
|
|
1014
|
+
0.624975 0.827281
|
|
1015
|
+
0.625044 0.835187
|
|
1016
|
+
0.731510 0.902185
|
|
1017
|
+
0.752698 0.902692
|
|
1018
|
+
0.748297 0.912204
|
|
1019
|
+
0.735353 0.911862
|
|
1020
|
+
0.716148 0.916181
|
|
1021
|
+
0.726002 0.920402
|
|
1022
|
+
0.767268 0.917499
|
|
1023
|
+
0.757221 0.921227
|
|
1024
|
+
0.715585 0.936593
|
|
1025
|
+
0.725632 0.932865
|
|
1026
|
+
0.766735 0.937847
|
|
1027
|
+
0.756880 0.933626
|
|
1028
|
+
0.730185 0.951336
|
|
1029
|
+
0.734557 0.941888
|
|
1030
|
+
0.751343 0.951907
|
|
1031
|
+
0.747500 0.942230
|
|
1032
|
+
0.435844 0.989708
|
|
1033
|
+
0.414650 0.989579
|
|
1034
|
+
0.414939 0.957760
|
|
1035
|
+
0.436132 0.957986
|
|
1036
|
+
0.457003 0.989886
|
|
1037
|
+
0.457291 0.958164
|
|
1038
|
+
0.478229 0.990064
|
|
1039
|
+
0.478518 0.958342
|
|
1040
|
+
0.499396 0.990291
|
|
1041
|
+
0.499685 0.958471
|
|
1042
|
+
0.520562 0.990418
|
|
1043
|
+
0.520851 0.958696
|
|
1044
|
+
0.541787 0.990598
|
|
1045
|
+
0.542078 0.958877
|
|
1046
|
+
0.562947 0.990778
|
|
1047
|
+
0.563237 0.959055
|
|
1048
|
+
0.584140 0.991005
|
|
1049
|
+
0.584430 0.959185
|
|
1050
|
+
0.660904 0.895940
|
|
1051
|
+
0.687604 0.894843
|
|
1052
|
+
0.685131 0.901370
|
|
1053
|
+
0.663977 0.902279
|
|
1054
|
+
0.707307 0.912210
|
|
1055
|
+
0.700716 0.915159
|
|
1056
|
+
0.642848 0.914857
|
|
1057
|
+
0.649673 0.917250
|
|
1058
|
+
0.708474 0.937867
|
|
1059
|
+
0.701649 0.935474
|
|
1060
|
+
0.644007 0.940517
|
|
1061
|
+
0.650583 0.937628
|
|
1062
|
+
0.690421 0.956790
|
|
1063
|
+
0.687321 0.950508
|
|
1064
|
+
0.663699 0.957934
|
|
1065
|
+
0.666192 0.951354
|
|
1066
|
+
0.591460 0.918790
|
|
1067
|
+
0.616922 0.918737
|
|
1068
|
+
0.617003 0.954610
|
|
1069
|
+
0.591495 0.954713
|
|
1070
|
+
0.565979 0.918827
|
|
1071
|
+
0.566016 0.954750
|
|
1072
|
+
0.540496 0.918841
|
|
1073
|
+
0.540538 0.954764
|
|
1074
|
+
0.515007 0.918839
|
|
1075
|
+
0.515003 0.954712
|
|
1076
|
+
0.489516 0.918838
|
|
1077
|
+
0.489470 0.954760
|
|
1078
|
+
0.464032 0.918823
|
|
1079
|
+
0.463993 0.954747
|
|
1080
|
+
0.438549 0.918788
|
|
1081
|
+
0.438516 0.954711
|
|
1082
|
+
0.413088 0.918736
|
|
1083
|
+
0.413009 0.954610
|
|
1084
|
+
0.652780 0.917485
|
|
1085
|
+
0.665451 0.904994
|
|
1086
|
+
0.683803 0.904806
|
|
1087
|
+
0.697113 0.916935
|
|
1088
|
+
0.697599 0.934348
|
|
1089
|
+
0.684964 0.946781
|
|
1090
|
+
0.666574 0.947029
|
|
1091
|
+
0.653248 0.934862
|
|
1092
|
+
0.586854 0.990814
|
|
1093
|
+
0.586886 0.958795
|
|
1094
|
+
0.609462 0.958815
|
|
1095
|
+
0.609478 0.990785
|
|
1096
|
+
0.632047 0.958869
|
|
1097
|
+
0.632041 0.990789
|
|
1098
|
+
0.654700 0.958824
|
|
1099
|
+
0.654671 0.990794
|
|
1100
|
+
0.677278 0.958813
|
|
1101
|
+
0.677294 0.990832
|
|
1102
|
+
0.699855 0.958803
|
|
1103
|
+
0.699868 0.990823
|
|
1104
|
+
0.722508 0.958844
|
|
1105
|
+
0.722518 0.990764
|
|
1106
|
+
0.745093 0.958789
|
|
1107
|
+
0.745101 0.990809
|
|
1108
|
+
0.767669 0.958784
|
|
1109
|
+
0.767676 0.990803
|
|
1110
|
+
0.990960 0.797029
|
|
1111
|
+
0.985005 0.796858
|
|
1112
|
+
0.986225 0.752684
|
|
1113
|
+
0.992148 0.752831
|
|
1114
|
+
0.985519 0.776969
|
|
1115
|
+
0.998726 0.777323
|
|
1116
|
+
0.998176 0.797173
|
|
1117
|
+
0.976968 0.796693
|
|
1118
|
+
0.977478 0.776803
|
|
1119
|
+
0.999391 0.753021
|
|
1120
|
+
0.998043 0.802081
|
|
1121
|
+
0.990827 0.801941
|
|
1122
|
+
0.772716 0.993094
|
|
1123
|
+
0.773086 0.973234
|
|
1124
|
+
0.779932 0.993259
|
|
1125
|
+
0.779833 0.998173
|
|
1126
|
+
0.772613 0.998003
|
|
1127
|
+
0.773542 0.948928
|
|
1128
|
+
0.780788 0.949057
|
|
1129
|
+
0.785885 0.993339
|
|
1130
|
+
0.786717 0.949161
|
|
1131
|
+
0.786293 0.973448
|
|
1132
|
+
0.794333 0.973635
|
|
1133
|
+
0.793921 0.993524
|
|
1134
|
+
0.415089 0.914584
|
|
1135
|
+
0.406767 0.914533
|
|
1136
|
+
0.406973 0.882879
|
|
1137
|
+
0.415293 0.882929
|
|
1138
|
+
0.448933 0.883126
|
|
1139
|
+
0.448740 0.914780
|
|
1140
|
+
0.490120 0.883349
|
|
1141
|
+
0.489944 0.915004
|
|
1142
|
+
0.501924 0.883405
|
|
1143
|
+
0.501767 0.915060
|
|
1144
|
+
0.511433 0.915101
|
|
1145
|
+
0.511571 0.883446
|
|
1146
|
+
0.552586 0.915254
|
|
1147
|
+
0.552706 0.883599
|
|
1148
|
+
0.565693 0.915297
|
|
1149
|
+
0.565796 0.883641
|
|
1150
|
+
0.599396 0.915390
|
|
1151
|
+
0.599485 0.883734
|
|
1152
|
+
0.612577 0.883766
|
|
1153
|
+
0.612500 0.915420
|
|
1154
|
+
0.622281 0.883786
|
|
1155
|
+
0.622213 0.915441
|
|
1156
|
+
0.630598 0.883801
|
|
1157
|
+
0.630539 0.915456
|
|
1158
|
+
0.642304 0.915475
|
|
1159
|
+
0.642360 0.883819
|
|
1160
|
+
0.751434 0.861597
|
|
1161
|
+
0.757332 0.867653
|
|
1162
|
+
0.757441 0.886614
|
|
1163
|
+
0.749972 0.893651
|
|
1164
|
+
0.733103 0.893738
|
|
1165
|
+
0.724633 0.887416
|
|
1166
|
+
0.724517 0.867266
|
|
1167
|
+
0.731171 0.861703
|
|
1168
|
+
0.654518 0.888077
|
|
1169
|
+
0.653867 0.878808
|
|
1170
|
+
0.659198 0.872814
|
|
1171
|
+
0.677246 0.871641
|
|
1172
|
+
0.683274 0.876598
|
|
1173
|
+
0.679093 0.891726
|
|
1174
|
+
0.660173 0.892910
|
|
1175
|
+
0.683959 0.886360
|
|
1176
|
+
0.701589 0.865317
|
|
1177
|
+
0.695944 0.870674
|
|
1178
|
+
0.677855 0.870739
|
|
1179
|
+
0.672094 0.865126
|
|
1180
|
+
0.672059 0.855837
|
|
1181
|
+
0.677342 0.850629
|
|
1182
|
+
0.696303 0.850511
|
|
1183
|
+
0.701552 0.855533
|
|
1184
|
+
0.411082 0.876338
|
|
1185
|
+
0.411074 0.868710
|
|
1186
|
+
0.502609 0.868615
|
|
1187
|
+
0.502618 0.876243
|
|
1188
|
+
0.411054 0.851308
|
|
1189
|
+
0.502590 0.851219
|
|
1190
|
+
0.411045 0.843418
|
|
1191
|
+
0.502581 0.843335
|
|
1192
|
+
0.411036 0.834130
|
|
1193
|
+
0.502571 0.834046
|
|
1194
|
+
0.410976 0.826856
|
|
1195
|
+
0.502615 0.826769
|
|
1196
|
+
0.411008 0.808621
|
|
1197
|
+
0.502544 0.808527
|
|
1198
|
+
0.410999 0.801501
|
|
1199
|
+
0.502535 0.801404
|
|
1200
|
+
0.410989 0.791716
|
|
1201
|
+
0.502525 0.791621
|
|
1202
|
+
0.522617 0.880011
|
|
1203
|
+
0.513812 0.880021
|
|
1204
|
+
0.513762 0.837428
|
|
1205
|
+
0.522566 0.837417
|
|
1206
|
+
0.543540 0.879938
|
|
1207
|
+
0.543486 0.837394
|
|
1208
|
+
0.554249 0.879935
|
|
1209
|
+
0.554195 0.837392
|
|
1210
|
+
0.570994 0.879936
|
|
1211
|
+
0.571046 0.837392
|
|
1212
|
+
0.581509 0.879940
|
|
1213
|
+
0.581488 0.837396
|
|
1214
|
+
0.601195 0.879981
|
|
1215
|
+
0.601174 0.837387
|
|
1216
|
+
0.609777 0.879928
|
|
1217
|
+
0.609789 0.837384
|
|
1218
|
+
0.630068 0.879960
|
|
1219
|
+
0.630027 0.837366
|
|
1220
|
+
0.502571 0.834046
|
|
1221
|
+
0.502581 0.843335
|
|
1222
|
+
0.411045 0.843418
|
|
1223
|
+
0.411036 0.834130
|
|
1224
|
+
0.502590 0.851219
|
|
1225
|
+
0.411054 0.851308
|
|
1226
|
+
0.502609 0.868615
|
|
1227
|
+
0.411074 0.868710
|
|
1228
|
+
0.502618 0.876243
|
|
1229
|
+
0.411082 0.876338
|
|
1230
|
+
0.502525 0.791621
|
|
1231
|
+
0.502535 0.801404
|
|
1232
|
+
0.410999 0.801501
|
|
1233
|
+
0.410989 0.791716
|
|
1234
|
+
0.502544 0.808527
|
|
1235
|
+
0.411008 0.808621
|
|
1236
|
+
0.502615 0.826769
|
|
1237
|
+
0.410976 0.826856
|
|
1238
|
+
0.689643 0.876929
|
|
1239
|
+
0.694927 0.871722
|
|
1240
|
+
0.713887 0.871604
|
|
1241
|
+
0.719174 0.886409
|
|
1242
|
+
0.719137 0.876626
|
|
1243
|
+
0.713528 0.891766
|
|
1244
|
+
0.695439 0.891831
|
|
1245
|
+
0.689678 0.886218
|
|
1246
|
+
0.639900 0.865578
|
|
1247
|
+
0.639249 0.856310
|
|
1248
|
+
0.644580 0.850316
|
|
1249
|
+
0.664475 0.869228
|
|
1250
|
+
0.662629 0.849143
|
|
1251
|
+
0.668656 0.854100
|
|
1252
|
+
0.669341 0.863861
|
|
1253
|
+
0.645555 0.870412
|
|
1254
|
+
</float_array>
|
|
1255
|
+
<technique_common>
|
|
1256
|
+
<accessor source="#drc_l_clav-UV0-array" count="282" stride="2">
|
|
1257
|
+
<param name="S" type="float"/>
|
|
1258
|
+
<param name="T" type="float"/>
|
|
1259
|
+
</accessor>
|
|
1260
|
+
</technique_common>
|
|
1261
|
+
</source>
|
|
1262
|
+
<vertices id="drc_l_clav-VERTEX">
|
|
1263
|
+
<input semantic="POSITION" source="#drc_l_clav-POSITION"/>
|
|
1264
|
+
</vertices>
|
|
1265
|
+
<triangles count="250" material="drc_extremities_diffuse"><input semantic="VERTEX" offset="0" source="#drc_l_clav-VERTEX"/><input semantic="NORMAL" offset="1" source="#drc_l_clav-Normal0"/><input semantic="TEXCOORD" offset="2" set="0" source="#drc_l_clav-UV0"/><p> 0 0 184 3 1 185 2 2 186 2 3 186 1 4 187 0 5 184 4 6 170 7 7 168 6 8 169 6 9 169 5 10 171 4 11 170 3 12 185 0 13 184 9 14 182 9 15 182 8 16 183 3 17 185 2 18 154 3 19 153 8 20 152 8 21 152 10 22 150 2 23 154 1 24 164 2 25 163 10 26 162 10 27 162 11 28 165 1 29 164 0 30 149 1 31 148 11 32 144 11 33 144 9 34 138 0 35 149 12 36 176 15 37 178 14 38 179 14 39 179 13 40 177 12 41 176 16 42 151 10 43 150 8 44 152 8 45 152 17 46 0 16 47 151 18 48 166 11 49 165 10 50 162 10 51 162 16 52 167 18 53 166 19 54 1 9 55 138 11 56 144 11 57 144 18 58 143 19 59 1 5 60 171 21 61 172 20 62 173 20 63 173 4 64 170 5 65 171 19 66 1 4 67 141 20 68 140 20 69 140 22 70 142 19 71 1 9 72 182 24 73 180 23 74 181 23 75 181 8 76 183 9 77 182 17 78 0 8 79 152 23 80 157 23 81 157 25 82 159 17 83 0 21 84 172 25 85 174 22 86 175 22 87 175 20 88 173 21 89 172 6 90 155 16 91 151 17 92 0 17 93 0 5 94 156 6 95 155 7 96 168 18 97 166 16 98 167 16 99 167 6 100 169 7 101 168 4 102 141 19 103 1 18 104 143 18 105 143 7 106 147 4 107 141 9 108 138 19 109 1 22 110 142 22 111 142 24 112 139 9 113 138 5 114 156 17 115 0 25 116 159 25 117 159 21 118 158 5 119 156 24 120 180 14 121 179 15 122 178 15 123 178 23 124 181 24 125 180 23 126 157 15 127 161 12 128 160 12 129 160 25 130 159 23 131 157 25 132 174 12 133 176 13 134 177 13 135 177 22 136 175 25 137 174 22 138 142 13 139 146 14 140 145 14 141 145 24 142 139 22 143 142 26 144 237 29 145 236 28 146 238 28 147 238 27 148 239 26 149 237 27 150 239 28 151 238 31 152 240 31 153 240 30 154 241 27 155 239 30 156 241 31 157 240 33 158 242 33 159 242 32 160 243 30 161 241 32 162 243 33 163 242 35 164 244 35 165 244 34 166 245 32 167 243 34 168 245 35 169 244 37 170 246 37 171 246 36 172 247 34 173 245 36 174 232 37 175 231 39 176 230 39 177 230 38 178 233 36 179 232 38 180 233 39 181 230 41 182 234 41 183 234 40 184 235 38 185 233 40 186 235 41 187 234 29 188 236 29 189 236 26 190 237 40 191 235 42 192 221 45 193 220 44 194 218 44 195 218 43 196 219 42 197 221 43 198 219 44 199 218 47 200 216 47 201 216 46 202 217 43 203 219 46 204 217 47 205 216 49 206 213 49 207 213 48 208 214 46 209 217 48 210 214 49 211 213 51 212 212 51 213 212 50 214 215 48 215 214 50 216 229 51 217 228 53 218 226 53 219 226 52 220 227 50 221 229 52 222 227 53 223 226 55 224 224 55 225 224 54 226 225 52 227 227 54 228 225 55 229 224 57 230 222 57 231 222 56 232 223 54 233 225 56 234 223 57 235 222 45 236 220 45 237 220 42 238 221 56 239 223 26 240 192 34 241 188 38 242 194 38 243 194 40 244 193 26 245 192 38 246 194 34 247 188 36 248 195 34 249 188 26 250 192 30 251 190 30 252 190 32 253 189 34 254 188 27 255 191 30 256 190 26 257 192 42 258 208 50 259 204 54 260 210 54 261 210 56 262 209 42 263 208 54 264 210 50 265 204 52 266 211 50 267 204 42 268 208 46 269 206 46 270 206 48 271 205 50 272 204 43 273 207 46 274 206 42 275 208 45 276 196 55 277 201 47 278 198 47 279 198 44 280 197 45 281 196 47 282 198 55 283 201 51 284 200 51 285 200 49 286 199 47 287 198 51 288 200 55 289 201 53 290 203 45 291 196 57 292 202 55 293 201 58 294 69 61 295 68 60 296 70 60 297 70 59 298 71 58 299 69 59 300 71 60 301 70 63 302 72 63 303 72 62 304 73 59 305 71 62 306 73 63 307 72 65 308 74 65 309 74 64 310 75 62 311 73 64 312 75 65 313 74 67 314 76 67 315 76 66 316 77 64 317 75 66 318 62 67 319 61 69 320 60 69 321 60 68 322 63 66 323 62 68 324 63 69 325 60 71 326 64 71 327 64 70 328 65 68 329 63 70 330 65 71 331 64 73 332 66 73 333 66 72 334 67 70 335 65 72 336 67 73 337 66 61 338 68 61 339 68 58 340 69 72 341 67 61 342 93 75 343 92 74 344 90 74 345 90 60 346 91 61 347 93 60 348 91 74 349 90 76 350 86 76 351 86 63 352 87 60 353 91 63 354 87 76 355 86 77 356 82 77 357 82 65 358 83 63 359 87 65 360 83 77 361 82 78 362 79 78 363 79 67 364 80 65 365 83 67 366 80 78 367 79 79 368 78 79 369 78 69 370 81 67 371 80 69 372 81 79 373 78 80 374 84 80 375 84 71 376 85 69 377 81 71 378 85 80 379 84 81 380 88 81 381 88 73 382 89 71 383 85 73 384 89 81 385 88 75 386 92 75 387 92 61 388 93 73 389 89 75 390 103 83 391 102 82 392 104 82 393 104 74 394 105 75 395 103 74 396 105 82 397 104 84 398 106 84 399 106 76 400 107 74 401 105 76 402 107 84 403 106 85 404 108 85 405 108 77 406 109 76 407 107 77 408 109 85 409 108 86 410 110 86 411 110 78 412 111 77 413 109 78 414 96 86 415 95 87 416 94 87 417 94 79 418 97 78 419 96 79 420 97 87 421 94 88 422 98 88 423 98 80 424 99 79 425 97 80 426 99 88 427 98 89 428 100 89 429 100 81 430 101 80 431 99 81 432 101 89 433 100 83 434 102 83 435 102 75 436 103 81 437 101 58 438 56 59 439 58 91 440 59 91 441 59 90 442 57 58 443 56 59 444 58 62 445 54 92 446 55 92 447 55 91 448 59 59 449 58 62 450 54 64 451 50 93 452 51 93 453 51 92 454 55 62 455 54 64 456 50 66 457 45 94 458 46 94 459 46 93 460 51 64 461 50 66 462 45 68 463 44 95 464 47 95 465 47 94 466 46 66 467 45 68 468 44 70 469 48 96 470 49 96 471 49 95 472 47 68 473 44 70 474 48 72 475 52 97 476 53 97 477 53 96 478 49 70 479 48 72 480 52 58 481 56 90 482 57 90 483 57 97 484 53 72 485 52 90 486 34 91 487 36 99 488 37 99 489 37 98 490 35 90 491 34 91 492 36 92 493 38 100 494 39 100 495 39 99 496 37 91 497 36 92 498 38 93 499 40 101 500 41 101 501 41 100 502 39 92 503 38 93 504 40 94 505 43 102 506 42 102 507 42 101 508 41 93 509 40 94 510 27 95 511 26 103 512 29 103 513 29 102 514 28 94 515 27 95 516 26 96 517 30 104 518 31 104 519 31 103 520 29 95 521 26 96 522 30 97 523 32 105 524 33 105 525 33 104 526 31 96 527 30 97 528 32 90 529 34 98 530 35 98 531 35 105 532 33 97 533 32 98 534 22 102 535 18 104 536 24 104 537 24 105 538 23 98 539 22 104 540 24 102 541 18 103 542 25 102 543 18 98 544 22 100 545 20 100 546 20 101 547 19 102 548 18 99 549 21 100 550 20 98 551 22 82 552 14 83 553 16 107 554 17 107 555 17 106 556 15 82 557 14 84 558 10 82 559 14 106 560 15 106 561 15 108 562 11 84 563 10 85 564 6 84 565 10 108 566 11 108 567 11 109 568 7 85 569 6 86 570 2 85 571 6 109 572 7 109 573 7 110 574 5 86 575 2 87 576 3 86 577 2 110 578 5 110 579 5 111 580 4 87 581 3 88 582 8 87 583 3 111 584 4 111 585 4 112 586 9 88 587 8 89 588 12 88 589 8 112 590 9 112 591 9 113 592 13 89 593 12 83 594 16 89 595 12 113 596 13 113 597 13 107 598 17 83 599 16 106 600 130 107 601 128 115 602 129 115 603 129 114 604 131 106 605 130 108 606 132 106 607 130 114 608 131 114 609 131 116 610 133 108 611 132 109 612 134 108 613 132 116 614 133 116 615 133 117 616 135 109 617 134 110 618 136 109 619 134 117 620 135 117 621 135 118 622 137 110 623 136 111 624 122 110 625 121 118 626 120 118 627 120 119 628 123 111 629 122 112 630 124 111 631 122 119 632 123 119 633 123 120 634 125 112 635 124 113 636 126 112 637 124 120 638 125 120 639 125 121 640 127 113 641 126 107 642 128 113 643 126 121 644 127 121 645 127 115 646 129 107 647 128 114 648 112 119 649 116 117 650 114 117 651 114 116 652 113 114 653 112 117 654 114 119 655 116 118 656 115 119 657 116 114 658 112 121 659 118 121 660 118 120 661 117 119 662 116 115 663 119 121 664 118 114 665 112 122 666 248 125 667 251 124 668 250 124 669 250 123 670 249 122 671 248 123 672 249 124 673 250 127 674 253 127 675 253 126 676 252 123 677 249 126 678 252 127 679 253 129 680 255 129 681 255 128 682 254 126 683 252 128 684 254 129 685 255 131 686 257 131 687 257 130 688 256 128 689 254 130 690 258 131 691 261 133 692 260 133 693 260 132 694 259 130 695 258 132 696 259 133 697 260 135 698 263 135 699 263 134 700 262 132 701 259 134 702 262 135 703 263 137 704 265 137 705 265 136 706 264 134 707 262 136 708 264 137 709 265 125 710 251 125 711 251 122 712 248 136 713 264 122 714 266 130 715 269 134 716 268 134 717 268 136 718 267 122 719 266 134 720 268 130 721 269 132 722 270 130 723 269 122 724 266 126 725 272 126 726 272 128 727 271 130 728 269 123 729 273 126 730 272 122 731 266 125 732 274 135 733 277 127 734 276 127 735 276 124 736 275 125 737 274 127 738 276 135 739 277 131 740 279 131 741 279 129 742 278 127 743 276 131 744 279 135 745 277 133 746 280 125 747 274 137 748 281 135 749 277</p></triangles>
|
|
1266
|
+
</mesh>
|
|
1267
|
+
</geometry>
|
|
1268
|
+
</library_geometries>
|
|
1269
|
+
<library_visual_scenes>
|
|
1270
|
+
<visual_scene id="l_clav" name="l_clav">
|
|
1271
|
+
<node name="g27" id="g27" sid="g27"><matrix sid="matrix">1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000</matrix><extra><technique profile="FCOLLADA"><visibility>1.000000</visibility></technique></extra><node name="l_clav_node" id="l_clav_node" sid="l_clav_node"><matrix sid="matrix">1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000</matrix><extra><technique profile="FCOLLADA"><visibility>1.000000</visibility></technique></extra><node name="drc_l_clav" id="drc_l_clav" sid="drc_l_clav"><matrix sid="matrix">1.000000 0.000000 0.000000 0.000000 0.000000 0.499999 -0.866026 0.000000 0.000000 0.866026 0.499999 0.000000 0.000000 0.000000 0.000000 1.000000</matrix><instance_geometry url="#drc_l_clav-lib"><bind_material><technique_common><instance_material symbol="drc_extremities_diffuse" target="#drc_extremities_diffuse"/></technique_common></bind_material></instance_geometry><extra><technique profile="FCOLLADA"><visibility>1.000000</visibility></technique></extra></node></node></node>
|
|
1272
|
+
<extra><technique profile="MAX3D"><frame_rate>30.000000</frame_rate></technique><technique profile="FCOLLADA"><start_time>0.000000</start_time><end_time>3.333333</end_time></technique></extra>
|
|
1273
|
+
</visual_scene>
|
|
1274
|
+
</library_visual_scenes>
|
|
1275
|
+
<scene>
|
|
1276
|
+
<instance_visual_scene url="#l_clav"></instance_visual_scene>
|
|
1277
|
+
</scene>
|
|
1278
|
+
</COLLADA>
|