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,1144 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<COLLADA xmlns="http://www.collada.org/2005/11/COLLADASchema" version="1.4.1">
|
|
3
|
+
<asset><contributor><author></author><authoring_tool>FBX COLLADA exporter</authoring_tool><comments></comments></contributor><created>2013-08-22T19:49:15Z</created><keywords></keywords><modified>2013-08-22T19:49:15Z</modified><revision></revision><subject></subject><title></title><unit meter="1.000000" name="centimeter"></unit><up_axis>Z_UP</up_axis></asset>
|
|
4
|
+
<library_images>
|
|
5
|
+
<image id="drc_extremities_diffuse-image" name="drc_extremities_diffuse"><init_from>../materials/textures/drc_extremities_diffuse.jpg</init_from></image>
|
|
6
|
+
</library_images>
|
|
7
|
+
<library_materials>
|
|
8
|
+
<material id="drc_extremities_diffuse" name="drc_extremities_diffuse">
|
|
9
|
+
<instance_effect url="#drc_extremities_diffuse-fx"/>
|
|
10
|
+
</material>
|
|
11
|
+
</library_materials>
|
|
12
|
+
<library_effects>
|
|
13
|
+
<effect id="drc_extremities_diffuse-fx" name="drc_extremities_diffuse">
|
|
14
|
+
<profile_COMMON>
|
|
15
|
+
<technique sid="standard">
|
|
16
|
+
<phong>
|
|
17
|
+
<emission>
|
|
18
|
+
<color sid="emission">0.000000 0.000000 0.000000 1.000000</color>
|
|
19
|
+
</emission>
|
|
20
|
+
<ambient>
|
|
21
|
+
<color sid="ambient">0.588235 0.588235 0.588235 1.000000</color>
|
|
22
|
+
</ambient>
|
|
23
|
+
<diffuse>
|
|
24
|
+
<texture texture="drc_extremities_diffuse-image" texcoord="CHANNEL0">
|
|
25
|
+
<extra>
|
|
26
|
+
<technique profile="MAYA">
|
|
27
|
+
<wrapU sid="wrapU0">TRUE</wrapU>
|
|
28
|
+
<wrapV sid="wrapV0">TRUE</wrapV>
|
|
29
|
+
<blend_mode>ADD</blend_mode>
|
|
30
|
+
</technique>
|
|
31
|
+
</extra>
|
|
32
|
+
</texture>
|
|
33
|
+
</diffuse>
|
|
34
|
+
<specular>
|
|
35
|
+
<color sid="specular">0.000000 0.000000 0.000000 1.000000</color>
|
|
36
|
+
</specular>
|
|
37
|
+
<shininess>
|
|
38
|
+
<float sid="shininess">2.000000</float>
|
|
39
|
+
</shininess>
|
|
40
|
+
<reflective>
|
|
41
|
+
<color sid="reflective">0.000000 0.000000 0.000000 1.000000</color>
|
|
42
|
+
</reflective>
|
|
43
|
+
<reflectivity>
|
|
44
|
+
<float sid="reflectivity">1.000000</float>
|
|
45
|
+
</reflectivity>
|
|
46
|
+
<transparent opaque="RGB_ZERO">
|
|
47
|
+
<color sid="transparent">1.000000 1.000000 1.000000 1.000000</color>
|
|
48
|
+
</transparent>
|
|
49
|
+
<transparency>
|
|
50
|
+
<float sid="transparency">0.000000</float>
|
|
51
|
+
</transparency>
|
|
52
|
+
</phong>
|
|
53
|
+
</technique>
|
|
54
|
+
</profile_COMMON>
|
|
55
|
+
</effect>
|
|
56
|
+
</library_effects>
|
|
57
|
+
<library_geometries>
|
|
58
|
+
<geometry id="drc_r_sh_ry-lib" name="drc_r_sh_ryMesh">
|
|
59
|
+
<mesh>
|
|
60
|
+
<source id="drc_r_sh_ry-POSITION">
|
|
61
|
+
<float_array id="drc_r_sh_ry-POSITION-array" count="366">
|
|
62
|
+
-0.224296 0.267397 0.061815
|
|
63
|
+
-0.224366 0.283590 0.061815
|
|
64
|
+
-0.224366 0.283590 0.107115
|
|
65
|
+
-0.224296 0.267397 0.107115
|
|
66
|
+
-0.338847 0.267397 0.061815
|
|
67
|
+
-0.338847 0.267397 0.107115
|
|
68
|
+
-0.338847 0.283660 0.107115
|
|
69
|
+
-0.338847 0.283660 0.061815
|
|
70
|
+
-0.235751 0.267397 0.107115
|
|
71
|
+
-0.235751 0.267397 0.061815
|
|
72
|
+
-0.235821 0.283590 0.107115
|
|
73
|
+
-0.235821 0.283590 0.061815
|
|
74
|
+
-0.282137 0.236001 0.107115
|
|
75
|
+
-0.282137 0.236001 0.061815
|
|
76
|
+
-0.235751 0.236001 0.061815
|
|
77
|
+
-0.235751 0.236001 0.107115
|
|
78
|
+
-0.282137 0.283660 0.107115
|
|
79
|
+
-0.282137 0.267397 0.107115
|
|
80
|
+
-0.282137 0.283660 0.061815
|
|
81
|
+
-0.282137 0.267397 0.061815
|
|
82
|
+
-0.338847 0.254103 0.061815
|
|
83
|
+
-0.338847 0.254103 0.107115
|
|
84
|
+
-0.282208 0.254033 0.061815
|
|
85
|
+
-0.235821 0.254032 0.107115
|
|
86
|
+
-0.235821 0.254033 0.061815
|
|
87
|
+
-0.282208 0.254033 0.107115
|
|
88
|
+
-0.302290 0.281751 0.107215
|
|
89
|
+
-0.279096 0.281751 0.107215
|
|
90
|
+
-0.279167 0.342633 0.107215
|
|
91
|
+
-0.302219 0.342633 0.107215
|
|
92
|
+
-0.268773 0.281751 0.097215
|
|
93
|
+
-0.268702 0.342633 0.097215
|
|
94
|
+
-0.268773 0.281751 0.070115
|
|
95
|
+
-0.268773 0.342704 0.070115
|
|
96
|
+
-0.276834 0.281751 0.061415
|
|
97
|
+
-0.276763 0.342633 0.061415
|
|
98
|
+
-0.304694 0.281751 0.061415
|
|
99
|
+
-0.304694 0.342704 0.061415
|
|
100
|
+
-0.313886 0.281751 0.069315
|
|
101
|
+
-0.313886 0.342704 0.069315
|
|
102
|
+
-0.313886 0.281751 0.098115
|
|
103
|
+
-0.313815 0.342633 0.098115
|
|
104
|
+
-0.352706 0.312510 0.104115
|
|
105
|
+
-0.352706 0.299217 0.104115
|
|
106
|
+
-0.226700 0.299217 0.104115
|
|
107
|
+
-0.226700 0.312510 0.104115
|
|
108
|
+
-0.352706 0.291156 0.096215
|
|
109
|
+
-0.226700 0.291156 0.096215
|
|
110
|
+
-0.352706 0.291156 0.071315
|
|
111
|
+
-0.226700 0.291156 0.071315
|
|
112
|
+
-0.352706 0.298792 0.063515
|
|
113
|
+
-0.226700 0.298792 0.063515
|
|
114
|
+
-0.352706 0.312793 0.063515
|
|
115
|
+
-0.226700 0.312793 0.063515
|
|
116
|
+
-0.352706 0.320006 0.070715
|
|
117
|
+
-0.226700 0.320006 0.070715
|
|
118
|
+
-0.352777 0.319935 0.096815
|
|
119
|
+
-0.226629 0.319935 0.096815
|
|
120
|
+
-0.235751 0.222001 0.131115
|
|
121
|
+
-0.235821 0.248941 0.120015
|
|
122
|
+
-0.281218 0.248941 0.120015
|
|
123
|
+
-0.281288 0.222001 0.131115
|
|
124
|
+
-0.235821 0.260114 0.093015
|
|
125
|
+
-0.281218 0.260114 0.093015
|
|
126
|
+
-0.235821 0.248941 0.066115
|
|
127
|
+
-0.281218 0.248941 0.066115
|
|
128
|
+
-0.235751 0.222001 0.054915
|
|
129
|
+
-0.281288 0.222001 0.054915
|
|
130
|
+
-0.235821 0.195060 0.066115
|
|
131
|
+
-0.281218 0.195060 0.066115
|
|
132
|
+
-0.235821 0.183888 0.093015
|
|
133
|
+
-0.281218 0.183888 0.093015
|
|
134
|
+
-0.235821 0.195060 0.120015
|
|
135
|
+
-0.281218 0.195060 0.120015
|
|
136
|
+
-0.287723 0.254457 0.125415
|
|
137
|
+
-0.287794 0.222001 0.138915
|
|
138
|
+
-0.287723 0.267892 0.093015
|
|
139
|
+
-0.287723 0.254457 0.060615
|
|
140
|
+
-0.287794 0.222001 0.047215
|
|
141
|
+
-0.287723 0.189544 0.060615
|
|
142
|
+
-0.287723 0.176109 0.093015
|
|
143
|
+
-0.287723 0.189544 0.125415
|
|
144
|
+
-0.339130 0.254386 0.125415
|
|
145
|
+
-0.339130 0.222001 0.138915
|
|
146
|
+
-0.339130 0.267821 0.093015
|
|
147
|
+
-0.339130 0.254386 0.060615
|
|
148
|
+
-0.339130 0.222001 0.047215
|
|
149
|
+
-0.339130 0.189615 0.060615
|
|
150
|
+
-0.339130 0.176180 0.093015
|
|
151
|
+
-0.339130 0.189615 0.125415
|
|
152
|
+
-0.235751 0.222001 0.116315
|
|
153
|
+
-0.235821 0.238476 0.109515
|
|
154
|
+
-0.235821 0.245264 0.093015
|
|
155
|
+
-0.235821 0.238476 0.076615
|
|
156
|
+
-0.235751 0.222001 0.069815
|
|
157
|
+
-0.235821 0.205525 0.076615
|
|
158
|
+
-0.235821 0.198737 0.093015
|
|
159
|
+
-0.235821 0.205525 0.109515
|
|
160
|
+
-0.224437 0.222001 0.116315
|
|
161
|
+
-0.224437 0.238405 0.109515
|
|
162
|
+
-0.224437 0.245194 0.093015
|
|
163
|
+
-0.224437 0.238405 0.076615
|
|
164
|
+
-0.224437 0.222001 0.069815
|
|
165
|
+
-0.224437 0.205596 0.076615
|
|
166
|
+
-0.224508 0.198737 0.093015
|
|
167
|
+
-0.224437 0.205596 0.109515
|
|
168
|
+
-0.339130 0.250709 0.121815
|
|
169
|
+
-0.339130 0.222001 0.133715
|
|
170
|
+
-0.339059 0.262659 0.093015
|
|
171
|
+
-0.339130 0.250709 0.064315
|
|
172
|
+
-0.339130 0.222001 0.052415
|
|
173
|
+
-0.339130 0.193292 0.064315
|
|
174
|
+
-0.339059 0.181342 0.093015
|
|
175
|
+
-0.339130 0.193292 0.121815
|
|
176
|
+
-0.293309 0.250709 0.121815
|
|
177
|
+
-0.293309 0.222001 0.133715
|
|
178
|
+
-0.293380 0.262659 0.093015
|
|
179
|
+
-0.293309 0.250709 0.064315
|
|
180
|
+
-0.293309 0.222001 0.052415
|
|
181
|
+
-0.293380 0.193221 0.064315
|
|
182
|
+
-0.293380 0.181342 0.093015
|
|
183
|
+
-0.293380 0.193221 0.121815
|
|
184
|
+
</float_array>
|
|
185
|
+
<technique_common>
|
|
186
|
+
<accessor source="#drc_r_sh_ry-POSITION-array" count="122" stride="3">
|
|
187
|
+
<param name="X" type="float"/>
|
|
188
|
+
<param name="Y" type="float"/>
|
|
189
|
+
<param name="Z" type="float"/>
|
|
190
|
+
</accessor>
|
|
191
|
+
</technique_common>
|
|
192
|
+
</source>
|
|
193
|
+
<source id="drc_r_sh_ry-Normal0">
|
|
194
|
+
<float_array id="drc_r_sh_ry-Normal0-array" count="1998">
|
|
195
|
+
0.999991 0.004324 -0.000000
|
|
196
|
+
0.999991 0.004324 -0.000000
|
|
197
|
+
0.999991 0.004324 -0.000000
|
|
198
|
+
0.999991 0.004324 -0.000000
|
|
199
|
+
0.999991 0.004324 -0.000000
|
|
200
|
+
0.999991 0.004324 -0.000000
|
|
201
|
+
-1.000000 0.000000 0.000000
|
|
202
|
+
-1.000000 0.000000 0.000000
|
|
203
|
+
-1.000000 0.000000 0.000000
|
|
204
|
+
-1.000000 0.000000 0.000000
|
|
205
|
+
-1.000000 0.000000 0.000000
|
|
206
|
+
-1.000000 0.000000 0.000000
|
|
207
|
+
0.000000 -1.000000 0.000001
|
|
208
|
+
0.000000 -1.000000 0.000001
|
|
209
|
+
0.000000 -1.000000 0.000001
|
|
210
|
+
0.000000 -1.000000 0.000001
|
|
211
|
+
0.000000 -1.000000 0.000001
|
|
212
|
+
0.000000 -1.000000 0.000001
|
|
213
|
+
0.000000 0.000001 1.000000
|
|
214
|
+
0.000000 0.000001 1.000000
|
|
215
|
+
0.000000 0.000001 1.000000
|
|
216
|
+
0.000000 0.000001 1.000000
|
|
217
|
+
0.000000 0.000001 1.000000
|
|
218
|
+
0.000000 0.000001 1.000000
|
|
219
|
+
0.000000 1.000000 -0.000001
|
|
220
|
+
0.000000 1.000000 -0.000001
|
|
221
|
+
0.000000 1.000000 -0.000001
|
|
222
|
+
0.000000 1.000000 -0.000001
|
|
223
|
+
0.000000 1.000000 -0.000001
|
|
224
|
+
0.000000 1.000000 -0.000001
|
|
225
|
+
0.000000 0.000000 -1.000000
|
|
226
|
+
0.000000 0.000000 -1.000000
|
|
227
|
+
0.000000 0.000000 -1.000000
|
|
228
|
+
0.000000 0.000000 -1.000000
|
|
229
|
+
0.000000 0.000000 -1.000000
|
|
230
|
+
0.000000 0.000000 -1.000000
|
|
231
|
+
-0.000001 -1.000000 -0.000001
|
|
232
|
+
-0.000001 -1.000000 -0.000001
|
|
233
|
+
-0.000001 -1.000000 -0.000001
|
|
234
|
+
0.000000 -1.000000 0.000000
|
|
235
|
+
0.000000 -1.000000 0.000000
|
|
236
|
+
0.000000 -1.000000 0.000000
|
|
237
|
+
0.000000 0.000001 1.000000
|
|
238
|
+
0.000000 0.000001 1.000000
|
|
239
|
+
0.000000 0.000001 1.000000
|
|
240
|
+
-0.000000 0.000001 1.000000
|
|
241
|
+
-0.000000 0.000001 1.000000
|
|
242
|
+
-0.000000 0.000001 1.000000
|
|
243
|
+
0.001513 0.999999 -0.000001
|
|
244
|
+
0.001513 0.999999 -0.000001
|
|
245
|
+
0.001513 0.999999 -0.000001
|
|
246
|
+
0.001512 0.999999 0.000000
|
|
247
|
+
0.001512 0.999999 0.000000
|
|
248
|
+
0.001512 0.999999 0.000000
|
|
249
|
+
0.000000 0.000000 -1.000000
|
|
250
|
+
0.000000 0.000000 -1.000000
|
|
251
|
+
0.000000 0.000000 -1.000000
|
|
252
|
+
0.000000 0.000000 -1.000000
|
|
253
|
+
0.000000 0.000000 -1.000000
|
|
254
|
+
0.000000 0.000000 -1.000000
|
|
255
|
+
-1.000000 0.000000 0.000000
|
|
256
|
+
-1.000000 0.000000 0.000000
|
|
257
|
+
-1.000000 0.000000 0.000000
|
|
258
|
+
-1.000000 0.000000 0.000000
|
|
259
|
+
-1.000000 0.000000 0.000000
|
|
260
|
+
-1.000000 0.000000 0.000000
|
|
261
|
+
0.000000 0.000000 -1.000000
|
|
262
|
+
0.000000 0.000000 -1.000000
|
|
263
|
+
0.000000 0.000000 -1.000000
|
|
264
|
+
0.000000 0.000000 -1.000000
|
|
265
|
+
0.000000 0.000000 -1.000000
|
|
266
|
+
0.000000 0.000000 -1.000000
|
|
267
|
+
0.999986 -0.005238 -0.000000
|
|
268
|
+
0.999986 -0.005238 -0.000000
|
|
269
|
+
0.999986 -0.005238 -0.000000
|
|
270
|
+
0.999986 -0.005238 0.000000
|
|
271
|
+
0.999986 -0.005238 0.000000
|
|
272
|
+
0.999986 -0.005238 0.000000
|
|
273
|
+
-0.000000 0.000001 1.000000
|
|
274
|
+
-0.000000 0.000001 1.000000
|
|
275
|
+
-0.000000 0.000001 1.000000
|
|
276
|
+
0.000000 0.000001 1.000000
|
|
277
|
+
0.000000 0.000001 1.000000
|
|
278
|
+
0.000000 0.000001 1.000000
|
|
279
|
+
-0.001235 -0.999999 0.000000
|
|
280
|
+
-0.001235 -0.999999 0.000000
|
|
281
|
+
-0.001235 -0.999999 0.000000
|
|
282
|
+
-0.001234 -0.999999 0.000001
|
|
283
|
+
-0.001234 -0.999999 0.000001
|
|
284
|
+
-0.001234 -0.999999 0.000001
|
|
285
|
+
0.000000 0.000001 1.000000
|
|
286
|
+
0.000000 0.000001 1.000000
|
|
287
|
+
0.000000 0.000001 1.000000
|
|
288
|
+
0.000000 0.000001 1.000000
|
|
289
|
+
0.000000 0.000001 1.000000
|
|
290
|
+
0.000000 0.000001 1.000000
|
|
291
|
+
-0.000001 1.000000 0.000000
|
|
292
|
+
-0.000001 1.000000 0.000000
|
|
293
|
+
-0.000001 1.000000 0.000000
|
|
294
|
+
0.000000 1.000000 -0.000001
|
|
295
|
+
0.000000 1.000000 -0.000001
|
|
296
|
+
0.000000 1.000000 -0.000001
|
|
297
|
+
0.000000 0.000000 -1.000000
|
|
298
|
+
0.000000 0.000000 -1.000000
|
|
299
|
+
0.000000 0.000000 -1.000000
|
|
300
|
+
0.000000 0.000000 -1.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 0.000000 -1.000000
|
|
308
|
+
0.000000 0.000000 -1.000000
|
|
309
|
+
0.000000 0.000001 1.000000
|
|
310
|
+
0.000000 0.000001 1.000000
|
|
311
|
+
0.000000 0.000001 1.000000
|
|
312
|
+
0.000000 0.000001 1.000000
|
|
313
|
+
0.000000 0.000001 1.000000
|
|
314
|
+
0.000000 0.000001 1.000000
|
|
315
|
+
0.999992 0.003881 0.000000
|
|
316
|
+
0.999992 0.003881 0.000000
|
|
317
|
+
0.999993 0.003881 0.000000
|
|
318
|
+
0.999992 0.003881 0.000000
|
|
319
|
+
0.999993 0.003881 0.000000
|
|
320
|
+
0.999992 0.003881 0.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.999992 -0.003937 0.000000
|
|
328
|
+
-0.999992 -0.003937 0.000000
|
|
329
|
+
-0.999992 -0.003937 0.000000
|
|
330
|
+
-0.999992 -0.003937 0.000000
|
|
331
|
+
-0.999992 -0.003937 0.000000
|
|
332
|
+
-0.999992 -0.003937 0.000000
|
|
333
|
+
0.000000 -0.000000 -1.000000
|
|
334
|
+
0.000000 -0.000000 -1.000000
|
|
335
|
+
0.000000 -0.000000 -1.000000
|
|
336
|
+
-0.000000 -0.000000 -1.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.000000 -0.000000 1.000000
|
|
344
|
+
0.000000 -0.000000 1.000000
|
|
345
|
+
0.690862 0.000806 0.722986
|
|
346
|
+
0.690862 0.000806 0.722986
|
|
347
|
+
0.690862 0.000806 0.722986
|
|
348
|
+
0.695781 -0.000811 0.718254
|
|
349
|
+
0.695780 -0.000811 0.718254
|
|
350
|
+
0.695780 -0.000811 0.718254
|
|
351
|
+
0.999996 -0.001166 -0.002624
|
|
352
|
+
0.999996 -0.001166 -0.002624
|
|
353
|
+
0.999996 -0.001166 -0.002624
|
|
354
|
+
1.000000 0.000000 0.000000
|
|
355
|
+
1.000000 0.000000 0.000000
|
|
356
|
+
1.000000 0.000000 0.000000
|
|
357
|
+
0.736521 0.000000 -0.676415
|
|
358
|
+
0.736521 0.000000 -0.676414
|
|
359
|
+
0.736521 0.000000 -0.676415
|
|
360
|
+
0.733531 -0.000855 -0.679656
|
|
361
|
+
0.733531 -0.000855 -0.679656
|
|
362
|
+
0.733531 -0.000855 -0.679656
|
|
363
|
+
-0.000000 -0.000000 -1.000000
|
|
364
|
+
-0.000000 -0.000000 -1.000000
|
|
365
|
+
-0.000000 -0.000000 -1.000000
|
|
366
|
+
0.000000 -0.000000 -1.000000
|
|
367
|
+
0.000000 -0.000000 -1.000000
|
|
368
|
+
0.000000 -0.000000 -1.000000
|
|
369
|
+
-0.651796 -0.000000 -0.758395
|
|
370
|
+
-0.651796 -0.000000 -0.758395
|
|
371
|
+
-0.651796 -0.000000 -0.758395
|
|
372
|
+
-0.651794 0.000000 -0.758396
|
|
373
|
+
-0.651794 0.000000 -0.758396
|
|
374
|
+
-0.651794 0.000000 -0.758396
|
|
375
|
+
-0.999997 0.000000 0.002465
|
|
376
|
+
-0.999997 0.000000 0.002465
|
|
377
|
+
-0.999997 0.000000 0.002465
|
|
378
|
+
-0.999999 0.001166 0.000000
|
|
379
|
+
-0.999999 0.001166 0.000000
|
|
380
|
+
-0.999999 0.001166 0.000000
|
|
381
|
+
-0.617354 0.000720 0.786685
|
|
382
|
+
-0.617354 0.000720 0.786685
|
|
383
|
+
-0.617354 0.000720 0.786685
|
|
384
|
+
-0.617353 0.000719 0.786686
|
|
385
|
+
-0.617353 0.000719 0.786686
|
|
386
|
+
-0.617353 0.000719 0.786686
|
|
387
|
+
0.000000 0.000000 1.000000
|
|
388
|
+
0.000000 0.000000 1.000000
|
|
389
|
+
0.000000 0.000000 1.000000
|
|
390
|
+
0.000000 0.000000 1.000000
|
|
391
|
+
0.000000 0.000000 1.000000
|
|
392
|
+
0.000000 0.000000 1.000000
|
|
393
|
+
0.000000 -0.699941 0.714201
|
|
394
|
+
0.000000 -0.699941 0.714200
|
|
395
|
+
0.000000 -0.699941 0.714200
|
|
396
|
+
0.000000 -0.699942 0.714199
|
|
397
|
+
0.000000 -0.699943 0.714199
|
|
398
|
+
0.000000 -0.699943 0.714199
|
|
399
|
+
0.000000 -1.000000 0.000000
|
|
400
|
+
0.000000 -1.000000 0.000000
|
|
401
|
+
0.000000 -1.000000 0.000000
|
|
402
|
+
0.000000 -1.000000 0.000000
|
|
403
|
+
0.000000 -1.000000 0.000000
|
|
404
|
+
0.000000 -1.000000 0.000000
|
|
405
|
+
0.000000 -0.714581 -0.699553
|
|
406
|
+
0.000000 -0.714581 -0.699553
|
|
407
|
+
0.000000 -0.714581 -0.699553
|
|
408
|
+
0.000000 -0.714583 -0.699550
|
|
409
|
+
0.000000 -0.714583 -0.699550
|
|
410
|
+
0.000000 -0.714583 -0.699550
|
|
411
|
+
-0.000000 0.000001 -1.000000
|
|
412
|
+
-0.000000 0.000001 -1.000000
|
|
413
|
+
-0.000000 0.000001 -1.000000
|
|
414
|
+
-0.000000 0.000001 -1.000000
|
|
415
|
+
-0.000000 0.000001 -1.000000
|
|
416
|
+
-0.000000 0.000001 -1.000000
|
|
417
|
+
-0.000000 0.706468 -0.707745
|
|
418
|
+
-0.000000 0.706468 -0.707745
|
|
419
|
+
-0.000000 0.706468 -0.707745
|
|
420
|
+
0.000000 0.706465 -0.707748
|
|
421
|
+
0.000000 0.706465 -0.707748
|
|
422
|
+
0.000000 0.706465 -0.707748
|
|
423
|
+
0.000000 0.999996 0.002721
|
|
424
|
+
0.000000 0.999996 0.002721
|
|
425
|
+
0.000000 0.999996 0.002721
|
|
426
|
+
0.000000 0.999996 0.002720
|
|
427
|
+
0.000000 0.999996 0.002720
|
|
428
|
+
0.000000 0.999996 0.002720
|
|
429
|
+
0.000000 0.701080 0.713083
|
|
430
|
+
0.000000 0.701080 0.713083
|
|
431
|
+
0.000000 0.701080 0.713083
|
|
432
|
+
0.000000 0.701078 0.713084
|
|
433
|
+
0.000000 0.701078 0.713084
|
|
434
|
+
0.000000 0.701078 0.713084
|
|
435
|
+
0.000000 -1.000000 0.000000
|
|
436
|
+
0.000000 -1.000000 0.000000
|
|
437
|
+
0.000000 -1.000000 0.000000
|
|
438
|
+
0.000000 -1.000000 0.000000
|
|
439
|
+
0.000000 -1.000000 0.000000
|
|
440
|
+
0.000000 -1.000000 0.000000
|
|
441
|
+
0.000000 -1.000000 0.000000
|
|
442
|
+
0.000000 -1.000000 0.000000
|
|
443
|
+
0.000000 -1.000000 0.000000
|
|
444
|
+
0.000000 -1.000000 0.000000
|
|
445
|
+
0.000000 -1.000000 0.000000
|
|
446
|
+
0.000000 -1.000000 0.000000
|
|
447
|
+
0.000000 -1.000000 0.000000
|
|
448
|
+
0.000000 -1.000000 0.000000
|
|
449
|
+
0.000000 -1.000000 0.000000
|
|
450
|
+
0.000000 -1.000000 0.000000
|
|
451
|
+
0.000000 -1.000000 0.000000
|
|
452
|
+
0.000000 -1.000000 0.000000
|
|
453
|
+
-1.000000 0.000000 0.000000
|
|
454
|
+
-1.000000 0.000000 0.000000
|
|
455
|
+
-1.000000 0.000000 0.000000
|
|
456
|
+
-0.999921 -0.012277 -0.002755
|
|
457
|
+
-0.999921 -0.012277 -0.002755
|
|
458
|
+
-0.999921 -0.012277 -0.002755
|
|
459
|
+
-1.000000 0.000000 0.000000
|
|
460
|
+
-1.000000 0.000000 0.000000
|
|
461
|
+
-1.000000 0.000000 0.000000
|
|
462
|
+
-1.000000 0.000000 0.000000
|
|
463
|
+
-1.000000 0.000000 0.000000
|
|
464
|
+
-1.000000 0.000000 0.000000
|
|
465
|
+
-1.000000 0.000000 0.000000
|
|
466
|
+
-1.000000 0.000000 0.000000
|
|
467
|
+
-1.000000 0.000000 0.000000
|
|
468
|
+
-1.000000 0.000000 0.000000
|
|
469
|
+
-1.000000 0.000000 0.000000
|
|
470
|
+
-1.000000 0.000000 0.000000
|
|
471
|
+
1.000000 0.000000 0.000000
|
|
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.000000 0.000000
|
|
479
|
+
1.000000 0.000000 0.000000
|
|
480
|
+
1.000000 0.000000 0.000000
|
|
481
|
+
1.000000 0.000000 0.000000
|
|
482
|
+
1.000000 0.000000 0.000000
|
|
483
|
+
1.000000 0.000000 0.000000
|
|
484
|
+
1.000000 0.000000 0.000000
|
|
485
|
+
1.000000 0.000000 0.000000
|
|
486
|
+
0.999921 -0.012275 -0.002755
|
|
487
|
+
0.999921 -0.012275 -0.002755
|
|
488
|
+
0.999921 -0.012275 -0.002755
|
|
489
|
+
-0.000000 0.380957 0.924593
|
|
490
|
+
-0.000000 0.380957 0.924593
|
|
491
|
+
-0.000000 0.380957 0.924593
|
|
492
|
+
0.000000 0.380957 0.924593
|
|
493
|
+
0.000000 0.380957 0.924593
|
|
494
|
+
0.000000 0.380957 0.924593
|
|
495
|
+
0.000000 0.924009 0.382369
|
|
496
|
+
0.000000 0.924010 0.382370
|
|
497
|
+
0.000000 0.924009 0.382369
|
|
498
|
+
0.000000 0.924009 0.382370
|
|
499
|
+
0.000000 0.924009 0.382370
|
|
500
|
+
0.000000 0.924009 0.382370
|
|
501
|
+
0.000000 0.923507 -0.383582
|
|
502
|
+
0.000000 0.923507 -0.383582
|
|
503
|
+
0.000000 0.923507 -0.383582
|
|
504
|
+
0.000000 0.923507 -0.383582
|
|
505
|
+
0.000000 0.923507 -0.383582
|
|
506
|
+
0.000000 0.923507 -0.383582
|
|
507
|
+
0.000000 0.383885 -0.923381
|
|
508
|
+
0.000000 0.383885 -0.923381
|
|
509
|
+
0.000000 0.383885 -0.923381
|
|
510
|
+
0.000000 0.383885 -0.923381
|
|
511
|
+
0.000000 0.383885 -0.923381
|
|
512
|
+
0.000000 0.383885 -0.923381
|
|
513
|
+
-0.000000 -0.383873 -0.923386
|
|
514
|
+
-0.000000 -0.383873 -0.923386
|
|
515
|
+
-0.000000 -0.383873 -0.923386
|
|
516
|
+
-0.000000 -0.383873 -0.923386
|
|
517
|
+
-0.000000 -0.383873 -0.923386
|
|
518
|
+
-0.000000 -0.383873 -0.923386
|
|
519
|
+
-0.000001 -0.923519 -0.383552
|
|
520
|
+
-0.000001 -0.923519 -0.383552
|
|
521
|
+
-0.000001 -0.923519 -0.383552
|
|
522
|
+
0.000000 -0.923520 -0.383551
|
|
523
|
+
0.000000 -0.923520 -0.383551
|
|
524
|
+
0.000000 -0.923520 -0.383551
|
|
525
|
+
0.000000 -0.924022 0.382339
|
|
526
|
+
0.000000 -0.924022 0.382339
|
|
527
|
+
0.000000 -0.924022 0.382339
|
|
528
|
+
0.000000 -0.924022 0.382339
|
|
529
|
+
0.000000 -0.924022 0.382339
|
|
530
|
+
0.000000 -0.924022 0.382339
|
|
531
|
+
0.000000 -0.380945 0.924598
|
|
532
|
+
0.000000 -0.380945 0.924598
|
|
533
|
+
0.000000 -0.380945 0.924598
|
|
534
|
+
0.000000 -0.380945 0.924598
|
|
535
|
+
0.000000 -0.380945 0.924598
|
|
536
|
+
0.000000 -0.380945 0.924598
|
|
537
|
+
0.742355 0.255930 0.619200
|
|
538
|
+
0.742355 0.255930 0.619200
|
|
539
|
+
0.742355 0.255930 0.619200
|
|
540
|
+
0.736671 0.255985 0.625930
|
|
541
|
+
0.736671 0.255985 0.625930
|
|
542
|
+
0.736670 0.255985 0.625930
|
|
543
|
+
0.740325 0.620979 0.257496
|
|
544
|
+
0.740325 0.620979 0.257496
|
|
545
|
+
0.740325 0.620979 0.257496
|
|
546
|
+
0.741406 0.620062 0.256592
|
|
547
|
+
0.741406 0.620062 0.256592
|
|
548
|
+
0.741406 0.620062 0.256592
|
|
549
|
+
0.741307 0.619979 -0.257082
|
|
550
|
+
0.741307 0.619979 -0.257081
|
|
551
|
+
0.741307 0.619979 -0.257081
|
|
552
|
+
0.742187 0.618928 -0.257075
|
|
553
|
+
0.742187 0.618928 -0.257075
|
|
554
|
+
0.742187 0.618928 -0.257075
|
|
555
|
+
0.741180 0.254798 -0.621072
|
|
556
|
+
0.741180 0.254798 -0.621072
|
|
557
|
+
0.741180 0.254798 -0.621072
|
|
558
|
+
0.738115 0.257361 -0.623660
|
|
559
|
+
0.738115 0.257361 -0.623660
|
|
560
|
+
0.738115 0.257361 -0.623660
|
|
561
|
+
0.738399 -0.255964 -0.623899
|
|
562
|
+
0.738399 -0.255964 -0.623899
|
|
563
|
+
0.738399 -0.255964 -0.623899
|
|
564
|
+
0.741460 -0.255933 -0.620270
|
|
565
|
+
0.741460 -0.255933 -0.620270
|
|
566
|
+
0.741460 -0.255933 -0.620270
|
|
567
|
+
0.742103 -0.619166 -0.256743
|
|
568
|
+
0.742103 -0.619166 -0.256743
|
|
569
|
+
0.742103 -0.619166 -0.256743
|
|
570
|
+
0.741269 -0.619873 -0.257443
|
|
571
|
+
0.741269 -0.619873 -0.257443
|
|
572
|
+
0.741269 -0.619873 -0.257443
|
|
573
|
+
0.741347 -0.619938 0.257063
|
|
574
|
+
0.741347 -0.619938 0.257063
|
|
575
|
+
0.741347 -0.619938 0.257063
|
|
576
|
+
0.740219 -0.621281 0.257071
|
|
577
|
+
0.740219 -0.621281 0.257071
|
|
578
|
+
0.740219 -0.621281 0.257071
|
|
579
|
+
0.737211 -0.258106 0.624420
|
|
580
|
+
0.737211 -0.258106 0.624420
|
|
581
|
+
0.737211 -0.258106 0.624420
|
|
582
|
+
0.742874 -0.253365 0.619633
|
|
583
|
+
0.742874 -0.253365 0.619633
|
|
584
|
+
0.742874 -0.253365 0.619633
|
|
585
|
+
0.000000 0.384768 0.923014
|
|
586
|
+
0.000000 0.384768 0.923014
|
|
587
|
+
0.000000 0.384768 0.923014
|
|
588
|
+
-0.000531 0.384051 0.923312
|
|
589
|
+
-0.000531 0.384051 0.923312
|
|
590
|
+
-0.000531 0.384051 0.923312
|
|
591
|
+
-0.001276 0.923732 0.383036
|
|
592
|
+
-0.001276 0.923732 0.383036
|
|
593
|
+
-0.001276 0.923732 0.383036
|
|
594
|
+
-0.001276 0.923732 0.383036
|
|
595
|
+
-0.001276 0.923732 0.383036
|
|
596
|
+
-0.001276 0.923732 0.383036
|
|
597
|
+
-0.001276 0.923733 -0.383036
|
|
598
|
+
-0.001276 0.923733 -0.383036
|
|
599
|
+
-0.001276 0.923733 -0.383036
|
|
600
|
+
-0.001276 0.923732 -0.383036
|
|
601
|
+
-0.001276 0.923732 -0.383036
|
|
602
|
+
-0.001276 0.923732 -0.383036
|
|
603
|
+
-0.000528 0.382335 -0.924024
|
|
604
|
+
-0.000528 0.382335 -0.924024
|
|
605
|
+
-0.000528 0.382335 -0.924024
|
|
606
|
+
-0.000000 0.381620 -0.924319
|
|
607
|
+
-0.000000 0.381620 -0.924319
|
|
608
|
+
-0.000000 0.381620 -0.924319
|
|
609
|
+
0.000000 -0.382325 -0.924028
|
|
610
|
+
0.000000 -0.382325 -0.924028
|
|
611
|
+
0.000000 -0.382325 -0.924028
|
|
612
|
+
-0.000527 -0.381612 -0.924323
|
|
613
|
+
-0.000527 -0.381612 -0.924323
|
|
614
|
+
-0.000527 -0.381611 -0.924323
|
|
615
|
+
-0.001275 -0.923733 -0.383035
|
|
616
|
+
-0.001275 -0.923733 -0.383035
|
|
617
|
+
-0.001275 -0.923733 -0.383035
|
|
618
|
+
-0.001275 -0.923733 -0.383035
|
|
619
|
+
-0.001275 -0.923733 -0.383035
|
|
620
|
+
-0.001275 -0.923733 -0.383035
|
|
621
|
+
-0.001275 -0.923733 0.383035
|
|
622
|
+
-0.001275 -0.923733 0.383035
|
|
623
|
+
-0.001275 -0.923733 0.383035
|
|
624
|
+
-0.001275 -0.923733 0.383035
|
|
625
|
+
-0.001275 -0.923733 0.383035
|
|
626
|
+
-0.001275 -0.923733 0.383035
|
|
627
|
+
-0.000531 -0.384757 0.923018
|
|
628
|
+
-0.000531 -0.384757 0.923018
|
|
629
|
+
-0.000531 -0.384757 0.923018
|
|
630
|
+
-0.000000 -0.384040 0.923316
|
|
631
|
+
-0.000000 -0.384040 0.923316
|
|
632
|
+
-0.000000 -0.384040 0.923316
|
|
633
|
+
0.999997 0.001842 -0.001836
|
|
634
|
+
0.999997 0.001842 -0.001836
|
|
635
|
+
0.999997 0.001842 -0.001836
|
|
636
|
+
0.999991 0.004249 -0.000000
|
|
637
|
+
0.999991 0.004249 -0.000000
|
|
638
|
+
0.999991 0.004249 -0.000000
|
|
639
|
+
1.000000 -0.000001 0.000000
|
|
640
|
+
1.000000 -0.000001 0.000000
|
|
641
|
+
1.000000 -0.000001 0.000000
|
|
642
|
+
1.000000 0.000000 0.000000
|
|
643
|
+
1.000000 0.000000 0.000000
|
|
644
|
+
1.000000 0.000000 0.000000
|
|
645
|
+
1.000000 -0.000000 -0.000000
|
|
646
|
+
1.000000 -0.000000 -0.000000
|
|
647
|
+
1.000000 -0.000000 -0.000000
|
|
648
|
+
1.000000 -0.000001 0.000000
|
|
649
|
+
1.000000 -0.000001 0.000000
|
|
650
|
+
1.000000 -0.000001 0.000000
|
|
651
|
+
0.999997 0.002599 0.000000
|
|
652
|
+
0.999997 0.002599 0.000000
|
|
653
|
+
0.999997 0.002599 0.000000
|
|
654
|
+
0.999991 0.003011 0.003001
|
|
655
|
+
0.999991 0.003011 0.003001
|
|
656
|
+
0.999991 0.003011 0.003001
|
|
657
|
+
0.999997 -0.001838 0.001831
|
|
658
|
+
0.999997 -0.001838 0.001831
|
|
659
|
+
0.999997 -0.001838 0.001831
|
|
660
|
+
0.999991 -0.004250 -0.000000
|
|
661
|
+
0.999991 -0.004250 -0.000000
|
|
662
|
+
0.999991 -0.004250 -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
|
+
1.000000 0.000000 0.000000
|
|
668
|
+
1.000000 0.000000 0.000000
|
|
669
|
+
1.000000 0.000000 0.000000
|
|
670
|
+
1.000000 0.000000 0.000000
|
|
671
|
+
1.000000 0.000000 0.000000
|
|
672
|
+
1.000000 0.000000 0.000000
|
|
673
|
+
1.000000 0.000000 0.000000
|
|
674
|
+
1.000000 0.000000 0.000000
|
|
675
|
+
0.999997 -0.002599 0.000000
|
|
676
|
+
0.999997 -0.002599 0.000000
|
|
677
|
+
0.999997 -0.002599 0.000000
|
|
678
|
+
0.999991 -0.003011 -0.003001
|
|
679
|
+
0.999991 -0.003011 -0.003001
|
|
680
|
+
0.999991 -0.003011 -0.003001
|
|
681
|
+
0.002380 0.381534 0.924352
|
|
682
|
+
0.002380 0.381534 0.924352
|
|
683
|
+
0.002380 0.381534 0.924352
|
|
684
|
+
-0.000001 0.382936 0.923775
|
|
685
|
+
-0.000001 0.382936 0.923775
|
|
686
|
+
-0.000001 0.382936 0.923775
|
|
687
|
+
0.005685 0.924783 0.380451
|
|
688
|
+
0.005685 0.924784 0.380451
|
|
689
|
+
0.005685 0.924784 0.380451
|
|
690
|
+
0.005768 0.924763 0.380500
|
|
691
|
+
0.005768 0.924763 0.380500
|
|
692
|
+
0.005768 0.924763 0.380500
|
|
693
|
+
0.005762 0.923966 -0.382432
|
|
694
|
+
0.005762 0.923966 -0.382432
|
|
695
|
+
0.005762 0.923966 -0.382432
|
|
696
|
+
0.005679 0.923946 -0.382481
|
|
697
|
+
0.005679 0.923946 -0.382481
|
|
698
|
+
0.005679 0.923946 -0.382481
|
|
699
|
+
-0.000001 0.381525 -0.924358
|
|
700
|
+
-0.000001 0.381525 -0.924358
|
|
701
|
+
-0.000001 0.381525 -0.924358
|
|
702
|
+
0.002388 0.382934 -0.923773
|
|
703
|
+
0.002388 0.382934 -0.923773
|
|
704
|
+
0.002388 0.382934 -0.923773
|
|
705
|
+
0.002381 -0.381514 -0.924360
|
|
706
|
+
0.002381 -0.381514 -0.924360
|
|
707
|
+
0.002381 -0.381514 -0.924360
|
|
708
|
+
0.000001 -0.382916 -0.923783
|
|
709
|
+
0.000001 -0.382917 -0.923783
|
|
710
|
+
0.000001 -0.382917 -0.923783
|
|
711
|
+
0.000002 -0.923981 -0.382437
|
|
712
|
+
0.000002 -0.923981 -0.382437
|
|
713
|
+
0.000002 -0.923981 -0.382437
|
|
714
|
+
0.005758 -0.922557 -0.385818
|
|
715
|
+
0.005758 -0.922557 -0.385818
|
|
716
|
+
0.005758 -0.922557 -0.385818
|
|
717
|
+
0.005768 -0.924783 0.380451
|
|
718
|
+
0.005768 -0.924783 0.380451
|
|
719
|
+
0.005768 -0.924783 0.380451
|
|
720
|
+
0.000002 -0.923395 0.383851
|
|
721
|
+
0.000002 -0.923395 0.383851
|
|
722
|
+
0.000002 -0.923395 0.383851
|
|
723
|
+
0.000001 -0.381507 0.924366
|
|
724
|
+
0.000001 -0.381507 0.924366
|
|
725
|
+
0.000001 -0.381507 0.924366
|
|
726
|
+
0.002388 -0.382916 0.923780
|
|
727
|
+
0.002388 -0.382916 0.923780
|
|
728
|
+
0.002388 -0.382916 0.923780
|
|
729
|
+
0.999995 -0.003051 0.000000
|
|
730
|
+
0.999995 -0.003051 0.000000
|
|
731
|
+
0.999995 -0.003051 0.000000
|
|
732
|
+
0.999984 0.002155 -0.005198
|
|
733
|
+
0.999984 0.002155 -0.005198
|
|
734
|
+
0.999984 0.002155 -0.005198
|
|
735
|
+
0.999984 0.002170 0.005236
|
|
736
|
+
0.999984 0.002170 0.005236
|
|
737
|
+
0.999984 0.002170 0.005236
|
|
738
|
+
1.000000 0.000000 0.000000
|
|
739
|
+
1.000000 0.000000 0.000000
|
|
740
|
+
1.000000 0.000000 0.000000
|
|
741
|
+
1.000000 0.000000 0.000000
|
|
742
|
+
1.000000 0.000000 0.000000
|
|
743
|
+
1.000000 0.000000 0.000000
|
|
744
|
+
1.000000 0.000000 0.000000
|
|
745
|
+
1.000000 0.000000 0.000000
|
|
746
|
+
1.000000 0.000000 0.000000
|
|
747
|
+
-1.000000 0.000001 0.000000
|
|
748
|
+
-1.000000 0.000001 0.000000
|
|
749
|
+
-1.000000 0.000001 0.000000
|
|
750
|
+
-1.000000 0.000002 0.000006
|
|
751
|
+
-1.000000 0.000002 0.000006
|
|
752
|
+
-1.000000 0.000002 0.000006
|
|
753
|
+
-1.000000 0.000006 0.000002
|
|
754
|
+
-1.000000 0.000006 0.000002
|
|
755
|
+
-1.000000 0.000006 0.000002
|
|
756
|
+
-0.999872 -0.013751 -0.008171
|
|
757
|
+
-0.999872 -0.013751 -0.008171
|
|
758
|
+
-0.999872 -0.013751 -0.008171
|
|
759
|
+
-0.999889 -0.013751 0.005702
|
|
760
|
+
-0.999889 -0.013751 0.005702
|
|
761
|
+
-0.999889 -0.013751 0.005702
|
|
762
|
+
-0.999997 0.001760 0.001741
|
|
763
|
+
-0.999997 0.001760 0.001741
|
|
764
|
+
-0.999997 0.001760 0.001741
|
|
765
|
+
-1.000000 0.000003 -0.000005
|
|
766
|
+
-1.000000 0.000003 -0.000005
|
|
767
|
+
-1.000000 0.000003 -0.000005
|
|
768
|
+
-1.000000 0.000000 0.000000
|
|
769
|
+
-1.000000 0.000000 0.000000
|
|
770
|
+
-1.000000 0.000000 0.000000
|
|
771
|
+
-1.000000 -0.000001 0.000000
|
|
772
|
+
-1.000000 -0.000001 0.000000
|
|
773
|
+
-1.000000 -0.000001 0.000000
|
|
774
|
+
-1.000000 -0.000002 -0.000006
|
|
775
|
+
-1.000000 -0.000002 -0.000006
|
|
776
|
+
-1.000000 -0.000002 -0.000006
|
|
777
|
+
-1.000000 -0.000006 -0.000002
|
|
778
|
+
-1.000000 -0.000006 -0.000002
|
|
779
|
+
-1.000000 -0.000006 -0.000002
|
|
780
|
+
-0.999872 0.013750 0.008200
|
|
781
|
+
-0.999872 0.013750 0.008200
|
|
782
|
+
-0.999872 0.013750 0.008200
|
|
783
|
+
-0.999889 0.013751 -0.005702
|
|
784
|
+
-0.999889 0.013751 -0.005702
|
|
785
|
+
-0.999889 0.013751 -0.005702
|
|
786
|
+
-0.999997 -0.001723 -0.001751
|
|
787
|
+
-0.999997 -0.001723 -0.001751
|
|
788
|
+
-0.999997 -0.001723 -0.001751
|
|
789
|
+
-1.000000 -0.000003 0.000005
|
|
790
|
+
-1.000000 -0.000003 0.000005
|
|
791
|
+
-1.000000 -0.000003 0.000005
|
|
792
|
+
-1.000000 0.000000 0.000000
|
|
793
|
+
-1.000000 0.000000 0.000000
|
|
794
|
+
-1.000000 0.000000 0.000000
|
|
795
|
+
0.000000 -0.382924 -0.923780
|
|
796
|
+
0.000000 -0.382924 -0.923780
|
|
797
|
+
0.000000 -0.382924 -0.923780
|
|
798
|
+
0.000000 -0.382923 -0.923780
|
|
799
|
+
0.000000 -0.382923 -0.923780
|
|
800
|
+
0.000000 -0.382923 -0.923780
|
|
801
|
+
0.000001 -0.923645 -0.383250
|
|
802
|
+
0.000001 -0.923645 -0.383250
|
|
803
|
+
0.000001 -0.923645 -0.383250
|
|
804
|
+
0.000001 -0.923645 -0.383250
|
|
805
|
+
0.000001 -0.923645 -0.383250
|
|
806
|
+
0.000001 -0.923645 -0.383250
|
|
807
|
+
0.000001 -0.923172 0.384387
|
|
808
|
+
0.000001 -0.923172 0.384387
|
|
809
|
+
0.000001 -0.923172 0.384387
|
|
810
|
+
0.000000 -0.923172 0.384388
|
|
811
|
+
0.000000 -0.923172 0.384388
|
|
812
|
+
0.000000 -0.923172 0.384388
|
|
813
|
+
0.000000 -0.382924 0.923780
|
|
814
|
+
0.000000 -0.382924 0.923780
|
|
815
|
+
0.000000 -0.382924 0.923780
|
|
816
|
+
0.000000 -0.382924 0.923780
|
|
817
|
+
0.000000 -0.382924 0.923780
|
|
818
|
+
0.000000 -0.382924 0.923780
|
|
819
|
+
-0.000000 0.382913 0.923784
|
|
820
|
+
-0.000000 0.382913 0.923784
|
|
821
|
+
-0.000000 0.382913 0.923784
|
|
822
|
+
0.000593 0.382105 0.924119
|
|
823
|
+
0.000593 0.382105 0.924119
|
|
824
|
+
0.000593 0.382105 0.924119
|
|
825
|
+
0.001433 0.923172 0.384384
|
|
826
|
+
0.001433 0.923172 0.384384
|
|
827
|
+
0.001433 0.923172 0.384384
|
|
828
|
+
0.000000 0.923981 0.382438
|
|
829
|
+
0.000000 0.923981 0.382438
|
|
830
|
+
0.000000 0.923981 0.382438
|
|
831
|
+
0.000000 0.923645 -0.383249
|
|
832
|
+
0.000000 0.923645 -0.383249
|
|
833
|
+
0.000000 0.923645 -0.383249
|
|
834
|
+
0.001435 0.924449 -0.381303
|
|
835
|
+
0.001435 0.924449 -0.381303
|
|
836
|
+
0.001435 0.924449 -0.381303
|
|
837
|
+
0.000594 0.382913 -0.923784
|
|
838
|
+
0.000594 0.382913 -0.923784
|
|
839
|
+
0.000594 0.382913 -0.923784
|
|
840
|
+
0.000000 0.382106 -0.924118
|
|
841
|
+
0.000000 0.382106 -0.924118
|
|
842
|
+
0.000000 0.382106 -0.924118
|
|
843
|
+
-0.999999 0.001235 0.000000
|
|
844
|
+
-0.999999 0.001235 0.000000
|
|
845
|
+
-0.999999 0.001235 0.000000
|
|
846
|
+
-0.999982 -0.005940 0.000000
|
|
847
|
+
-0.999982 -0.005940 0.000000
|
|
848
|
+
-0.999982 -0.005940 0.000000
|
|
849
|
+
-0.999995 0.001235 -0.002979
|
|
850
|
+
-0.999995 0.001235 -0.002979
|
|
851
|
+
-0.999995 0.001235 -0.002979
|
|
852
|
+
-0.999999 0.001235 -0.000000
|
|
853
|
+
-0.999999 0.001235 -0.000000
|
|
854
|
+
-0.999999 0.001235 -0.000000
|
|
855
|
+
-1.000000 0.000000 0.000000
|
|
856
|
+
-1.000000 0.000000 0.000000
|
|
857
|
+
-1.000000 0.000000 0.000000
|
|
858
|
+
-0.999995 0.001235 0.002979
|
|
859
|
+
-0.999995 0.001235 0.002979
|
|
860
|
+
-0.999995 0.001235 0.002979
|
|
861
|
+
</float_array>
|
|
862
|
+
<technique_common>
|
|
863
|
+
<accessor source="#drc_r_sh_ry-Normal0-array" count="666" stride="3">
|
|
864
|
+
<param name="X" type="float"/>
|
|
865
|
+
<param name="Y" type="float"/>
|
|
866
|
+
<param name="Z" type="float"/>
|
|
867
|
+
</accessor>
|
|
868
|
+
</technique_common>
|
|
869
|
+
</source>
|
|
870
|
+
<source id="drc_r_sh_ry-UV0">
|
|
871
|
+
<float_array id="drc_r_sh_ry-UV0-array" count="496">
|
|
872
|
+
0.729686 0.626542
|
|
873
|
+
0.735422 0.585531
|
|
874
|
+
0.708022 0.558482
|
|
875
|
+
0.722757 0.574617
|
|
876
|
+
0.719787 0.575813
|
|
877
|
+
0.706730 0.561498
|
|
878
|
+
0.686627 0.557887
|
|
879
|
+
0.687759 0.560982
|
|
880
|
+
0.722199 0.596871
|
|
881
|
+
0.719319 0.595538
|
|
882
|
+
0.671080 0.573200
|
|
883
|
+
0.673960 0.574533
|
|
884
|
+
0.706653 0.612185
|
|
885
|
+
0.705496 0.609148
|
|
886
|
+
0.670523 0.595455
|
|
887
|
+
0.673468 0.594318
|
|
888
|
+
0.685232 0.611648
|
|
889
|
+
0.686524 0.608632
|
|
890
|
+
0.734669 0.537249
|
|
891
|
+
0.741067 0.543995
|
|
892
|
+
0.741003 0.553463
|
|
893
|
+
0.734497 0.560163
|
|
894
|
+
0.725384 0.560099
|
|
895
|
+
0.718985 0.553352
|
|
896
|
+
0.719036 0.543819
|
|
897
|
+
0.725555 0.537185
|
|
898
|
+
0.509840 0.495844
|
|
899
|
+
0.498957 0.495759
|
|
900
|
+
0.498982 0.488578
|
|
901
|
+
0.509827 0.488619
|
|
902
|
+
0.520677 0.495854
|
|
903
|
+
0.520686 0.488674
|
|
904
|
+
0.531569 0.495873
|
|
905
|
+
0.531601 0.488647
|
|
906
|
+
0.542448 0.495823
|
|
907
|
+
0.542451 0.488642
|
|
908
|
+
0.553329 0.495880
|
|
909
|
+
0.553298 0.488654
|
|
910
|
+
0.564222 0.495862
|
|
911
|
+
0.564197 0.488636
|
|
912
|
+
0.575059 0.495799
|
|
913
|
+
0.575038 0.488573
|
|
914
|
+
0.585883 0.488480
|
|
915
|
+
0.585941 0.495661
|
|
916
|
+
0.688140 0.562900
|
|
917
|
+
0.705952 0.563360
|
|
918
|
+
0.702251 0.571999
|
|
919
|
+
0.691371 0.571689
|
|
920
|
+
0.675226 0.575612
|
|
921
|
+
0.683509 0.579446
|
|
922
|
+
0.718200 0.576809
|
|
923
|
+
0.709753 0.580195
|
|
924
|
+
0.674752 0.594152
|
|
925
|
+
0.683198 0.590765
|
|
926
|
+
0.717751 0.595290
|
|
927
|
+
0.709467 0.591456
|
|
928
|
+
0.687026 0.607542
|
|
929
|
+
0.690701 0.598961
|
|
930
|
+
0.704812 0.608061
|
|
931
|
+
0.701581 0.599271
|
|
932
|
+
0.438360 0.642395
|
|
933
|
+
0.420543 0.642278
|
|
934
|
+
0.420786 0.613377
|
|
935
|
+
0.438602 0.613582
|
|
936
|
+
0.456147 0.642556
|
|
937
|
+
0.456389 0.613744
|
|
938
|
+
0.473991 0.642718
|
|
939
|
+
0.474234 0.613905
|
|
940
|
+
0.491784 0.642924
|
|
941
|
+
0.492027 0.614023
|
|
942
|
+
0.509578 0.643040
|
|
943
|
+
0.509821 0.614228
|
|
944
|
+
0.527421 0.643203
|
|
945
|
+
0.527665 0.614391
|
|
946
|
+
0.545209 0.643366
|
|
947
|
+
0.545452 0.614553
|
|
948
|
+
0.563025 0.643572
|
|
949
|
+
0.563268 0.614671
|
|
950
|
+
0.630013 0.555950
|
|
951
|
+
0.652459 0.554954
|
|
952
|
+
0.650380 0.560882
|
|
953
|
+
0.632597 0.561707
|
|
954
|
+
0.669023 0.570728
|
|
955
|
+
0.663481 0.573406
|
|
956
|
+
0.614835 0.573132
|
|
957
|
+
0.620573 0.575306
|
|
958
|
+
0.670003 0.594031
|
|
959
|
+
0.664265 0.591858
|
|
960
|
+
0.615809 0.596439
|
|
961
|
+
0.621337 0.593814
|
|
962
|
+
0.654827 0.611219
|
|
963
|
+
0.652221 0.605513
|
|
964
|
+
0.632363 0.612258
|
|
965
|
+
0.634459 0.606282
|
|
966
|
+
0.569178 0.577982
|
|
967
|
+
0.590582 0.577933
|
|
968
|
+
0.590651 0.610516
|
|
969
|
+
0.569208 0.610609
|
|
970
|
+
0.547757 0.578015
|
|
971
|
+
0.547789 0.610643
|
|
972
|
+
0.526336 0.578028
|
|
973
|
+
0.526371 0.610656
|
|
974
|
+
0.504908 0.578026
|
|
975
|
+
0.504905 0.610608
|
|
976
|
+
0.483479 0.578025
|
|
977
|
+
0.483440 0.610653
|
|
978
|
+
0.462056 0.578012
|
|
979
|
+
0.462024 0.610640
|
|
980
|
+
0.440634 0.577979
|
|
981
|
+
0.440606 0.610607
|
|
982
|
+
0.419230 0.577932
|
|
983
|
+
0.419164 0.610516
|
|
984
|
+
0.622223 0.575775
|
|
985
|
+
0.633953 0.563089
|
|
986
|
+
0.650829 0.562783
|
|
987
|
+
0.662990 0.574938
|
|
988
|
+
0.663326 0.592508
|
|
989
|
+
0.651630 0.605135
|
|
990
|
+
0.634719 0.605501
|
|
991
|
+
0.622543 0.593307
|
|
992
|
+
0.565306 0.643400
|
|
993
|
+
0.565333 0.614317
|
|
994
|
+
0.584312 0.614336
|
|
995
|
+
0.584325 0.643373
|
|
996
|
+
0.603298 0.614384
|
|
997
|
+
0.603292 0.643376
|
|
998
|
+
0.622341 0.614344
|
|
999
|
+
0.622316 0.643381
|
|
1000
|
+
0.641321 0.614333
|
|
1001
|
+
0.641334 0.643416
|
|
1002
|
+
0.660300 0.614324
|
|
1003
|
+
0.660311 0.643407
|
|
1004
|
+
0.679343 0.614362
|
|
1005
|
+
0.679352 0.643354
|
|
1006
|
+
0.698329 0.614312
|
|
1007
|
+
0.698336 0.643394
|
|
1008
|
+
0.717307 0.614307
|
|
1009
|
+
0.717314 0.643390
|
|
1010
|
+
0.734991 0.603593
|
|
1011
|
+
0.729985 0.603438
|
|
1012
|
+
0.731011 0.563315
|
|
1013
|
+
0.735989 0.563448
|
|
1014
|
+
0.730417 0.585372
|
|
1015
|
+
0.741519 0.585694
|
|
1016
|
+
0.741057 0.603724
|
|
1017
|
+
0.723228 0.603288
|
|
1018
|
+
0.723657 0.585222
|
|
1019
|
+
0.742078 0.563621
|
|
1020
|
+
0.740945 0.608182
|
|
1021
|
+
0.734879 0.608054
|
|
1022
|
+
0.722602 0.642004
|
|
1023
|
+
0.722945 0.626436
|
|
1024
|
+
0.729310 0.642133
|
|
1025
|
+
0.729219 0.645985
|
|
1026
|
+
0.722506 0.645852
|
|
1027
|
+
0.723369 0.607382
|
|
1028
|
+
0.730107 0.607483
|
|
1029
|
+
0.734845 0.642196
|
|
1030
|
+
0.735618 0.607565
|
|
1031
|
+
0.735225 0.626603
|
|
1032
|
+
0.742699 0.626750
|
|
1033
|
+
0.742316 0.642341
|
|
1034
|
+
0.422141 0.573735
|
|
1035
|
+
0.415145 0.573689
|
|
1036
|
+
0.415319 0.544938
|
|
1037
|
+
0.422312 0.544984
|
|
1038
|
+
0.450592 0.545163
|
|
1039
|
+
0.450429 0.573914
|
|
1040
|
+
0.485216 0.545365
|
|
1041
|
+
0.485067 0.574117
|
|
1042
|
+
0.495138 0.545417
|
|
1043
|
+
0.495007 0.574168
|
|
1044
|
+
0.503133 0.574205
|
|
1045
|
+
0.503248 0.545454
|
|
1046
|
+
0.537727 0.574344
|
|
1047
|
+
0.537829 0.545593
|
|
1048
|
+
0.548746 0.574383
|
|
1049
|
+
0.548832 0.545631
|
|
1050
|
+
0.577078 0.574467
|
|
1051
|
+
0.577153 0.545715
|
|
1052
|
+
0.588159 0.545744
|
|
1053
|
+
0.588094 0.574495
|
|
1054
|
+
0.596317 0.545762
|
|
1055
|
+
0.596259 0.574514
|
|
1056
|
+
0.603308 0.545776
|
|
1057
|
+
0.603258 0.574527
|
|
1058
|
+
0.613149 0.574545
|
|
1059
|
+
0.613195 0.545793
|
|
1060
|
+
0.712671 0.527312
|
|
1061
|
+
0.717629 0.532812
|
|
1062
|
+
0.717721 0.550034
|
|
1063
|
+
0.711442 0.556425
|
|
1064
|
+
0.697261 0.556504
|
|
1065
|
+
0.690141 0.550763
|
|
1066
|
+
0.690044 0.532460
|
|
1067
|
+
0.695638 0.527408
|
|
1068
|
+
0.620549 0.548382
|
|
1069
|
+
0.620002 0.539964
|
|
1070
|
+
0.624483 0.534520
|
|
1071
|
+
0.639656 0.533455
|
|
1072
|
+
0.644723 0.537957
|
|
1073
|
+
0.641208 0.551697
|
|
1074
|
+
0.625303 0.552773
|
|
1075
|
+
0.645298 0.546823
|
|
1076
|
+
0.672034 0.545591
|
|
1077
|
+
0.667289 0.550456
|
|
1078
|
+
0.652082 0.550515
|
|
1079
|
+
0.647239 0.545417
|
|
1080
|
+
0.647210 0.536980
|
|
1081
|
+
0.651651 0.532250
|
|
1082
|
+
0.667590 0.532143
|
|
1083
|
+
0.672004 0.536704
|
|
1084
|
+
0.417544 0.539423
|
|
1085
|
+
0.417537 0.532495
|
|
1086
|
+
0.494486 0.532409
|
|
1087
|
+
0.494493 0.539337
|
|
1088
|
+
0.417520 0.516689
|
|
1089
|
+
0.494470 0.516608
|
|
1090
|
+
0.417513 0.509523
|
|
1091
|
+
0.494462 0.509447
|
|
1092
|
+
0.417505 0.501087
|
|
1093
|
+
0.494454 0.501010
|
|
1094
|
+
0.417455 0.494480
|
|
1095
|
+
0.494491 0.494401
|
|
1096
|
+
0.417482 0.477917
|
|
1097
|
+
0.494431 0.477833
|
|
1098
|
+
0.417474 0.471450
|
|
1099
|
+
0.494424 0.471363
|
|
1100
|
+
0.417465 0.462563
|
|
1101
|
+
0.494415 0.462477
|
|
1102
|
+
0.506390 0.539354
|
|
1103
|
+
0.498988 0.539362
|
|
1104
|
+
0.498946 0.500676
|
|
1105
|
+
0.506347 0.500667
|
|
1106
|
+
0.523979 0.539287
|
|
1107
|
+
0.523934 0.500646
|
|
1108
|
+
0.532981 0.539285
|
|
1109
|
+
0.532936 0.500643
|
|
1110
|
+
0.547058 0.539286
|
|
1111
|
+
0.547102 0.500644
|
|
1112
|
+
0.555897 0.539289
|
|
1113
|
+
0.555879 0.500647
|
|
1114
|
+
0.572447 0.539326
|
|
1115
|
+
0.572429 0.500639
|
|
1116
|
+
0.579661 0.539278
|
|
1117
|
+
0.579671 0.500637
|
|
1118
|
+
0.596718 0.539307
|
|
1119
|
+
0.596684 0.500620
|
|
1120
|
+
</float_array>
|
|
1121
|
+
<technique_common>
|
|
1122
|
+
<accessor source="#drc_r_sh_ry-UV0-array" count="248" stride="2">
|
|
1123
|
+
<param name="S" type="float"/>
|
|
1124
|
+
<param name="T" type="float"/>
|
|
1125
|
+
</accessor>
|
|
1126
|
+
</technique_common>
|
|
1127
|
+
</source>
|
|
1128
|
+
<vertices id="drc_r_sh_ry-VERTEX">
|
|
1129
|
+
<input semantic="POSITION" source="#drc_r_sh_ry-POSITION"/>
|
|
1130
|
+
</vertices>
|
|
1131
|
+
<triangles count="222" material="drc_extremities_diffuse"><input semantic="VERTEX" offset="0" source="#drc_r_sh_ry-VERTEX"/><input semantic="NORMAL" offset="1" source="#drc_r_sh_ry-Normal0"/><input semantic="TEXCOORD" offset="2" set="0" source="#drc_r_sh_ry-UV0"/><p> 2 0 186 3 1 185 0 2 184 0 3 184 1 4 187 2 5 186 6 6 169 7 7 168 4 8 170 4 9 170 5 10 171 6 11 169 9 12 182 0 13 184 3 14 185 3 15 185 8 16 183 9 17 182 8 18 152 3 19 153 2 20 154 2 21 154 10 22 150 8 23 152 10 24 162 2 25 163 1 26 164 1 27 164 11 28 165 10 29 162 11 30 144 1 31 148 0 32 149 0 33 149 9 34 138 11 35 144 14 36 179 15 37 178 12 38 176 12 39 176 13 40 177 14 41 179 8 42 152 10 43 150 16 44 151 16 45 151 17 46 0 8 47 152 10 48 162 11 49 165 18 50 166 18 51 166 16 52 167 10 53 162 11 54 144 9 55 138 19 56 1 19 57 1 18 58 143 11 59 144 20 60 173 21 61 172 5 62 171 5 63 171 4 64 170 20 65 173 20 66 140 4 67 141 19 68 1 19 69 1 22 70 142 20 71 140 23 72 181 24 73 180 9 74 182 9 75 182 8 76 183 23 77 181 23 78 157 8 79 152 17 80 0 17 81 0 25 82 159 23 83 157 22 84 175 25 85 174 21 86 172 21 87 172 20 88 173 22 89 175 17 90 0 16 91 151 6 92 155 6 93 155 5 94 156 17 95 0 16 96 167 18 97 166 7 98 168 7 99 168 6 100 169 16 101 167 18 102 143 19 103 1 4 104 141 4 105 141 7 106 147 18 107 143 22 108 142 19 109 1 9 110 138 9 111 138 24 112 139 22 113 142 25 114 159 17 115 0 5 116 156 5 117 156 21 118 158 25 119 159 15 120 178 14 121 179 24 122 180 24 123 180 23 124 181 15 125 178 12 126 160 15 127 161 23 128 157 23 129 157 25 130 159 12 131 160 13 132 177 12 133 176 25 134 174 25 135 174 22 136 175 13 137 177 14 138 145 13 139 146 22 140 142 22 141 142 24 142 139 14 143 145 28 144 238 29 145 236 26 146 237 26 147 237 27 148 239 28 149 238 31 150 240 28 151 238 27 152 239 27 153 239 30 154 241 31 155 240 33 156 242 31 157 240 30 158 241 30 159 241 32 160 243 33 161 242 35 162 244 33 163 242 32 164 243 32 165 243 34 166 245 35 167 244 37 168 246 35 169 244 34 170 245 34 171 245 36 172 247 37 173 246 39 174 230 37 175 231 36 176 232 36 177 232 38 178 233 39 179 230 41 180 234 39 181 230 38 182 233 38 183 233 40 184 235 41 185 234 29 186 236 41 187 234 40 188 235 40 189 235 26 190 237 29 191 236 44 192 218 45 193 220 42 194 221 42 195 221 43 196 219 44 197 218 47 198 216 44 199 218 43 200 219 43 201 219 46 202 217 47 203 216 49 204 213 47 205 216 46 206 217 46 207 217 48 208 214 49 209 213 51 210 212 49 211 213 48 212 214 48 213 214 50 214 215 51 215 212 53 216 226 51 217 228 50 218 229 50 219 229 52 220 227 53 221 226 55 222 224 53 223 226 52 224 227 52 225 227 54 226 225 55 227 224 57 228 222 55 229 224 54 230 225 54 231 225 56 232 223 57 233 222 45 234 220 57 235 222 56 236 223 56 237 223 42 238 221 45 239 220 38 240 194 34 241 188 26 242 192 26 243 192 40 244 193 38 245 194 38 246 194 36 247 195 34 248 188 30 249 190 26 250 192 34 251 188 34 252 188 32 253 189 30 254 190 27 255 191 26 256 192 30 257 190 54 258 210 50 259 204 42 260 208 42 261 208 56 262 209 54 263 210 54 264 210 52 265 211 50 266 204 46 267 206 42 268 208 50 269 204 50 270 204 48 271 205 46 272 206 43 273 207 42 274 208 46 275 206 47 276 198 55 277 201 45 278 196 45 279 196 44 280 197 47 281 198 51 282 200 55 283 201 47 284 198 47 285 198 49 286 199 51 287 200 51 288 200 53 289 203 55 290 201 45 291 196 55 292 201 57 293 202 60 294 70 61 295 68 58 296 69 58 297 69 59 298 71 60 299 70 63 300 72 60 301 70 59 302 71 59 303 71 62 304 73 63 305 72 65 306 74 63 307 72 62 308 73 62 309 73 64 310 75 65 311 74 67 312 76 65 313 74 64 314 75 64 315 75 66 316 77 67 317 76 69 318 60 67 319 61 66 320 62 66 321 62 68 322 63 69 323 60 71 324 64 69 325 60 68 326 63 68 327 63 70 328 65 71 329 64 73 330 66 71 331 64 70 332 65 70 333 65 72 334 67 73 335 66 61 336 68 73 337 66 72 338 67 72 339 67 58 340 69 61 341 68 74 342 90 75 343 92 61 344 93 61 345 93 60 346 91 74 347 90 76 348 86 74 349 90 60 350 91 60 351 91 63 352 87 76 353 86 77 354 82 76 355 86 63 356 87 63 357 87 65 358 83 77 359 82 78 360 79 77 361 82 65 362 83 65 363 83 67 364 80 78 365 79 79 366 78 78 367 79 67 368 80 67 369 80 69 370 81 79 371 78 80 372 84 79 373 78 69 374 81 69 375 81 71 376 85 80 377 84 81 378 88 80 379 84 71 380 85 71 381 85 73 382 89 81 383 88 75 384 92 81 385 88 73 386 89 73 387 89 61 388 93 75 389 92 82 390 104 83 391 102 75 392 103 75 393 103 74 394 105 82 395 104 84 396 106 82 397 104 74 398 105 74 399 105 76 400 107 84 401 106 85 402 108 84 403 106 76 404 107 76 405 107 77 406 109 85 407 108 86 408 110 85 409 108 77 410 109 77 411 109 78 412 111 86 413 110 87 414 94 86 415 95 78 416 96 78 417 96 79 418 97 87 419 94 88 420 98 87 421 94 79 422 97 79 423 97 80 424 99 88 425 98 89 426 100 88 427 98 80 428 99 80 429 99 81 430 101 89 431 100 83 432 102 89 433 100 81 434 101 81 435 101 75 436 103 83 437 102 91 438 59 59 439 58 58 440 56 58 441 56 90 442 57 91 443 59 92 444 55 62 445 54 59 446 58 59 447 58 91 448 59 92 449 55 93 450 51 64 451 50 62 452 54 62 453 54 92 454 55 93 455 51 94 456 46 66 457 45 64 458 50 64 459 50 93 460 51 94 461 46 95 462 47 68 463 44 66 464 45 66 465 45 94 466 46 95 467 47 96 468 49 70 469 48 68 470 44 68 471 44 95 472 47 96 473 49 97 474 53 72 475 52 70 476 48 70 477 48 96 478 49 97 479 53 90 480 57 58 481 56 72 482 52 72 483 52 97 484 53 90 485 57 99 486 37 91 487 36 90 488 34 90 489 34 98 490 35 99 491 37 100 492 39 92 493 38 91 494 36 91 495 36 99 496 37 100 497 39 101 498 41 93 499 40 92 500 38 92 501 38 100 502 39 101 503 41 102 504 42 94 505 43 93 506 40 93 507 40 101 508 41 102 509 42 103 510 29 95 511 26 94 512 27 94 513 27 102 514 28 103 515 29 104 516 31 96 517 30 95 518 26 95 519 26 103 520 29 104 521 31 105 522 33 97 523 32 96 524 30 96 525 30 104 526 31 105 527 33 98 528 35 90 529 34 97 530 32 97 531 32 105 532 33 98 533 35 104 534 24 102 535 18 98 536 22 98 537 22 105 538 23 104 539 24 104 540 24 103 541 25 102 542 18 100 543 20 98 544 22 102 545 18 102 546 18 101 547 19 100 548 20 99 549 21 98 550 22 100 551 20 107 552 17 83 553 16 82 554 14 82 555 14 106 556 15 107 557 17 106 558 15 82 559 14 84 560 10 84 561 10 108 562 11 106 563 15 108 564 11 84 565 10 85 566 6 85 567 6 109 568 7 108 569 11 109 570 7 85 571 6 86 572 2 86 573 2 110 574 5 109 575 7 110 576 5 86 577 2 87 578 3 87 579 3 111 580 4 110 581 5 111 582 4 87 583 3 88 584 8 88 585 8 112 586 9 111 587 4 112 588 9 88 589 8 89 590 12 89 591 12 113 592 13 112 593 9 113 594 13 89 595 12 83 596 16 83 597 16 107 598 17 113 599 13 115 600 129 107 601 128 106 602 130 106 603 130 114 604 131 115 605 129 114 606 131 106 607 130 108 608 132 108 609 132 116 610 133 114 611 131 116 612 133 108 613 132 109 614 134 109 615 134 117 616 135 116 617 133 117 618 135 109 619 134 110 620 136 110 621 136 118 622 137 117 623 135 118 624 120 110 625 121 111 626 122 111 627 122 119 628 123 118 629 120 119 630 123 111 631 122 112 632 124 112 633 124 120 634 125 119 635 123 120 636 125 112 637 124 113 638 126 113 639 126 121 640 127 120 641 125 121 642 127 113 643 126 107 644 128 107 645 128 115 646 129 121 647 127 117 648 114 119 649 116 114 650 112 114 651 112 116 652 113 117 653 114 117 654 114 118 655 115 119 656 116 121 657 118 114 658 112 119 659 116 119 660 116 120 661 117 121 662 118 115 663 119 114 664 112 121 665 118</p></triangles>
|
|
1132
|
+
</mesh>
|
|
1133
|
+
</geometry>
|
|
1134
|
+
</library_geometries>
|
|
1135
|
+
<library_visual_scenes>
|
|
1136
|
+
<visual_scene id="r_elbow_ry" name="r_elbow_ry">
|
|
1137
|
+
<node name="g27" id="g27" sid="g27"><matrix sid="matrix">1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000</matrix><extra><technique profile="FCOLLADA"><visibility>1.000000</visibility></technique></extra><node name="r_elbow_ry_node" id="r_elbow_ry_node" sid="r_elbow_ry_node"><matrix sid="matrix">1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 1.000000 0.009469 0.000000 0.000000 0.000000 1.000000</matrix><extra><technique profile="FCOLLADA"><visibility>1.000000</visibility></technique></extra><node name="drc_r_sh_ry" id="drc_r_sh_ry" sid="drc_r_sh_ry"><matrix sid="matrix">-1.010853 -0.000000 0.000000 -0.293120 -0.000000 1.010853 -0.000000 -0.334476 0.000000 -0.000000 -1.010853 0.084430 0.000000 0.000000 0.000000 1.000000</matrix><instance_geometry url="#drc_r_sh_ry-lib"><bind_material><technique_common><instance_material symbol="drc_extremities_diffuse" target="#drc_extremities_diffuse"/></technique_common></bind_material></instance_geometry><extra><technique profile="FCOLLADA"><visibility>1.000000</visibility></technique></extra></node></node></node>
|
|
1138
|
+
<extra><technique profile="MAX3D"><frame_rate>30.000000</frame_rate></technique><technique profile="FCOLLADA"><start_time>0.000000</start_time><end_time>3.333333</end_time></technique></extra>
|
|
1139
|
+
</visual_scene>
|
|
1140
|
+
</library_visual_scenes>
|
|
1141
|
+
<scene>
|
|
1142
|
+
<instance_visual_scene url="#r_elbow_ry"></instance_visual_scene>
|
|
1143
|
+
</scene>
|
|
1144
|
+
</COLLADA>
|