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,1204 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<COLLADA xmlns="http://www.collada.org/2005/11/COLLADASchema" version="1.4.1">
|
|
3
|
+
<asset>
|
|
4
|
+
<contributor>
|
|
5
|
+
<author></author>
|
|
6
|
+
<authoring_tool>FBX COLLADA exporter</authoring_tool>
|
|
7
|
+
<comments></comments>
|
|
8
|
+
</contributor>
|
|
9
|
+
<created>2013-04-12T18:21:45Z</created>
|
|
10
|
+
<keywords></keywords>
|
|
11
|
+
<modified>2013-04-12T18:21:45Z</modified>
|
|
12
|
+
<revision></revision>
|
|
13
|
+
<subject></subject>
|
|
14
|
+
<title></title>
|
|
15
|
+
<unit meter="1.000000" name="centimeter"></unit>
|
|
16
|
+
<up_axis>Z_UP</up_axis>
|
|
17
|
+
</asset>
|
|
18
|
+
<library_images>
|
|
19
|
+
<image id="drc_extremities_diffuse-image" name="drc_extremities_diffuse">
|
|
20
|
+
<init_from>../materials/textures/drc_extremities_diffuse.jpg</init_from>
|
|
21
|
+
</image>
|
|
22
|
+
</library_images>
|
|
23
|
+
<library_materials>
|
|
24
|
+
<material id="drc_extremities_diffuse" name="drc_extremities_diffuse">
|
|
25
|
+
<instance_effect url="#drc_extremities_diffuse-fx"/>
|
|
26
|
+
</material>
|
|
27
|
+
</library_materials>
|
|
28
|
+
<library_effects>
|
|
29
|
+
<effect id="drc_extremities_diffuse-fx" name="drc_extremities_diffuse">
|
|
30
|
+
<profile_COMMON>
|
|
31
|
+
<technique sid="standard">
|
|
32
|
+
<phong>
|
|
33
|
+
<emission>
|
|
34
|
+
<color sid="emission">0.000000 0.000000 0.000000 1.000000</color>
|
|
35
|
+
</emission>
|
|
36
|
+
<ambient>
|
|
37
|
+
<color sid="ambient">0.588235 0.588235 0.588235 1.000000</color>
|
|
38
|
+
</ambient>
|
|
39
|
+
<diffuse>
|
|
40
|
+
<texture texture="drc_extremities_diffuse-image" texcoord="CHANNEL0">
|
|
41
|
+
<extra>
|
|
42
|
+
<technique profile="MAYA">
|
|
43
|
+
<wrapU sid="wrapU0">TRUE</wrapU>
|
|
44
|
+
<wrapV sid="wrapV0">TRUE</wrapV>
|
|
45
|
+
<blend_mode>ADD</blend_mode>
|
|
46
|
+
</technique>
|
|
47
|
+
</extra>
|
|
48
|
+
</texture>
|
|
49
|
+
</diffuse>
|
|
50
|
+
<specular>
|
|
51
|
+
<color sid="specular">0.000000 0.000000 0.000000 1.000000</color>
|
|
52
|
+
</specular>
|
|
53
|
+
<shininess>
|
|
54
|
+
<float sid="shininess">2.000000</float>
|
|
55
|
+
</shininess>
|
|
56
|
+
<reflective>
|
|
57
|
+
<color sid="reflective">0.000000 0.000000 0.000000 1.000000</color>
|
|
58
|
+
</reflective>
|
|
59
|
+
<reflectivity>
|
|
60
|
+
<float sid="reflectivity">1.000000</float>
|
|
61
|
+
</reflectivity>
|
|
62
|
+
<transparent opaque="RGB_ZERO">
|
|
63
|
+
<color sid="transparent">1.000000 1.000000 1.000000 1.000000</color>
|
|
64
|
+
</transparent>
|
|
65
|
+
<transparency>
|
|
66
|
+
<float sid="transparency">0.000000</float>
|
|
67
|
+
</transparency>
|
|
68
|
+
</phong>
|
|
69
|
+
</technique>
|
|
70
|
+
</profile_COMMON>
|
|
71
|
+
</effect>
|
|
72
|
+
</library_effects>
|
|
73
|
+
<library_geometries>
|
|
74
|
+
<geometry id="drc_l_sh_ry-lib" name="drc_l_sh_ryMesh">
|
|
75
|
+
<mesh>
|
|
76
|
+
<source id="drc_l_sh_ry-POSITION">
|
|
77
|
+
<float_array id="drc_l_sh_ry-POSITION-array" count="366">
|
|
78
|
+
-0.053127 0.066901 0.038054
|
|
79
|
+
-0.053056 0.050532 0.038054
|
|
80
|
+
-0.053056 0.050532 -0.007738
|
|
81
|
+
-0.053127 0.066901 -0.007738
|
|
82
|
+
0.062668 0.066901 0.038054
|
|
83
|
+
0.062668 0.066901 -0.007738
|
|
84
|
+
0.062668 0.050462 -0.007738
|
|
85
|
+
0.062668 0.050462 0.038054
|
|
86
|
+
-0.041547 0.066901 -0.007738
|
|
87
|
+
-0.041547 0.066901 0.038054
|
|
88
|
+
-0.041477 0.050532 -0.007738
|
|
89
|
+
-0.041477 0.050532 0.038054
|
|
90
|
+
0.005342 0.098638 -0.007738
|
|
91
|
+
0.005342 0.098638 0.038054
|
|
92
|
+
-0.041547 0.098638 0.038054
|
|
93
|
+
-0.041547 0.098638 -0.007738
|
|
94
|
+
0.005342 0.050462 -0.007738
|
|
95
|
+
0.005342 0.066901 -0.007738
|
|
96
|
+
0.005342 0.050462 0.038054
|
|
97
|
+
0.005342 0.066901 0.038054
|
|
98
|
+
0.062668 0.080339 0.038054
|
|
99
|
+
0.062668 0.080339 -0.007738
|
|
100
|
+
0.005414 0.080410 0.038054
|
|
101
|
+
-0.041477 0.080411 -0.007738
|
|
102
|
+
-0.041477 0.080410 0.038054
|
|
103
|
+
0.005414 0.080410 -0.007738
|
|
104
|
+
0.025714 0.052391 -0.007839
|
|
105
|
+
0.002268 0.052391 -0.007839
|
|
106
|
+
0.002340 -0.009151 -0.007839
|
|
107
|
+
0.025642 -0.009151 -0.007839
|
|
108
|
+
-0.008167 0.052391 0.002269
|
|
109
|
+
-0.008239 -0.009151 0.002269
|
|
110
|
+
-0.008167 0.052391 0.029663
|
|
111
|
+
-0.008167 -0.009223 0.029663
|
|
112
|
+
-0.000018 0.052391 0.038458
|
|
113
|
+
-0.000090 -0.009151 0.038458
|
|
114
|
+
0.028144 0.052391 0.038458
|
|
115
|
+
0.028144 -0.009223 0.038458
|
|
116
|
+
0.037436 0.052391 0.030472
|
|
117
|
+
0.037436 -0.009223 0.030472
|
|
118
|
+
0.037436 0.052391 0.001360
|
|
119
|
+
0.037364 -0.009151 0.001360
|
|
120
|
+
0.076677 0.021299 -0.004706
|
|
121
|
+
0.076677 0.034736 -0.004706
|
|
122
|
+
-0.050697 0.034736 -0.004706
|
|
123
|
+
-0.050697 0.021299 -0.004706
|
|
124
|
+
0.076677 0.042884 0.003280
|
|
125
|
+
-0.050697 0.042884 0.003280
|
|
126
|
+
0.076677 0.042884 0.028450
|
|
127
|
+
-0.050697 0.042884 0.028450
|
|
128
|
+
0.076677 0.035165 0.036335
|
|
129
|
+
-0.050697 0.035165 0.036335
|
|
130
|
+
0.076677 0.021012 0.036335
|
|
131
|
+
-0.050697 0.021012 0.036335
|
|
132
|
+
0.076677 0.013721 0.029057
|
|
133
|
+
-0.050697 0.013721 0.029057
|
|
134
|
+
0.076749 0.013793 0.002674
|
|
135
|
+
-0.050768 0.013793 0.002674
|
|
136
|
+
-0.041547 0.112790 -0.031999
|
|
137
|
+
-0.041477 0.085558 -0.020778
|
|
138
|
+
0.004413 0.085558 -0.020778
|
|
139
|
+
0.004484 0.112790 -0.031999
|
|
140
|
+
-0.041477 0.074263 0.006515
|
|
141
|
+
0.004413 0.074263 0.006515
|
|
142
|
+
-0.041477 0.085558 0.033707
|
|
143
|
+
0.004413 0.085558 0.033707
|
|
144
|
+
-0.041547 0.112790 0.045028
|
|
145
|
+
0.004484 0.112790 0.045028
|
|
146
|
+
-0.041477 0.140023 0.033707
|
|
147
|
+
0.004413 0.140023 0.033707
|
|
148
|
+
-0.041477 0.151317 0.006515
|
|
149
|
+
0.004413 0.151317 0.006515
|
|
150
|
+
-0.041477 0.140023 -0.020778
|
|
151
|
+
0.004413 0.140023 -0.020778
|
|
152
|
+
0.010989 0.079982 -0.026237
|
|
153
|
+
0.011060 0.112790 -0.039883
|
|
154
|
+
0.010989 0.066401 0.006515
|
|
155
|
+
0.010989 0.079982 0.039267
|
|
156
|
+
0.011060 0.112790 0.052812
|
|
157
|
+
0.010989 0.145599 0.039267
|
|
158
|
+
0.010989 0.159180 0.006515
|
|
159
|
+
0.010989 0.145599 -0.026237
|
|
160
|
+
0.062954 0.080053 -0.026237
|
|
161
|
+
0.062954 0.112790 -0.039883
|
|
162
|
+
0.062954 0.066473 0.006515
|
|
163
|
+
0.062954 0.080053 0.039267
|
|
164
|
+
0.062954 0.112790 0.052812
|
|
165
|
+
0.062954 0.145527 0.039267
|
|
166
|
+
0.062954 0.159108 0.006515
|
|
167
|
+
0.062954 0.145527 -0.026237
|
|
168
|
+
-0.041547 0.112790 -0.017038
|
|
169
|
+
-0.041477 0.096136 -0.010164
|
|
170
|
+
-0.041477 0.089274 0.006515
|
|
171
|
+
-0.041477 0.096136 0.023093
|
|
172
|
+
-0.041547 0.112790 0.029967
|
|
173
|
+
-0.041477 0.129445 0.023093
|
|
174
|
+
-0.041477 0.136306 0.006515
|
|
175
|
+
-0.041477 0.129445 -0.010164
|
|
176
|
+
-0.052984 0.112790 -0.017038
|
|
177
|
+
-0.052984 0.096208 -0.010164
|
|
178
|
+
-0.052984 0.089345 0.006515
|
|
179
|
+
-0.052984 0.096208 0.023093
|
|
180
|
+
-0.052984 0.112790 0.029967
|
|
181
|
+
-0.052984 0.129373 0.023093
|
|
182
|
+
-0.052912 0.136306 0.006515
|
|
183
|
+
-0.052984 0.129373 -0.010164
|
|
184
|
+
0.062954 0.083770 -0.022598
|
|
185
|
+
0.062954 0.112790 -0.034627
|
|
186
|
+
0.062882 0.071691 0.006515
|
|
187
|
+
0.062954 0.083770 0.035526
|
|
188
|
+
0.062954 0.112790 0.047556
|
|
189
|
+
0.062954 0.141810 0.035526
|
|
190
|
+
0.062882 0.153890 0.006515
|
|
191
|
+
0.062954 0.141810 -0.022598
|
|
192
|
+
0.016635 0.083770 -0.022598
|
|
193
|
+
0.016635 0.112790 -0.034627
|
|
194
|
+
0.016707 0.071691 0.006515
|
|
195
|
+
0.016635 0.083770 0.035526
|
|
196
|
+
0.016635 0.112790 0.047556
|
|
197
|
+
0.016707 0.141882 0.035526
|
|
198
|
+
0.016707 0.153890 0.006515
|
|
199
|
+
0.016707 0.141882 -0.022598
|
|
200
|
+
</float_array>
|
|
201
|
+
<technique_common>
|
|
202
|
+
<accessor source="#drc_l_sh_ry-POSITION-array" count="122" stride="3">
|
|
203
|
+
<param name="X" type="float"/>
|
|
204
|
+
<param name="Y" type="float"/>
|
|
205
|
+
<param name="Z" type="float"/>
|
|
206
|
+
</accessor>
|
|
207
|
+
</technique_common>
|
|
208
|
+
</source>
|
|
209
|
+
<source id="drc_l_sh_ry-Normal0">
|
|
210
|
+
<float_array id="drc_l_sh_ry-Normal0-array" count="1998">
|
|
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.000001 1.000000 0.000000
|
|
224
|
+
0.000001 1.000000 0.000000
|
|
225
|
+
0.000001 1.000000 0.000000
|
|
226
|
+
0.000000 1.000000 0.000000
|
|
227
|
+
0.000000 1.000000 0.000000
|
|
228
|
+
0.000000 1.000000 0.000000
|
|
229
|
+
0.000000 -0.000000 -1.000000
|
|
230
|
+
0.000000 -0.000000 -1.000000
|
|
231
|
+
0.000000 -0.000000 -1.000000
|
|
232
|
+
0.000000 -0.000000 -1.000000
|
|
233
|
+
0.000000 -0.000000 -1.000000
|
|
234
|
+
0.000000 -0.000000 -1.000000
|
|
235
|
+
0.000000 -1.000000 0.000000
|
|
236
|
+
0.000000 -1.000000 0.000000
|
|
237
|
+
0.000000 -1.000000 0.000000
|
|
238
|
+
0.000000 -1.000000 0.000000
|
|
239
|
+
0.000000 -1.000000 0.000000
|
|
240
|
+
0.000000 -1.000000 0.000000
|
|
241
|
+
0.000000 0.000000 1.000000
|
|
242
|
+
0.000000 0.000000 1.000000
|
|
243
|
+
0.000000 0.000000 1.000000
|
|
244
|
+
0.000000 0.000000 1.000000
|
|
245
|
+
0.000000 0.000000 1.000000
|
|
246
|
+
0.000000 0.000000 1.000000
|
|
247
|
+
0.000001 1.000000 0.000000
|
|
248
|
+
0.000001 1.000000 0.000000
|
|
249
|
+
0.000001 1.000000 0.000000
|
|
250
|
+
0.000001 1.000000 0.000000
|
|
251
|
+
0.000001 1.000000 0.000000
|
|
252
|
+
0.000001 1.000000 0.000000
|
|
253
|
+
0.000000 0.000000 -1.000000
|
|
254
|
+
0.000000 0.000000 -1.000000
|
|
255
|
+
0.000000 0.000000 -1.000000
|
|
256
|
+
0.000000 -0.000000 -1.000000
|
|
257
|
+
0.000000 -0.000000 -1.000000
|
|
258
|
+
0.000000 -0.000000 -1.000000
|
|
259
|
+
-0.001513 -0.999999 -0.000000
|
|
260
|
+
-0.001513 -0.999999 -0.000000
|
|
261
|
+
-0.001513 -0.999999 -0.000000
|
|
262
|
+
-0.001513 -0.999999 0.000000
|
|
263
|
+
-0.001513 -0.999999 0.000000
|
|
264
|
+
-0.001513 -0.999999 0.000000
|
|
265
|
+
-0.000000 -0.000000 1.000000
|
|
266
|
+
-0.000000 -0.000000 1.000000
|
|
267
|
+
-0.000000 -0.000000 1.000000
|
|
268
|
+
-0.000000 -0.000000 1.000000
|
|
269
|
+
-0.000000 -0.000000 1.000000
|
|
270
|
+
-0.000000 -0.000000 1.000000
|
|
271
|
+
1.000000 -0.000001 0.000000
|
|
272
|
+
1.000000 -0.000001 0.000000
|
|
273
|
+
1.000000 -0.000001 0.000000
|
|
274
|
+
1.000000 -0.000001 0.000000
|
|
275
|
+
1.000000 -0.000001 0.000000
|
|
276
|
+
1.000000 -0.000001 0.000000
|
|
277
|
+
-0.000000 -0.000000 1.000000
|
|
278
|
+
-0.000000 -0.000000 1.000000
|
|
279
|
+
-0.000000 -0.000000 1.000000
|
|
280
|
+
-0.000000 -0.000000 1.000000
|
|
281
|
+
-0.000000 -0.000000 1.000000
|
|
282
|
+
-0.000000 -0.000000 1.000000
|
|
283
|
+
-0.999986 0.005237 -0.000000
|
|
284
|
+
-0.999986 0.005237 -0.000000
|
|
285
|
+
-0.999986 0.005237 -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.000000 -1.000000
|
|
290
|
+
0.000000 -0.000000 -1.000000
|
|
291
|
+
0.000000 -0.000000 -1.000000
|
|
292
|
+
0.000000 0.000000 -1.000000
|
|
293
|
+
0.000000 0.000000 -1.000000
|
|
294
|
+
0.000000 0.000000 -1.000000
|
|
295
|
+
0.001235 0.999999 -0.000001
|
|
296
|
+
0.001235 0.999999 -0.000001
|
|
297
|
+
0.001235 0.999999 -0.000001
|
|
298
|
+
0.001236 0.999999 0.000000
|
|
299
|
+
0.001236 0.999999 0.000000
|
|
300
|
+
0.001236 0.999999 0.000000
|
|
301
|
+
0.000000 -0.000000 -1.000000
|
|
302
|
+
0.000000 -0.000000 -1.000000
|
|
303
|
+
0.000000 -0.000000 -1.000000
|
|
304
|
+
0.000000 0.000000 -1.000000
|
|
305
|
+
0.000000 0.000000 -1.000000
|
|
306
|
+
0.000000 0.000000 -1.000000
|
|
307
|
+
0.000000 -1.000000 -0.000000
|
|
308
|
+
0.000000 -1.000000 -0.000000
|
|
309
|
+
0.000000 -1.000000 -0.000000
|
|
310
|
+
0.000000 -1.000000 0.000000
|
|
311
|
+
0.000000 -1.000000 0.000000
|
|
312
|
+
0.000000 -1.000000 0.000000
|
|
313
|
+
-0.000000 0.000000 1.000000
|
|
314
|
+
-0.000000 0.000000 1.000000
|
|
315
|
+
-0.000000 0.000000 1.000000
|
|
316
|
+
-0.000000 -0.000000 1.000000
|
|
317
|
+
-0.000000 -0.000000 1.000000
|
|
318
|
+
-0.000000 -0.000000 1.000000
|
|
319
|
+
-0.000000 -0.000000 1.000000
|
|
320
|
+
-0.000000 -0.000000 1.000000
|
|
321
|
+
-0.000000 -0.000000 1.000000
|
|
322
|
+
-0.000000 -0.000000 1.000000
|
|
323
|
+
-0.000000 -0.000000 1.000000
|
|
324
|
+
-0.000000 -0.000000 1.000000
|
|
325
|
+
0.000000 -0.000000 -1.000000
|
|
326
|
+
0.000000 -0.000000 -1.000000
|
|
327
|
+
0.000000 -0.000000 -1.000000
|
|
328
|
+
0.000000 -0.000000 -1.000000
|
|
329
|
+
0.000000 -0.000000 -1.000000
|
|
330
|
+
0.000000 -0.000000 -1.000000
|
|
331
|
+
-0.999992 -0.003883 -0.000000
|
|
332
|
+
-0.999992 -0.003883 -0.000000
|
|
333
|
+
-0.999992 -0.003883 -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.000000 -1.000000
|
|
338
|
+
0.000000 0.000000 -1.000000
|
|
339
|
+
0.000000 0.000000 -1.000000
|
|
340
|
+
0.000000 0.000000 -1.000000
|
|
341
|
+
0.000000 0.000000 -1.000000
|
|
342
|
+
0.000000 0.000000 -1.000000
|
|
343
|
+
0.999992 0.003940 0.000000
|
|
344
|
+
0.999992 0.003940 0.000000
|
|
345
|
+
0.999992 0.003940 0.000000
|
|
346
|
+
0.999992 0.003940 0.000000
|
|
347
|
+
0.999992 0.003940 0.000000
|
|
348
|
+
0.999992 0.003940 0.000000
|
|
349
|
+
-0.000000 -0.000000 1.000000
|
|
350
|
+
-0.000000 -0.000000 1.000000
|
|
351
|
+
-0.000000 -0.000000 1.000000
|
|
352
|
+
-0.000000 -0.000000 1.000000
|
|
353
|
+
-0.000000 -0.000000 1.000000
|
|
354
|
+
-0.000000 -0.000000 1.000000
|
|
355
|
+
0.000000 0.000000 -1.000000
|
|
356
|
+
0.000000 0.000000 -1.000000
|
|
357
|
+
0.000000 0.000000 -1.000000
|
|
358
|
+
0.000000 0.000000 -1.000000
|
|
359
|
+
0.000000 0.000000 -1.000000
|
|
360
|
+
0.000000 0.000000 -1.000000
|
|
361
|
+
-0.695782 0.000811 -0.718253
|
|
362
|
+
-0.695782 0.000811 -0.718253
|
|
363
|
+
-0.695782 0.000811 -0.718253
|
|
364
|
+
-0.690862 -0.000806 -0.722986
|
|
365
|
+
-0.690862 -0.000806 -0.722986
|
|
366
|
+
-0.690862 -0.000806 -0.722986
|
|
367
|
+
-1.000000 -0.000000 -0.000000
|
|
368
|
+
-1.000000 -0.000000 -0.000000
|
|
369
|
+
-1.000000 -0.000000 -0.000000
|
|
370
|
+
-0.999996 0.001166 0.002623
|
|
371
|
+
-0.999996 0.001166 0.002623
|
|
372
|
+
-0.999996 0.001166 0.002623
|
|
373
|
+
-0.733531 0.000855 0.679655
|
|
374
|
+
-0.733531 0.000855 0.679655
|
|
375
|
+
-0.733531 0.000855 0.679655
|
|
376
|
+
-0.736519 0.000000 0.676417
|
|
377
|
+
-0.736519 0.000000 0.676417
|
|
378
|
+
-0.736519 0.000000 0.676417
|
|
379
|
+
-0.000000 -0.000000 1.000000
|
|
380
|
+
-0.000000 -0.000000 1.000000
|
|
381
|
+
-0.000000 -0.000000 1.000000
|
|
382
|
+
-0.000000 0.000000 1.000000
|
|
383
|
+
-0.000000 0.000000 1.000000
|
|
384
|
+
-0.000000 0.000000 1.000000
|
|
385
|
+
0.651795 0.000000 0.758395
|
|
386
|
+
0.651795 0.000000 0.758395
|
|
387
|
+
0.651795 0.000000 0.758395
|
|
388
|
+
0.651795 0.000000 0.758395
|
|
389
|
+
0.651795 0.000000 0.758395
|
|
390
|
+
0.651795 0.000000 0.758395
|
|
391
|
+
0.999999 -0.001166 0.000000
|
|
392
|
+
0.999999 -0.001166 0.000000
|
|
393
|
+
0.999999 -0.001166 0.000000
|
|
394
|
+
0.999997 0.000000 -0.002465
|
|
395
|
+
0.999997 0.000000 -0.002465
|
|
396
|
+
0.999997 0.000000 -0.002465
|
|
397
|
+
0.617354 -0.000720 -0.786685
|
|
398
|
+
0.617354 -0.000720 -0.786685
|
|
399
|
+
0.617354 -0.000720 -0.786685
|
|
400
|
+
0.617353 -0.000720 -0.786686
|
|
401
|
+
0.617353 -0.000720 -0.786686
|
|
402
|
+
0.617353 -0.000720 -0.786686
|
|
403
|
+
0.000000 -0.000000 -1.000000
|
|
404
|
+
0.000000 -0.000000 -1.000000
|
|
405
|
+
0.000000 -0.000000 -1.000000
|
|
406
|
+
0.000000 0.000002 -1.000000
|
|
407
|
+
0.000000 0.000002 -1.000000
|
|
408
|
+
0.000000 0.000002 -1.000000
|
|
409
|
+
0.000000 0.699943 -0.714199
|
|
410
|
+
0.000000 0.699943 -0.714199
|
|
411
|
+
0.000000 0.699943 -0.714199
|
|
412
|
+
0.000000 0.699943 -0.714199
|
|
413
|
+
0.000000 0.699943 -0.714199
|
|
414
|
+
0.000000 0.699943 -0.714199
|
|
415
|
+
-0.000000 1.000000 -0.000000
|
|
416
|
+
-0.000000 1.000000 -0.000000
|
|
417
|
+
-0.000000 1.000000 -0.000000
|
|
418
|
+
-0.000000 1.000000 -0.000000
|
|
419
|
+
-0.000000 1.000000 -0.000000
|
|
420
|
+
-0.000000 1.000000 -0.000000
|
|
421
|
+
-0.000000 0.714583 0.699550
|
|
422
|
+
-0.000000 0.714583 0.699550
|
|
423
|
+
-0.000000 0.714583 0.699550
|
|
424
|
+
-0.000000 0.714583 0.699550
|
|
425
|
+
-0.000000 0.714583 0.699550
|
|
426
|
+
-0.000000 0.714583 0.699550
|
|
427
|
+
-0.000000 -0.000001 1.000000
|
|
428
|
+
-0.000000 -0.000001 1.000000
|
|
429
|
+
-0.000000 -0.000001 1.000000
|
|
430
|
+
-0.000000 -0.000000 1.000000
|
|
431
|
+
-0.000000 -0.000000 1.000000
|
|
432
|
+
-0.000000 -0.000000 1.000000
|
|
433
|
+
-0.000000 -0.706467 0.707746
|
|
434
|
+
-0.000000 -0.706467 0.707746
|
|
435
|
+
-0.000000 -0.706467 0.707746
|
|
436
|
+
-0.000000 -0.706469 0.707744
|
|
437
|
+
-0.000000 -0.706469 0.707744
|
|
438
|
+
-0.000000 -0.706469 0.707744
|
|
439
|
+
0.000000 -0.999996 -0.002722
|
|
440
|
+
0.000000 -0.999996 -0.002722
|
|
441
|
+
0.000000 -0.999996 -0.002722
|
|
442
|
+
-0.000000 -0.999996 -0.002721
|
|
443
|
+
-0.000000 -0.999996 -0.002721
|
|
444
|
+
-0.000000 -0.999996 -0.002721
|
|
445
|
+
0.000000 -0.701083 -0.713080
|
|
446
|
+
0.000000 -0.701083 -0.713080
|
|
447
|
+
0.000000 -0.701083 -0.713080
|
|
448
|
+
0.000000 -0.701084 -0.713079
|
|
449
|
+
0.000000 -0.701084 -0.713079
|
|
450
|
+
0.000000 -0.701084 -0.713079
|
|
451
|
+
0.000000 1.000000 -0.000000
|
|
452
|
+
0.000000 1.000000 -0.000000
|
|
453
|
+
0.000000 1.000000 -0.000000
|
|
454
|
+
-0.000000 1.000000 -0.000000
|
|
455
|
+
-0.000000 1.000000 -0.000000
|
|
456
|
+
-0.000000 1.000000 -0.000000
|
|
457
|
+
-0.000000 1.000000 0.000000
|
|
458
|
+
-0.000000 1.000000 0.000000
|
|
459
|
+
-0.000000 1.000000 0.000000
|
|
460
|
+
0.000000 1.000000 0.000000
|
|
461
|
+
0.000000 1.000000 0.000000
|
|
462
|
+
0.000000 1.000000 0.000000
|
|
463
|
+
0.000000 1.000000 0.000000
|
|
464
|
+
0.000000 1.000000 0.000000
|
|
465
|
+
0.000000 1.000000 0.000000
|
|
466
|
+
0.000000 1.000000 -0.000000
|
|
467
|
+
0.000000 1.000000 -0.000000
|
|
468
|
+
0.000000 1.000000 -0.000000
|
|
469
|
+
0.999921 0.012274 0.002755
|
|
470
|
+
0.999921 0.012274 0.002755
|
|
471
|
+
0.999921 0.012274 0.002755
|
|
472
|
+
1.000000 -0.000000 0.000000
|
|
473
|
+
1.000000 -0.000000 0.000000
|
|
474
|
+
1.000000 -0.000000 0.000000
|
|
475
|
+
1.000000 0.000000 0.000000
|
|
476
|
+
1.000000 0.000000 0.000000
|
|
477
|
+
1.000000 0.000000 0.000000
|
|
478
|
+
1.000000 -0.000002 0.000000
|
|
479
|
+
1.000000 -0.000002 0.000000
|
|
480
|
+
1.000000 -0.000002 0.000000
|
|
481
|
+
1.000000 -0.000001 0.000000
|
|
482
|
+
1.000000 -0.000001 0.000000
|
|
483
|
+
1.000000 -0.000001 0.000000
|
|
484
|
+
1.000000 -0.000000 -0.000002
|
|
485
|
+
1.000000 -0.000000 -0.000002
|
|
486
|
+
1.000000 -0.000000 -0.000002
|
|
487
|
+
-1.000000 -0.000001 0.000000
|
|
488
|
+
-1.000000 -0.000001 0.000000
|
|
489
|
+
-1.000000 -0.000001 0.000000
|
|
490
|
+
-1.000000 -0.000000 -0.000000
|
|
491
|
+
-1.000000 -0.000000 -0.000000
|
|
492
|
+
-1.000000 -0.000000 -0.000000
|
|
493
|
+
-1.000000 0.000000 0.000000
|
|
494
|
+
-1.000000 0.000000 0.000000
|
|
495
|
+
-1.000000 0.000000 0.000000
|
|
496
|
+
-1.000000 -0.000000 0.000000
|
|
497
|
+
-1.000000 -0.000000 0.000000
|
|
498
|
+
-1.000000 -0.000000 0.000000
|
|
499
|
+
-1.000000 0.000000 0.000000
|
|
500
|
+
-1.000000 0.000000 0.000000
|
|
501
|
+
-1.000000 0.000000 0.000000
|
|
502
|
+
-0.999921 0.012271 0.002754
|
|
503
|
+
-0.999921 0.012271 0.002754
|
|
504
|
+
-0.999921 0.012271 0.002754
|
|
505
|
+
0.000000 -0.380958 -0.924592
|
|
506
|
+
0.000000 -0.380958 -0.924592
|
|
507
|
+
0.000000 -0.380958 -0.924592
|
|
508
|
+
0.000001 -0.380957 -0.924593
|
|
509
|
+
0.000001 -0.380957 -0.924593
|
|
510
|
+
0.000001 -0.380957 -0.924593
|
|
511
|
+
0.000000 -0.924010 -0.382369
|
|
512
|
+
0.000000 -0.924010 -0.382369
|
|
513
|
+
0.000000 -0.924010 -0.382369
|
|
514
|
+
0.000000 -0.924010 -0.382369
|
|
515
|
+
0.000000 -0.924010 -0.382369
|
|
516
|
+
0.000000 -0.924010 -0.382369
|
|
517
|
+
-0.000000 -0.923507 0.383582
|
|
518
|
+
-0.000000 -0.923507 0.383582
|
|
519
|
+
-0.000000 -0.923507 0.383582
|
|
520
|
+
-0.000000 -0.923507 0.383582
|
|
521
|
+
-0.000000 -0.923507 0.383582
|
|
522
|
+
-0.000000 -0.923507 0.383582
|
|
523
|
+
-0.000000 -0.383885 0.923381
|
|
524
|
+
-0.000000 -0.383885 0.923381
|
|
525
|
+
-0.000000 -0.383885 0.923381
|
|
526
|
+
-0.000000 -0.383885 0.923381
|
|
527
|
+
-0.000000 -0.383885 0.923381
|
|
528
|
+
-0.000000 -0.383885 0.923381
|
|
529
|
+
-0.000000 0.383871 0.923387
|
|
530
|
+
-0.000000 0.383871 0.923387
|
|
531
|
+
-0.000000 0.383871 0.923387
|
|
532
|
+
-0.000000 0.383872 0.923386
|
|
533
|
+
-0.000000 0.383872 0.923386
|
|
534
|
+
-0.000000 0.383872 0.923386
|
|
535
|
+
0.000000 0.923519 0.383554
|
|
536
|
+
0.000000 0.923519 0.383554
|
|
537
|
+
0.000000 0.923519 0.383554
|
|
538
|
+
-0.000000 0.923519 0.383553
|
|
539
|
+
-0.000000 0.923519 0.383553
|
|
540
|
+
-0.000000 0.923519 0.383553
|
|
541
|
+
0.000000 0.924021 -0.382342
|
|
542
|
+
0.000000 0.924021 -0.382342
|
|
543
|
+
0.000000 0.924021 -0.382342
|
|
544
|
+
0.000001 0.924022 -0.382340
|
|
545
|
+
0.000001 0.924022 -0.382340
|
|
546
|
+
0.000001 0.924022 -0.382340
|
|
547
|
+
0.000001 0.380945 -0.924598
|
|
548
|
+
0.000001 0.380945 -0.924598
|
|
549
|
+
0.000001 0.380945 -0.924598
|
|
550
|
+
0.000000 0.380944 -0.924598
|
|
551
|
+
0.000000 0.380944 -0.924598
|
|
552
|
+
0.000000 0.380944 -0.924598
|
|
553
|
+
-0.736672 -0.255984 -0.625929
|
|
554
|
+
-0.736672 -0.255984 -0.625929
|
|
555
|
+
-0.736672 -0.255984 -0.625929
|
|
556
|
+
-0.742356 -0.255929 -0.619199
|
|
557
|
+
-0.742356 -0.255930 -0.619199
|
|
558
|
+
-0.742356 -0.255930 -0.619199
|
|
559
|
+
-0.741408 -0.620061 -0.256591
|
|
560
|
+
-0.741408 -0.620061 -0.256591
|
|
561
|
+
-0.741408 -0.620061 -0.256591
|
|
562
|
+
-0.740326 -0.620978 -0.257495
|
|
563
|
+
-0.740326 -0.620978 -0.257495
|
|
564
|
+
-0.740326 -0.620978 -0.257495
|
|
565
|
+
-0.742188 -0.618927 0.257073
|
|
566
|
+
-0.742188 -0.618927 0.257073
|
|
567
|
+
-0.742188 -0.618927 0.257073
|
|
568
|
+
-0.741308 -0.619977 0.257080
|
|
569
|
+
-0.741308 -0.619977 0.257080
|
|
570
|
+
-0.741308 -0.619977 0.257080
|
|
571
|
+
-0.738118 -0.257359 0.623657
|
|
572
|
+
-0.738118 -0.257359 0.623657
|
|
573
|
+
-0.738118 -0.257359 0.623657
|
|
574
|
+
-0.741179 -0.254799 0.621072
|
|
575
|
+
-0.741179 -0.254799 0.621072
|
|
576
|
+
-0.741179 -0.254799 0.621072
|
|
577
|
+
-0.741458 0.255933 0.620272
|
|
578
|
+
-0.741459 0.255933 0.620272
|
|
579
|
+
-0.741458 0.255933 0.620272
|
|
580
|
+
-0.738401 0.255963 0.623896
|
|
581
|
+
-0.738401 0.255963 0.623896
|
|
582
|
+
-0.738401 0.255963 0.623896
|
|
583
|
+
-0.741269 0.619874 0.257444
|
|
584
|
+
-0.741269 0.619874 0.257444
|
|
585
|
+
-0.741269 0.619874 0.257444
|
|
586
|
+
-0.742102 0.619166 0.256744
|
|
587
|
+
-0.742102 0.619166 0.256744
|
|
588
|
+
-0.742102 0.619166 0.256744
|
|
589
|
+
-0.740220 0.621279 -0.257072
|
|
590
|
+
-0.740220 0.621279 -0.257072
|
|
591
|
+
-0.740220 0.621279 -0.257072
|
|
592
|
+
-0.741346 0.619938 -0.257064
|
|
593
|
+
-0.741346 0.619939 -0.257064
|
|
594
|
+
-0.741346 0.619939 -0.257064
|
|
595
|
+
-0.742875 0.253363 -0.619632
|
|
596
|
+
-0.742875 0.253364 -0.619632
|
|
597
|
+
-0.742875 0.253363 -0.619632
|
|
598
|
+
-0.737212 0.258105 -0.624420
|
|
599
|
+
-0.737212 0.258105 -0.624420
|
|
600
|
+
-0.737212 0.258105 -0.624420
|
|
601
|
+
0.000531 -0.384050 -0.923312
|
|
602
|
+
0.000531 -0.384050 -0.923312
|
|
603
|
+
0.000531 -0.384050 -0.923312
|
|
604
|
+
0.000000 -0.384767 -0.923014
|
|
605
|
+
0.000000 -0.384767 -0.923014
|
|
606
|
+
0.000000 -0.384767 -0.923014
|
|
607
|
+
0.001276 -0.923733 -0.383035
|
|
608
|
+
0.001276 -0.923733 -0.383035
|
|
609
|
+
0.001276 -0.923733 -0.383035
|
|
610
|
+
0.001276 -0.923733 -0.383036
|
|
611
|
+
0.001276 -0.923733 -0.383036
|
|
612
|
+
0.001276 -0.923733 -0.383036
|
|
613
|
+
0.001277 -0.923733 0.383036
|
|
614
|
+
0.001277 -0.923733 0.383036
|
|
615
|
+
0.001277 -0.923733 0.383036
|
|
616
|
+
0.001276 -0.923732 0.383037
|
|
617
|
+
0.001276 -0.923732 0.383037
|
|
618
|
+
0.001276 -0.923732 0.383037
|
|
619
|
+
-0.000000 -0.381621 0.924319
|
|
620
|
+
-0.000000 -0.381621 0.924319
|
|
621
|
+
-0.000000 -0.381621 0.924319
|
|
622
|
+
0.000528 -0.382337 0.924023
|
|
623
|
+
0.000528 -0.382337 0.924023
|
|
624
|
+
0.000528 -0.382337 0.924023
|
|
625
|
+
0.000527 0.381612 0.924322
|
|
626
|
+
0.000527 0.381612 0.924322
|
|
627
|
+
0.000527 0.381612 0.924322
|
|
628
|
+
-0.000000 0.382326 0.924027
|
|
629
|
+
-0.000000 0.382326 0.924028
|
|
630
|
+
-0.000000 0.382326 0.924027
|
|
631
|
+
0.001276 0.923733 0.383036
|
|
632
|
+
0.001276 0.923733 0.383036
|
|
633
|
+
0.001276 0.923733 0.383036
|
|
634
|
+
0.001276 0.923732 0.383036
|
|
635
|
+
0.001276 0.923732 0.383036
|
|
636
|
+
0.001276 0.923732 0.383036
|
|
637
|
+
0.001277 0.923733 -0.383035
|
|
638
|
+
0.001277 0.923733 -0.383035
|
|
639
|
+
0.001277 0.923733 -0.383035
|
|
640
|
+
0.001276 0.923733 -0.383036
|
|
641
|
+
0.001276 0.923733 -0.383036
|
|
642
|
+
0.001276 0.923733 -0.383036
|
|
643
|
+
0.000000 0.384039 -0.923317
|
|
644
|
+
0.000000 0.384039 -0.923317
|
|
645
|
+
0.000000 0.384039 -0.923317
|
|
646
|
+
0.000532 0.384757 -0.923018
|
|
647
|
+
0.000532 0.384757 -0.923018
|
|
648
|
+
0.000532 0.384757 -0.923018
|
|
649
|
+
-0.999991 -0.004248 -0.000000
|
|
650
|
+
-0.999991 -0.004248 -0.000000
|
|
651
|
+
-0.999991 -0.004248 -0.000000
|
|
652
|
+
-0.999997 -0.001842 0.001835
|
|
653
|
+
-0.999997 -0.001842 0.001835
|
|
654
|
+
-0.999997 -0.001842 0.001835
|
|
655
|
+
-1.000000 -0.000001 0.000000
|
|
656
|
+
-1.000000 -0.000001 0.000000
|
|
657
|
+
-1.000000 -0.000001 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.999991 -0.003011 -0.003000
|
|
668
|
+
-0.999991 -0.003011 -0.003000
|
|
669
|
+
-0.999991 -0.003011 -0.003000
|
|
670
|
+
-0.999997 -0.002598 -0.000000
|
|
671
|
+
-0.999997 -0.002598 -0.000000
|
|
672
|
+
-0.999997 -0.002598 -0.000000
|
|
673
|
+
-0.999991 0.004249 -0.000000
|
|
674
|
+
-0.999991 0.004249 -0.000000
|
|
675
|
+
-0.999991 0.004249 -0.000000
|
|
676
|
+
-0.999997 0.001837 -0.001831
|
|
677
|
+
-0.999997 0.001837 -0.001831
|
|
678
|
+
-0.999997 0.001837 -0.001831
|
|
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.999991 0.003010 0.003000
|
|
692
|
+
-0.999991 0.003010 0.003000
|
|
693
|
+
-0.999991 0.003010 0.003000
|
|
694
|
+
-0.999997 0.002598 0.000000
|
|
695
|
+
-0.999997 0.002598 0.000000
|
|
696
|
+
-0.999997 0.002598 0.000000
|
|
697
|
+
0.000000 -0.382936 -0.923775
|
|
698
|
+
0.000000 -0.382936 -0.923775
|
|
699
|
+
0.000000 -0.382936 -0.923775
|
|
700
|
+
-0.002379 -0.381534 -0.924352
|
|
701
|
+
-0.002379 -0.381534 -0.924352
|
|
702
|
+
-0.002379 -0.381534 -0.924352
|
|
703
|
+
-0.005768 -0.924762 -0.380501
|
|
704
|
+
-0.005768 -0.924762 -0.380501
|
|
705
|
+
-0.005768 -0.924763 -0.380501
|
|
706
|
+
-0.005681 -0.924784 -0.380450
|
|
707
|
+
-0.005681 -0.924784 -0.380450
|
|
708
|
+
-0.005681 -0.924784 -0.380450
|
|
709
|
+
-0.005677 -0.923945 0.382482
|
|
710
|
+
-0.005677 -0.923945 0.382482
|
|
711
|
+
-0.005677 -0.923945 0.382482
|
|
712
|
+
-0.005763 -0.923966 0.382431
|
|
713
|
+
-0.005763 -0.923966 0.382431
|
|
714
|
+
-0.005763 -0.923966 0.382431
|
|
715
|
+
-0.002388 -0.382936 0.923772
|
|
716
|
+
-0.002388 -0.382936 0.923772
|
|
717
|
+
-0.002388 -0.382936 0.923772
|
|
718
|
+
-0.000000 -0.381527 0.924358
|
|
719
|
+
-0.000000 -0.381527 0.924358
|
|
720
|
+
-0.000000 -0.381527 0.924358
|
|
721
|
+
-0.000000 0.382915 0.923784
|
|
722
|
+
-0.000000 0.382915 0.923784
|
|
723
|
+
-0.000000 0.382915 0.923784
|
|
724
|
+
-0.002379 0.381513 0.924360
|
|
725
|
+
-0.002379 0.381513 0.924360
|
|
726
|
+
-0.002379 0.381513 0.924360
|
|
727
|
+
-0.005753 0.922557 0.385818
|
|
728
|
+
-0.005753 0.922557 0.385818
|
|
729
|
+
-0.005753 0.922557 0.385818
|
|
730
|
+
-0.000000 0.923981 0.382439
|
|
731
|
+
-0.000000 0.923981 0.382439
|
|
732
|
+
-0.000000 0.923981 0.382439
|
|
733
|
+
0.000000 0.923394 -0.383853
|
|
734
|
+
0.000000 0.923394 -0.383853
|
|
735
|
+
0.000000 0.923394 -0.383853
|
|
736
|
+
-0.005767 0.924783 -0.380451
|
|
737
|
+
-0.005767 0.924783 -0.380451
|
|
738
|
+
-0.005767 0.924783 -0.380451
|
|
739
|
+
-0.002388 0.382913 -0.923781
|
|
740
|
+
-0.002388 0.382913 -0.923781
|
|
741
|
+
-0.002388 0.382913 -0.923781
|
|
742
|
+
0.000000 0.381505 -0.924367
|
|
743
|
+
0.000000 0.381505 -0.924367
|
|
744
|
+
0.000000 0.381505 -0.924367
|
|
745
|
+
-0.999984 -0.002156 0.005200
|
|
746
|
+
-0.999984 -0.002156 0.005200
|
|
747
|
+
-0.999984 -0.002156 0.005200
|
|
748
|
+
-0.999995 0.003052 -0.000000
|
|
749
|
+
-0.999995 0.003052 -0.000000
|
|
750
|
+
-0.999995 0.003052 -0.000000
|
|
751
|
+
-0.999984 -0.002171 -0.005238
|
|
752
|
+
-0.999984 -0.002171 -0.005238
|
|
753
|
+
-0.999984 -0.002171 -0.005238
|
|
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.000001 0.000000
|
|
761
|
+
-1.000000 0.000001 0.000000
|
|
762
|
+
-1.000000 0.000001 0.000000
|
|
763
|
+
1.000000 0.000001 0.000001
|
|
764
|
+
1.000000 0.000001 0.000001
|
|
765
|
+
1.000000 0.000001 0.000001
|
|
766
|
+
1.000000 0.000000 0.000000
|
|
767
|
+
1.000000 0.000000 0.000000
|
|
768
|
+
1.000000 0.000000 0.000000
|
|
769
|
+
0.999872 0.013748 0.008169
|
|
770
|
+
0.999872 0.013748 0.008169
|
|
771
|
+
0.999872 0.013748 0.008169
|
|
772
|
+
1.000000 0.000001 0.000001
|
|
773
|
+
1.000000 0.000001 0.000001
|
|
774
|
+
1.000000 0.000001 0.000001
|
|
775
|
+
0.999997 -0.001754 -0.001743
|
|
776
|
+
0.999997 -0.001754 -0.001743
|
|
777
|
+
0.999997 -0.001754 -0.001743
|
|
778
|
+
0.999889 0.013749 -0.005701
|
|
779
|
+
0.999889 0.013749 -0.005701
|
|
780
|
+
0.999889 0.013749 -0.005701
|
|
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.000000 0.000000
|
|
791
|
+
1.000000 0.000000 0.000000
|
|
792
|
+
1.000000 0.000000 0.000000
|
|
793
|
+
0.999872 -0.013751 -0.008199
|
|
794
|
+
0.999872 -0.013751 -0.008199
|
|
795
|
+
0.999872 -0.013751 -0.008199
|
|
796
|
+
1.000000 -0.000000 0.000000
|
|
797
|
+
1.000000 -0.000000 0.000000
|
|
798
|
+
1.000000 -0.000000 0.000000
|
|
799
|
+
0.999997 0.001715 0.001754
|
|
800
|
+
0.999997 0.001715 0.001754
|
|
801
|
+
0.999997 0.001715 0.001754
|
|
802
|
+
0.999889 -0.013752 0.005702
|
|
803
|
+
0.999889 -0.013752 0.005702
|
|
804
|
+
0.999889 -0.013752 0.005702
|
|
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.000001 0.000001
|
|
809
|
+
1.000000 -0.000001 0.000001
|
|
810
|
+
1.000000 -0.000001 0.000001
|
|
811
|
+
0.000000 0.382924 0.923780
|
|
812
|
+
0.000000 0.382923 0.923780
|
|
813
|
+
0.000000 0.382923 0.923780
|
|
814
|
+
0.000001 0.382924 0.923780
|
|
815
|
+
0.000001 0.382924 0.923780
|
|
816
|
+
0.000001 0.382924 0.923780
|
|
817
|
+
-0.000000 0.923645 0.383250
|
|
818
|
+
-0.000000 0.923645 0.383250
|
|
819
|
+
-0.000000 0.923645 0.383250
|
|
820
|
+
0.000000 0.923645 0.383249
|
|
821
|
+
0.000000 0.923645 0.383249
|
|
822
|
+
0.000000 0.923645 0.383249
|
|
823
|
+
0.000000 0.923171 -0.384389
|
|
824
|
+
0.000000 0.923171 -0.384389
|
|
825
|
+
0.000000 0.923171 -0.384389
|
|
826
|
+
-0.000000 0.923171 -0.384389
|
|
827
|
+
-0.000000 0.923171 -0.384389
|
|
828
|
+
-0.000000 0.923171 -0.384389
|
|
829
|
+
0.000000 0.382925 -0.923779
|
|
830
|
+
0.000000 0.382925 -0.923779
|
|
831
|
+
0.000000 0.382925 -0.923779
|
|
832
|
+
0.000000 0.382925 -0.923779
|
|
833
|
+
0.000000 0.382925 -0.923779
|
|
834
|
+
0.000000 0.382925 -0.923779
|
|
835
|
+
-0.000593 -0.382106 -0.924119
|
|
836
|
+
-0.000593 -0.382106 -0.924118
|
|
837
|
+
-0.000593 -0.382106 -0.924119
|
|
838
|
+
0.000000 -0.382913 -0.923784
|
|
839
|
+
0.000000 -0.382913 -0.923784
|
|
840
|
+
0.000000 -0.382913 -0.923784
|
|
841
|
+
0.000000 -0.923981 -0.382438
|
|
842
|
+
0.000000 -0.923981 -0.382438
|
|
843
|
+
0.000000 -0.923981 -0.382438
|
|
844
|
+
-0.001433 -0.923172 -0.384384
|
|
845
|
+
-0.001433 -0.923172 -0.384384
|
|
846
|
+
-0.001433 -0.923172 -0.384384
|
|
847
|
+
-0.001435 -0.924449 0.381303
|
|
848
|
+
-0.001435 -0.924449 0.381303
|
|
849
|
+
-0.001435 -0.924449 0.381303
|
|
850
|
+
-0.000000 -0.923645 0.383249
|
|
851
|
+
-0.000000 -0.923645 0.383249
|
|
852
|
+
-0.000000 -0.923645 0.383249
|
|
853
|
+
0.000001 -0.382105 0.924119
|
|
854
|
+
0.000001 -0.382105 0.924119
|
|
855
|
+
0.000001 -0.382105 0.924119
|
|
856
|
+
-0.000595 -0.382913 0.923784
|
|
857
|
+
-0.000595 -0.382913 0.923784
|
|
858
|
+
-0.000595 -0.382913 0.923784
|
|
859
|
+
0.999982 0.005941 0.000000
|
|
860
|
+
0.999982 0.005941 0.000000
|
|
861
|
+
0.999982 0.005941 0.000000
|
|
862
|
+
0.999999 -0.001235 0.000000
|
|
863
|
+
0.999999 -0.001235 0.000000
|
|
864
|
+
0.999999 -0.001235 0.000000
|
|
865
|
+
0.999995 -0.001235 0.002979
|
|
866
|
+
0.999995 -0.001235 0.002979
|
|
867
|
+
0.999995 -0.001235 0.002979
|
|
868
|
+
1.000000 0.000000 0.000000
|
|
869
|
+
1.000000 0.000000 0.000000
|
|
870
|
+
1.000000 0.000000 0.000000
|
|
871
|
+
0.999999 -0.001235 0.000000
|
|
872
|
+
0.999999 -0.001235 0.000000
|
|
873
|
+
0.999999 -0.001235 0.000000
|
|
874
|
+
0.999995 -0.001235 -0.002978
|
|
875
|
+
0.999995 -0.001235 -0.002978
|
|
876
|
+
0.999995 -0.001235 -0.002978
|
|
877
|
+
</float_array>
|
|
878
|
+
<technique_common>
|
|
879
|
+
<accessor source="#drc_l_sh_ry-Normal0-array" count="666" stride="3">
|
|
880
|
+
<param name="X" type="float"/>
|
|
881
|
+
<param name="Y" type="float"/>
|
|
882
|
+
<param name="Z" type="float"/>
|
|
883
|
+
</accessor>
|
|
884
|
+
</technique_common>
|
|
885
|
+
</source>
|
|
886
|
+
<source id="drc_l_sh_ry-UV0">
|
|
887
|
+
<float_array id="drc_l_sh_ry-UV0-array" count="496">
|
|
888
|
+
0.729686 0.626542
|
|
889
|
+
0.735422 0.585531
|
|
890
|
+
0.708022 0.558482
|
|
891
|
+
0.722757 0.574617
|
|
892
|
+
0.719787 0.575813
|
|
893
|
+
0.706730 0.561498
|
|
894
|
+
0.686627 0.557887
|
|
895
|
+
0.687759 0.560982
|
|
896
|
+
0.722199 0.596871
|
|
897
|
+
0.719319 0.595538
|
|
898
|
+
0.671080 0.573200
|
|
899
|
+
0.673960 0.574533
|
|
900
|
+
0.706653 0.612185
|
|
901
|
+
0.705496 0.609148
|
|
902
|
+
0.670523 0.595455
|
|
903
|
+
0.673468 0.594318
|
|
904
|
+
0.685232 0.611648
|
|
905
|
+
0.686524 0.608632
|
|
906
|
+
0.734669 0.537249
|
|
907
|
+
0.741067 0.543995
|
|
908
|
+
0.741003 0.553463
|
|
909
|
+
0.734497 0.560163
|
|
910
|
+
0.725384 0.560099
|
|
911
|
+
0.718985 0.553352
|
|
912
|
+
0.719036 0.543819
|
|
913
|
+
0.725555 0.537185
|
|
914
|
+
0.509840 0.495844
|
|
915
|
+
0.498957 0.495759
|
|
916
|
+
0.498982 0.488578
|
|
917
|
+
0.509827 0.488619
|
|
918
|
+
0.520677 0.495854
|
|
919
|
+
0.520686 0.488674
|
|
920
|
+
0.531569 0.495873
|
|
921
|
+
0.531601 0.488647
|
|
922
|
+
0.542448 0.495823
|
|
923
|
+
0.542451 0.488642
|
|
924
|
+
0.553329 0.495880
|
|
925
|
+
0.553298 0.488654
|
|
926
|
+
0.564222 0.495862
|
|
927
|
+
0.564197 0.488636
|
|
928
|
+
0.575059 0.495799
|
|
929
|
+
0.575038 0.488573
|
|
930
|
+
0.585883 0.488480
|
|
931
|
+
0.585941 0.495661
|
|
932
|
+
0.688140 0.562900
|
|
933
|
+
0.705952 0.563360
|
|
934
|
+
0.702251 0.571999
|
|
935
|
+
0.691371 0.571689
|
|
936
|
+
0.675226 0.575612
|
|
937
|
+
0.683509 0.579446
|
|
938
|
+
0.718200 0.576809
|
|
939
|
+
0.709753 0.580195
|
|
940
|
+
0.674752 0.594152
|
|
941
|
+
0.683198 0.590765
|
|
942
|
+
0.717751 0.595290
|
|
943
|
+
0.709467 0.591456
|
|
944
|
+
0.687026 0.607542
|
|
945
|
+
0.690701 0.598961
|
|
946
|
+
0.704812 0.608061
|
|
947
|
+
0.701581 0.599271
|
|
948
|
+
0.438360 0.642395
|
|
949
|
+
0.420543 0.642278
|
|
950
|
+
0.420786 0.613377
|
|
951
|
+
0.438602 0.613582
|
|
952
|
+
0.456147 0.642556
|
|
953
|
+
0.456389 0.613744
|
|
954
|
+
0.473991 0.642718
|
|
955
|
+
0.474234 0.613905
|
|
956
|
+
0.491784 0.642924
|
|
957
|
+
0.492027 0.614023
|
|
958
|
+
0.509578 0.643040
|
|
959
|
+
0.509821 0.614228
|
|
960
|
+
0.527421 0.643203
|
|
961
|
+
0.527665 0.614391
|
|
962
|
+
0.545209 0.643366
|
|
963
|
+
0.545452 0.614553
|
|
964
|
+
0.563025 0.643572
|
|
965
|
+
0.563268 0.614671
|
|
966
|
+
0.630013 0.555950
|
|
967
|
+
0.652459 0.554954
|
|
968
|
+
0.650380 0.560882
|
|
969
|
+
0.632597 0.561707
|
|
970
|
+
0.669023 0.570728
|
|
971
|
+
0.663481 0.573406
|
|
972
|
+
0.614835 0.573132
|
|
973
|
+
0.620573 0.575306
|
|
974
|
+
0.670003 0.594031
|
|
975
|
+
0.664265 0.591858
|
|
976
|
+
0.615809 0.596439
|
|
977
|
+
0.621337 0.593814
|
|
978
|
+
0.654827 0.611219
|
|
979
|
+
0.652221 0.605513
|
|
980
|
+
0.632363 0.612258
|
|
981
|
+
0.634459 0.606282
|
|
982
|
+
0.569178 0.577982
|
|
983
|
+
0.590582 0.577933
|
|
984
|
+
0.590651 0.610516
|
|
985
|
+
0.569208 0.610609
|
|
986
|
+
0.547757 0.578015
|
|
987
|
+
0.547789 0.610643
|
|
988
|
+
0.526336 0.578028
|
|
989
|
+
0.526371 0.610656
|
|
990
|
+
0.504908 0.578026
|
|
991
|
+
0.504905 0.610608
|
|
992
|
+
0.483479 0.578025
|
|
993
|
+
0.483440 0.610653
|
|
994
|
+
0.462056 0.578012
|
|
995
|
+
0.462024 0.610640
|
|
996
|
+
0.440634 0.577979
|
|
997
|
+
0.440606 0.610607
|
|
998
|
+
0.419230 0.577932
|
|
999
|
+
0.419164 0.610516
|
|
1000
|
+
0.622223 0.575775
|
|
1001
|
+
0.633953 0.563089
|
|
1002
|
+
0.650829 0.562783
|
|
1003
|
+
0.662990 0.574938
|
|
1004
|
+
0.663326 0.592508
|
|
1005
|
+
0.651630 0.605135
|
|
1006
|
+
0.634719 0.605501
|
|
1007
|
+
0.622543 0.593307
|
|
1008
|
+
0.565306 0.643400
|
|
1009
|
+
0.565333 0.614317
|
|
1010
|
+
0.584312 0.614336
|
|
1011
|
+
0.584325 0.643373
|
|
1012
|
+
0.603298 0.614384
|
|
1013
|
+
0.603292 0.643376
|
|
1014
|
+
0.622341 0.614344
|
|
1015
|
+
0.622316 0.643381
|
|
1016
|
+
0.641321 0.614333
|
|
1017
|
+
0.641334 0.643416
|
|
1018
|
+
0.660300 0.614324
|
|
1019
|
+
0.660311 0.643407
|
|
1020
|
+
0.679343 0.614362
|
|
1021
|
+
0.679352 0.643354
|
|
1022
|
+
0.698329 0.614312
|
|
1023
|
+
0.698336 0.643394
|
|
1024
|
+
0.717307 0.614307
|
|
1025
|
+
0.717314 0.643390
|
|
1026
|
+
0.734991 0.603593
|
|
1027
|
+
0.729985 0.603438
|
|
1028
|
+
0.731011 0.563315
|
|
1029
|
+
0.735989 0.563448
|
|
1030
|
+
0.730417 0.585372
|
|
1031
|
+
0.741519 0.585694
|
|
1032
|
+
0.741057 0.603724
|
|
1033
|
+
0.723228 0.603288
|
|
1034
|
+
0.723657 0.585222
|
|
1035
|
+
0.742078 0.563621
|
|
1036
|
+
0.740945 0.608182
|
|
1037
|
+
0.734879 0.608054
|
|
1038
|
+
0.722602 0.642004
|
|
1039
|
+
0.722945 0.626436
|
|
1040
|
+
0.729310 0.642133
|
|
1041
|
+
0.729219 0.645985
|
|
1042
|
+
0.722506 0.645852
|
|
1043
|
+
0.723369 0.607382
|
|
1044
|
+
0.730107 0.607483
|
|
1045
|
+
0.734845 0.642196
|
|
1046
|
+
0.735618 0.607565
|
|
1047
|
+
0.735225 0.626603
|
|
1048
|
+
0.742699 0.626750
|
|
1049
|
+
0.742316 0.642341
|
|
1050
|
+
0.422141 0.573735
|
|
1051
|
+
0.415145 0.573689
|
|
1052
|
+
0.415319 0.544938
|
|
1053
|
+
0.422312 0.544984
|
|
1054
|
+
0.450592 0.545163
|
|
1055
|
+
0.450429 0.573914
|
|
1056
|
+
0.485216 0.545365
|
|
1057
|
+
0.485067 0.574117
|
|
1058
|
+
0.495138 0.545417
|
|
1059
|
+
0.495007 0.574168
|
|
1060
|
+
0.503133 0.574205
|
|
1061
|
+
0.503248 0.545454
|
|
1062
|
+
0.537727 0.574344
|
|
1063
|
+
0.537829 0.545593
|
|
1064
|
+
0.548746 0.574383
|
|
1065
|
+
0.548832 0.545631
|
|
1066
|
+
0.577078 0.574467
|
|
1067
|
+
0.577153 0.545715
|
|
1068
|
+
0.588159 0.545744
|
|
1069
|
+
0.588094 0.574495
|
|
1070
|
+
0.596317 0.545762
|
|
1071
|
+
0.596259 0.574514
|
|
1072
|
+
0.603308 0.545776
|
|
1073
|
+
0.603258 0.574527
|
|
1074
|
+
0.613149 0.574545
|
|
1075
|
+
0.613195 0.545793
|
|
1076
|
+
0.712671 0.527312
|
|
1077
|
+
0.717629 0.532812
|
|
1078
|
+
0.717721 0.550034
|
|
1079
|
+
0.711442 0.556425
|
|
1080
|
+
0.697261 0.556504
|
|
1081
|
+
0.690141 0.550763
|
|
1082
|
+
0.690044 0.532460
|
|
1083
|
+
0.695638 0.527408
|
|
1084
|
+
0.620549 0.548382
|
|
1085
|
+
0.620002 0.539964
|
|
1086
|
+
0.624483 0.534520
|
|
1087
|
+
0.639656 0.533455
|
|
1088
|
+
0.644723 0.537957
|
|
1089
|
+
0.641208 0.551697
|
|
1090
|
+
0.625303 0.552773
|
|
1091
|
+
0.645298 0.546823
|
|
1092
|
+
0.672034 0.545591
|
|
1093
|
+
0.667289 0.550456
|
|
1094
|
+
0.652082 0.550515
|
|
1095
|
+
0.647239 0.545417
|
|
1096
|
+
0.647210 0.536980
|
|
1097
|
+
0.651651 0.532250
|
|
1098
|
+
0.667590 0.532143
|
|
1099
|
+
0.672004 0.536704
|
|
1100
|
+
0.417544 0.539423
|
|
1101
|
+
0.417537 0.532495
|
|
1102
|
+
0.494486 0.532409
|
|
1103
|
+
0.494493 0.539337
|
|
1104
|
+
0.417520 0.516689
|
|
1105
|
+
0.494470 0.516608
|
|
1106
|
+
0.417513 0.509523
|
|
1107
|
+
0.494462 0.509447
|
|
1108
|
+
0.417505 0.501087
|
|
1109
|
+
0.494454 0.501010
|
|
1110
|
+
0.417455 0.494480
|
|
1111
|
+
0.494491 0.494401
|
|
1112
|
+
0.417482 0.477917
|
|
1113
|
+
0.494431 0.477833
|
|
1114
|
+
0.417474 0.471450
|
|
1115
|
+
0.494424 0.471363
|
|
1116
|
+
0.417465 0.462563
|
|
1117
|
+
0.494415 0.462477
|
|
1118
|
+
0.506390 0.539354
|
|
1119
|
+
0.498988 0.539362
|
|
1120
|
+
0.498946 0.500676
|
|
1121
|
+
0.506347 0.500667
|
|
1122
|
+
0.523979 0.539287
|
|
1123
|
+
0.523934 0.500646
|
|
1124
|
+
0.532981 0.539285
|
|
1125
|
+
0.532936 0.500643
|
|
1126
|
+
0.547058 0.539286
|
|
1127
|
+
0.547102 0.500644
|
|
1128
|
+
0.555897 0.539289
|
|
1129
|
+
0.555879 0.500647
|
|
1130
|
+
0.572447 0.539326
|
|
1131
|
+
0.572429 0.500639
|
|
1132
|
+
0.579661 0.539278
|
|
1133
|
+
0.579671 0.500637
|
|
1134
|
+
0.596718 0.539307
|
|
1135
|
+
0.596684 0.500620
|
|
1136
|
+
</float_array>
|
|
1137
|
+
<technique_common>
|
|
1138
|
+
<accessor source="#drc_l_sh_ry-UV0-array" count="248" stride="2">
|
|
1139
|
+
<param name="S" type="float"/>
|
|
1140
|
+
<param name="T" type="float"/>
|
|
1141
|
+
</accessor>
|
|
1142
|
+
</technique_common>
|
|
1143
|
+
</source>
|
|
1144
|
+
<vertices id="drc_l_sh_ry-VERTEX">
|
|
1145
|
+
<input semantic="POSITION" source="#drc_l_sh_ry-POSITION"/>
|
|
1146
|
+
</vertices>
|
|
1147
|
+
<triangles count="222" material="drc_extremities_diffuse">
|
|
1148
|
+
<input semantic="VERTEX" offset="0" source="#drc_l_sh_ry-VERTEX"/>
|
|
1149
|
+
<input semantic="NORMAL" offset="1" source="#drc_l_sh_ry-Normal0"/>
|
|
1150
|
+
<input semantic="TEXCOORD" offset="2" set="0" source="#drc_l_sh_ry-UV0"/>
|
|
1151
|
+
<p> 2 0 186 1 1 187 0 2 184 0 3 184 3 4 185 2 5 186 6 6 169 5 7 171 4 8 170 4 9 170 7 10 168 6 11 169 9 12 182 8 13 183 3 14 185 3 15 185 0 16 184 9 17 182 8 18 152 10 19 150 2 20 154 2 21 154 3 22 153 8 23 152 10 24 162 11 25 165 1 26 164 1 27 164 2 28 163 10 29 162 11 30 144 9 31 138 0 32 149 0 33 149 1 34 148 11 35 144 14 36 179 13 37 177 12 38 176 12 39 176 15 40 178 14 41 179 8 42 152 17 43 0 16 44 151 16 45 151 10 46 150 8 47 152 10 48 162 16 49 167 18 50 166 18 51 166 11 52 165 10 53 162 11 54 144 18 55 143 19 56 1 19 57 1 9 58 138 11 59 144 20 60 173 4 61 170 5 62 171 5 63 171 21 64 172 20 65 173 20 66 140 22 67 142 19 68 1 19 69 1 4 70 141 20 71 140 23 72 181 8 73 183 9 74 182 9 75 182 24 76 180 23 77 181 23 78 157 25 79 159 17 80 0 17 81 0 8 82 152 23 83 157 22 84 175 20 85 173 21 86 172 21 87 172 25 88 174 22 89 175 17 90 0 5 91 156 6 92 155 6 93 155 16 94 151 17 95 0 16 96 167 6 97 169 7 98 168 7 99 168 18 100 166 16 101 167 18 102 143 7 103 147 4 104 141 4 105 141 19 106 1 18 107 143 22 108 142 24 109 139 9 110 138 9 111 138 19 112 1 22 113 142 25 114 159 21 115 158 5 116 156 5 117 156 17 118 0 25 119 159 15 120 178 23 121 181 24 122 180 24 123 180 14 124 179 15 125 178 12 126 160 25 127 159 23 128 157 23 129 157 15 130 161 12 131 160 13 132 177 22 133 175 25 134 174 25 135 174 12 136 176 13 137 177 14 138 145 24 139 139 22 140 142 22 141 142 13 142 146 14 143 145 28 144 238 27 145 239 26 146 237 26 147 237 29 148 236 28 149 238 31 150 240 30 151 241 27 152 239 27 153 239 28 154 238 31 155 240 33 156 242 32 157 243 30 158 241 30 159 241 31 160 240 33 161 242 35 162 244 34 163 245 32 164 243 32 165 243 33 166 242 35 167 244 37 168 246 36 169 247 34 170 245 34 171 245 35 172 244 37 173 246 39 174 230 38 175 233 36 176 232 36 177 232 37 178 231 39 179 230 41 180 234 40 181 235 38 182 233 38 183 233 39 184 230 41 185 234 29 186 236 26 187 237 40 188 235 40 189 235 41 190 234 29 191 236 44 192 218 43 193 219 42 194 221 42 195 221 45 196 220 44 197 218 47 198 216 46 199 217 43 200 219 43 201 219 44 202 218 47 203 216 49 204 213 48 205 214 46 206 217 46 207 217 47 208 216 49 209 213 51 210 212 50 211 215 48 212 214 48 213 214 49 214 213 51 215 212 53 216 226 52 217 227 50 218 229 50 219 229 51 220 228 53 221 226 55 222 224 54 223 225 52 224 227 52 225 227 53 226 226 55 227 224 57 228 222 56 229 223 54 230 225 54 231 225 55 232 224 57 233 222 45 234 220 42 235 221 56 236 223 56 237 223 57 238 222 45 239 220 38 240 194 40 241 193 26 242 192 26 243 192 34 244 188 38 245 194 38 246 194 34 247 188 36 248 195 30 249 190 32 250 189 34 251 188 34 252 188 26 253 192 30 254 190 27 255 191 30 256 190 26 257 192 54 258 210 56 259 209 42 260 208 42 261 208 50 262 204 54 263 210 54 264 210 50 265 204 52 266 211 46 267 206 48 268 205 50 269 204 50 270 204 42 271 208 46 272 206 43 273 207 46 274 206 42 275 208 47 276 198 44 277 197 45 278 196 45 279 196 55 280 201 47 281 198 51 282 200 49 283 199 47 284 198 47 285 198 55 286 201 51 287 200 51 288 200 55 289 201 53 290 203 45 291 196 57 292 202 55 293 201 60 294 70 59 295 71 58 296 69 58 297 69 61 298 68 60 299 70 63 300 72 62 301 73 59 302 71 59 303 71 60 304 70 63 305 72 65 306 74 64 307 75 62 308 73 62 309 73 63 310 72 65 311 74 67 312 76 66 313 77 64 314 75 64 315 75 65 316 74 67 317 76 69 318 60 68 319 63 66 320 62 66 321 62 67 322 61 69 323 60 71 324 64 70 325 65 68 326 63 68 327 63 69 328 60 71 329 64 73 330 66 72 331 67 70 332 65 70 333 65 71 334 64 73 335 66 61 336 68 58 337 69 72 338 67 72 339 67 73 340 66 61 341 68 74 342 90 60 343 91 61 344 93 61 345 93 75 346 92 74 347 90 76 348 86 63 349 87 60 350 91 60 351 91 74 352 90 76 353 86 77 354 82 65 355 83 63 356 87 63 357 87 76 358 86 77 359 82 78 360 79 67 361 80 65 362 83 65 363 83 77 364 82 78 365 79 79 366 78 69 367 81 67 368 80 67 369 80 78 370 79 79 371 78 80 372 84 71 373 85 69 374 81 69 375 81 79 376 78 80 377 84 81 378 88 73 379 89 71 380 85 71 381 85 80 382 84 81 383 88 75 384 92 61 385 93 73 386 89 73 387 89 81 388 88 75 389 92 82 390 104 74 391 105 75 392 103 75 393 103 83 394 102 82 395 104 84 396 106 76 397 107 74 398 105 74 399 105 82 400 104 84 401 106 85 402 108 77 403 109 76 404 107 76 405 107 84 406 106 85 407 108 86 408 110 78 409 111 77 410 109 77 411 109 85 412 108 86 413 110 87 414 94 79 415 97 78 416 96 78 417 96 86 418 95 87 419 94 88 420 98 80 421 99 79 422 97 79 423 97 87 424 94 88 425 98 89 426 100 81 427 101 80 428 99 80 429 99 88 430 98 89 431 100 83 432 102 75 433 103 81 434 101 81 435 101 89 436 100 83 437 102 91 438 59 90 439 57 58 440 56 58 441 56 59 442 58 91 443 59 92 444 55 91 445 59 59 446 58 59 447 58 62 448 54 92 449 55 93 450 51 92 451 55 62 452 54 62 453 54 64 454 50 93 455 51 94 456 46 93 457 51 64 458 50 64 459 50 66 460 45 94 461 46 95 462 47 94 463 46 66 464 45 66 465 45 68 466 44 95 467 47 96 468 49 95 469 47 68 470 44 68 471 44 70 472 48 96 473 49 97 474 53 96 475 49 70 476 48 70 477 48 72 478 52 97 479 53 90 480 57 97 481 53 72 482 52 72 483 52 58 484 56 90 485 57 99 486 37 98 487 35 90 488 34 90 489 34 91 490 36 99 491 37 100 492 39 99 493 37 91 494 36 91 495 36 92 496 38 100 497 39 101 498 41 100 499 39 92 500 38 92 501 38 93 502 40 101 503 41 102 504 42 101 505 41 93 506 40 93 507 40 94 508 43 102 509 42 103 510 29 102 511 28 94 512 27 94 513 27 95 514 26 103 515 29 104 516 31 103 517 29 95 518 26 95 519 26 96 520 30 104 521 31 105 522 33 104 523 31 96 524 30 96 525 30 97 526 32 105 527 33 98 528 35 105 529 33 97 530 32 97 531 32 90 532 34 98 533 35 104 534 24 105 535 23 98 536 22 98 537 22 102 538 18 104 539 24 104 540 24 102 541 18 103 542 25 100 543 20 101 544 19 102 545 18 102 546 18 98 547 22 100 548 20 99 549 21 100 550 20 98 551 22 107 552 17 106 553 15 82 554 14 82 555 14 83 556 16 107 557 17 106 558 15 108 559 11 84 560 10 84 561 10 82 562 14 106 563 15 108 564 11 109 565 7 85 566 6 85 567 6 84 568 10 108 569 11 109 570 7 110 571 5 86 572 2 86 573 2 85 574 6 109 575 7 110 576 5 111 577 4 87 578 3 87 579 3 86 580 2 110 581 5 111 582 4 112 583 9 88 584 8 88 585 8 87 586 3 111 587 4 112 588 9 113 589 13 89 590 12 89 591 12 88 592 8 112 593 9 113 594 13 107 595 17 83 596 16 83 597 16 89 598 12 113 599 13 115 600 129 114 601 131 106 602 130 106 603 130 107 604 128 115 605 129 114 606 131 116 607 133 108 608 132 108 609 132 106 610 130 114 611 131 116 612 133 117 613 135 109 614 134 109 615 134 108 616 132 116 617 133 117 618 135 118 619 137 110 620 136 110 621 136 109 622 134 117 623 135 118 624 120 119 625 123 111 626 122 111 627 122 110 628 121 118 629 120 119 630 123 120 631 125 112 632 124 112 633 124 111 634 122 119 635 123 120 636 125 121 637 127 113 638 126 113 639 126 112 640 124 120 641 125 121 642 127 115 643 129 107 644 128 107 645 128 113 646 126 121 647 127 117 648 114 116 649 113 114 650 112 114 651 112 119 652 116 117 653 114 117 654 114 119 655 116 118 656 115 121 657 118 120 658 117 119 659 116 119 660 116 114 661 112 121 662 118 115 663 119 121 664 118 114 665 112</p>
|
|
1152
|
+
</triangles>
|
|
1153
|
+
</mesh>
|
|
1154
|
+
</geometry>
|
|
1155
|
+
</library_geometries>
|
|
1156
|
+
<library_visual_scenes>
|
|
1157
|
+
<visual_scene id="l_elbow_ry" name="l_elbow_ry">
|
|
1158
|
+
<node name="g27" id="g27" sid="g27">
|
|
1159
|
+
<matrix sid="matrix">1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000</matrix>
|
|
1160
|
+
<extra>
|
|
1161
|
+
<technique profile="FCOLLADA">
|
|
1162
|
+
<visibility>1.000000</visibility>
|
|
1163
|
+
</technique>
|
|
1164
|
+
</extra>
|
|
1165
|
+
<node name="l_elbow_ry_node" id="l_elbow_ry_node" sid="l_elbow_ry_node">
|
|
1166
|
+
<matrix sid="matrix">1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 1.000000 0.009469 0.000000 0.000000 0.000000 1.000000</matrix>
|
|
1167
|
+
<extra>
|
|
1168
|
+
<technique profile="FCOLLADA">
|
|
1169
|
+
<visibility>1.000000</visibility>
|
|
1170
|
+
</technique>
|
|
1171
|
+
</extra>
|
|
1172
|
+
<node name="drc_l_sh_ry" id="drc_l_sh_ry" sid="drc_l_sh_ry">
|
|
1173
|
+
<matrix sid="matrix">1.000000 0.000000 0.000000 -0.014561 0.000000 1.000000 -0.000000 -0.002376 0.000000 0.000000 1.000000 -0.016123 0.000000 0.000000 0.000000 1.000000</matrix>
|
|
1174
|
+
<instance_geometry url="#drc_l_sh_ry-lib">
|
|
1175
|
+
<bind_material>
|
|
1176
|
+
<technique_common>
|
|
1177
|
+
<instance_material symbol="drc_extremities_diffuse" target="#drc_extremities_diffuse"/>
|
|
1178
|
+
</technique_common>
|
|
1179
|
+
</bind_material>
|
|
1180
|
+
</instance_geometry>
|
|
1181
|
+
<extra>
|
|
1182
|
+
<technique profile="FCOLLADA">
|
|
1183
|
+
<visibility>1.000000</visibility>
|
|
1184
|
+
</technique>
|
|
1185
|
+
</extra>
|
|
1186
|
+
</node>
|
|
1187
|
+
</node>
|
|
1188
|
+
</node>
|
|
1189
|
+
<extra>
|
|
1190
|
+
<technique profile="MAX3D">
|
|
1191
|
+
<frame_rate>30.000000</frame_rate>
|
|
1192
|
+
</technique>
|
|
1193
|
+
<technique profile="FCOLLADA">
|
|
1194
|
+
<start_time>0.000000</start_time>
|
|
1195
|
+
<end_time>3.333333</end_time>
|
|
1196
|
+
</technique>
|
|
1197
|
+
</extra>
|
|
1198
|
+
</visual_scene>
|
|
1199
|
+
</library_visual_scenes>
|
|
1200
|
+
<scene>
|
|
1201
|
+
<instance_visual_scene url="#l_elbow_ry"></instance_visual_scene>
|
|
1202
|
+
</scene>
|
|
1203
|
+
</COLLADA>
|
|
1204
|
+
|