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,2326 @@
|
|
|
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:55:42Z</created><keywords></keywords><modified>2013-08-22T19:55:42Z</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="Map #4-image" name="Map #4"><init_from>../materials/textures/drc_torso_head_diffuse.jpg</init_from></image>
|
|
6
|
+
</library_images>
|
|
7
|
+
<library_materials>
|
|
8
|
+
<material id="drc_torso_head_diffuse" name="drc_torso_head_diffuse">
|
|
9
|
+
<instance_effect url="#drc_torso_head_diffuse-fx"/>
|
|
10
|
+
</material>
|
|
11
|
+
</library_materials>
|
|
12
|
+
<library_effects>
|
|
13
|
+
<effect id="drc_torso_head_diffuse-fx" name="drc_torso_head_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="Map #4-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_head_camera-lib" name="drc_head_cameraMesh">
|
|
59
|
+
<mesh>
|
|
60
|
+
<source id="drc_head_camera-POSITION">
|
|
61
|
+
<float_array id="drc_head_camera-POSITION-array" count="1440">
|
|
62
|
+
-0.041643 0.028613 0.097818
|
|
63
|
+
0.017057 -0.027387 0.079218
|
|
64
|
+
0.017057 0.028613 0.097818
|
|
65
|
+
-0.041643 -0.027387 0.079218
|
|
66
|
+
0.017057 0.028613 0.097818
|
|
67
|
+
0.017057 -0.014687 0.040918
|
|
68
|
+
0.017057 0.041313 0.059418
|
|
69
|
+
0.017057 -0.027387 0.079218
|
|
70
|
+
-0.041643 0.028613 0.097818
|
|
71
|
+
0.017057 0.041313 0.059418
|
|
72
|
+
-0.041643 0.041313 0.059418
|
|
73
|
+
0.017057 0.028613 0.097818
|
|
74
|
+
-0.041643 -0.027387 0.079218
|
|
75
|
+
-0.041643 0.041313 0.059418
|
|
76
|
+
-0.041643 -0.014687 0.040918
|
|
77
|
+
-0.041643 0.028613 0.097818
|
|
78
|
+
0.017057 -0.027387 0.079218
|
|
79
|
+
-0.041643 -0.014687 0.040918
|
|
80
|
+
0.017057 -0.014687 0.040918
|
|
81
|
+
-0.041643 -0.027387 0.079218
|
|
82
|
+
0.003657 -0.036187 0.105818
|
|
83
|
+
0.017257 0.006813 0.120118
|
|
84
|
+
0.017257 -0.023287 0.110118
|
|
85
|
+
0.003657 0.019713 0.124418
|
|
86
|
+
-0.027843 -0.036187 0.105818
|
|
87
|
+
-0.027843 0.019713 0.124418
|
|
88
|
+
-0.041543 -0.023287 0.110118
|
|
89
|
+
-0.041543 0.006813 0.120118
|
|
90
|
+
0.017257 -0.029087 0.127718
|
|
91
|
+
-0.027843 -0.041987 0.123418
|
|
92
|
+
0.003657 -0.041987 0.123418
|
|
93
|
+
-0.041543 -0.029087 0.127718
|
|
94
|
+
0.017257 0.001013 0.137618
|
|
95
|
+
-0.041543 0.001013 0.137618
|
|
96
|
+
0.003657 0.013913 0.141918
|
|
97
|
+
-0.027843 0.013913 0.141918
|
|
98
|
+
0.017257 0.001013 0.137618
|
|
99
|
+
0.017257 -0.023287 0.110118
|
|
100
|
+
0.017257 0.006813 0.120118
|
|
101
|
+
0.017257 -0.029087 0.127718
|
|
102
|
+
-0.027843 0.013913 0.141918
|
|
103
|
+
0.003657 0.019713 0.124418
|
|
104
|
+
-0.027843 0.019713 0.124418
|
|
105
|
+
0.003657 0.013913 0.141918
|
|
106
|
+
-0.041543 -0.029087 0.127718
|
|
107
|
+
-0.041543 0.006813 0.120118
|
|
108
|
+
-0.041543 -0.023287 0.110118
|
|
109
|
+
-0.041543 0.001013 0.137618
|
|
110
|
+
0.003657 -0.041987 0.123418
|
|
111
|
+
-0.027843 -0.036187 0.105818
|
|
112
|
+
0.003657 -0.036187 0.105818
|
|
113
|
+
-0.027843 -0.041987 0.123418
|
|
114
|
+
0.003657 0.013913 0.141918
|
|
115
|
+
0.017257 0.006813 0.120118
|
|
116
|
+
0.003657 0.019713 0.124418
|
|
117
|
+
0.017257 0.001013 0.137618
|
|
118
|
+
0.003657 -0.036187 0.105818
|
|
119
|
+
0.017257 -0.029087 0.127718
|
|
120
|
+
0.003657 -0.041987 0.123418
|
|
121
|
+
0.017257 -0.023287 0.110118
|
|
122
|
+
-0.041543 0.001013 0.137618
|
|
123
|
+
-0.027843 0.019713 0.124418
|
|
124
|
+
-0.041543 0.006813 0.120118
|
|
125
|
+
-0.027843 0.013913 0.141918
|
|
126
|
+
-0.027843 -0.041987 0.123418
|
|
127
|
+
-0.041543 -0.023287 0.110118
|
|
128
|
+
-0.027843 -0.036187 0.105818
|
|
129
|
+
-0.041543 -0.029087 0.127718
|
|
130
|
+
-0.032743 0.001713 0.122018
|
|
131
|
+
-0.012343 0.023713 0.092918
|
|
132
|
+
-0.032743 0.012513 0.089218
|
|
133
|
+
-0.012343 0.012913 0.125718
|
|
134
|
+
-0.032743 -0.020687 0.114618
|
|
135
|
+
-0.032743 -0.009787 0.081818
|
|
136
|
+
-0.012343 -0.031787 0.110918
|
|
137
|
+
-0.032743 -0.009787 0.081818
|
|
138
|
+
-0.012343 -0.020987 0.078118
|
|
139
|
+
-0.032743 -0.020687 0.114618
|
|
140
|
+
0.007957 -0.020687 0.114618
|
|
141
|
+
0.007957 -0.009787 0.081818
|
|
142
|
+
0.007957 0.001713 0.122018
|
|
143
|
+
0.007957 0.012513 0.089218
|
|
144
|
+
-0.071643 0.049013 0.053718
|
|
145
|
+
-0.065743 0.060313 0.088518
|
|
146
|
+
-0.065743 0.049013 0.053718
|
|
147
|
+
-0.071643 0.060313 0.088518
|
|
148
|
+
-0.071643 0.049013 0.123218
|
|
149
|
+
-0.043043 0.026013 0.088518
|
|
150
|
+
-0.065743 0.021313 0.073918
|
|
151
|
+
-0.065743 0.026013 0.088518
|
|
152
|
+
-0.043043 0.021313 0.073918
|
|
153
|
+
-0.043043 0.021313 0.073918
|
|
154
|
+
-0.065743 0.008813 0.064818
|
|
155
|
+
-0.065743 0.021313 0.073918
|
|
156
|
+
-0.043043 0.008813 0.064818
|
|
157
|
+
-0.043043 -0.006487 0.064818
|
|
158
|
+
-0.065743 -0.018987 0.073918
|
|
159
|
+
-0.065743 -0.006487 0.064818
|
|
160
|
+
-0.043043 -0.018987 0.073918
|
|
161
|
+
-0.043043 -0.018987 0.073918
|
|
162
|
+
-0.065743 -0.023687 0.088518
|
|
163
|
+
-0.065743 -0.018987 0.073918
|
|
164
|
+
-0.043043 -0.023687 0.088518
|
|
165
|
+
-0.043043 -0.023687 0.088518
|
|
166
|
+
-0.065743 -0.018987 0.103118
|
|
167
|
+
-0.065743 -0.023687 0.088518
|
|
168
|
+
-0.043043 -0.018987 0.103118
|
|
169
|
+
-0.043043 -0.018987 0.103118
|
|
170
|
+
-0.065743 -0.006487 0.112118
|
|
171
|
+
-0.065743 -0.018987 0.103118
|
|
172
|
+
-0.043043 -0.006487 0.112118
|
|
173
|
+
-0.043043 -0.006487 0.112118
|
|
174
|
+
-0.065743 0.008813 0.112118
|
|
175
|
+
-0.065743 -0.006487 0.112118
|
|
176
|
+
-0.043043 0.008813 0.112118
|
|
177
|
+
-0.043043 0.008813 0.112118
|
|
178
|
+
-0.065743 0.021313 0.103118
|
|
179
|
+
-0.065743 0.008813 0.112118
|
|
180
|
+
-0.043043 0.021313 0.103118
|
|
181
|
+
-0.043043 0.021313 0.103118
|
|
182
|
+
-0.065743 0.026013 0.088518
|
|
183
|
+
-0.065743 0.021313 0.103118
|
|
184
|
+
-0.043043 0.026013 0.088518
|
|
185
|
+
-0.043043 0.026013 0.088518
|
|
186
|
+
-0.043043 0.008813 0.064818
|
|
187
|
+
-0.043043 0.021313 0.073918
|
|
188
|
+
-0.043043 -0.006487 0.064818
|
|
189
|
+
-0.043043 0.021313 0.103118
|
|
190
|
+
-0.043043 -0.018987 0.073918
|
|
191
|
+
-0.043043 0.008813 0.112118
|
|
192
|
+
-0.043043 -0.023687 0.088518
|
|
193
|
+
-0.043043 -0.006487 0.112118
|
|
194
|
+
-0.043043 -0.018987 0.103118
|
|
195
|
+
-0.061543 -0.021687 0.080018
|
|
196
|
+
-0.054043 -0.036787 0.078718
|
|
197
|
+
-0.061543 -0.035987 0.083018
|
|
198
|
+
-0.054043 -0.022587 0.075818
|
|
199
|
+
-0.061543 -0.020087 0.088518
|
|
200
|
+
-0.061543 -0.034387 0.091418
|
|
201
|
+
-0.054043 -0.019287 0.092718
|
|
202
|
+
-0.054043 -0.033487 0.095718
|
|
203
|
+
-0.046543 -0.020087 0.088518
|
|
204
|
+
-0.046543 -0.034387 0.091418
|
|
205
|
+
-0.046543 -0.021687 0.080018
|
|
206
|
+
-0.046543 -0.035987 0.083018
|
|
207
|
+
-0.054043 -0.022587 0.075818
|
|
208
|
+
-0.054043 -0.036787 0.078718
|
|
209
|
+
-0.054043 -0.036887 0.081718
|
|
210
|
+
-0.058943 -0.035987 0.084418
|
|
211
|
+
-0.061543 -0.035987 0.083018
|
|
212
|
+
-0.054043 -0.036787 0.078718
|
|
213
|
+
-0.058943 -0.035987 0.084418
|
|
214
|
+
-0.058943 -0.034287 0.090018
|
|
215
|
+
-0.061543 -0.034387 0.091418
|
|
216
|
+
-0.061543 -0.035987 0.083018
|
|
217
|
+
-0.058943 -0.034287 0.090018
|
|
218
|
+
-0.054043 -0.033387 0.092718
|
|
219
|
+
-0.054043 -0.033487 0.095718
|
|
220
|
+
-0.061543 -0.034387 0.091418
|
|
221
|
+
-0.054043 -0.033387 0.092718
|
|
222
|
+
-0.049143 -0.034287 0.090018
|
|
223
|
+
-0.046543 -0.034387 0.091418
|
|
224
|
+
-0.054043 -0.033487 0.095718
|
|
225
|
+
-0.049143 -0.034287 0.090018
|
|
226
|
+
-0.049143 -0.035987 0.084418
|
|
227
|
+
-0.046543 -0.035987 0.083018
|
|
228
|
+
-0.046543 -0.034387 0.091418
|
|
229
|
+
-0.049143 -0.035987 0.084418
|
|
230
|
+
-0.054043 -0.036887 0.081718
|
|
231
|
+
-0.054043 -0.036787 0.078718
|
|
232
|
+
-0.046543 -0.035987 0.083018
|
|
233
|
+
-0.054043 -0.045587 0.085418
|
|
234
|
+
-0.058943 -0.035987 0.084418
|
|
235
|
+
-0.054043 -0.036887 0.081718
|
|
236
|
+
-0.058943 -0.044287 0.088118
|
|
237
|
+
-0.058943 -0.041787 0.093318
|
|
238
|
+
-0.054043 -0.033387 0.092718
|
|
239
|
+
-0.058943 -0.034287 0.090018
|
|
240
|
+
-0.054043 -0.040487 0.095918
|
|
241
|
+
-0.054043 -0.040487 0.095918
|
|
242
|
+
-0.049143 -0.034287 0.090018
|
|
243
|
+
-0.054043 -0.033387 0.092718
|
|
244
|
+
-0.049143 -0.041787 0.093318
|
|
245
|
+
-0.049143 -0.044287 0.088118
|
|
246
|
+
-0.054043 -0.036887 0.081718
|
|
247
|
+
-0.049143 -0.035987 0.084418
|
|
248
|
+
-0.054043 -0.045587 0.085418
|
|
249
|
+
-0.054043 -0.052287 0.093018
|
|
250
|
+
-0.058943 -0.044287 0.088118
|
|
251
|
+
-0.054043 -0.045587 0.085418
|
|
252
|
+
-0.058943 -0.049687 0.094418
|
|
253
|
+
-0.058943 -0.049687 0.094418
|
|
254
|
+
-0.058943 -0.035987 0.084418
|
|
255
|
+
-0.058943 -0.044287 0.088118
|
|
256
|
+
-0.058943 -0.041787 0.093318
|
|
257
|
+
-0.058943 -0.034287 0.090018
|
|
258
|
+
-0.058943 -0.044687 0.097318
|
|
259
|
+
-0.058943 -0.044687 0.097318
|
|
260
|
+
-0.054043 -0.042087 0.098718
|
|
261
|
+
-0.054043 -0.040487 0.095918
|
|
262
|
+
-0.058943 -0.041787 0.093318
|
|
263
|
+
-0.054043 -0.042087 0.098718
|
|
264
|
+
-0.049143 -0.044687 0.097318
|
|
265
|
+
-0.049143 -0.041787 0.093318
|
|
266
|
+
-0.054043 -0.040487 0.095918
|
|
267
|
+
-0.049143 -0.035987 0.084418
|
|
268
|
+
-0.049143 -0.049687 0.094418
|
|
269
|
+
-0.049143 -0.044287 0.088118
|
|
270
|
+
-0.049143 -0.041787 0.093318
|
|
271
|
+
-0.049143 -0.044687 0.097318
|
|
272
|
+
-0.049143 -0.034287 0.090018
|
|
273
|
+
-0.049143 -0.049687 0.094418
|
|
274
|
+
-0.054043 -0.045587 0.085418
|
|
275
|
+
-0.049143 -0.044287 0.088118
|
|
276
|
+
-0.054043 -0.052287 0.093018
|
|
277
|
+
-0.054043 -0.050787 0.105418
|
|
278
|
+
-0.057743 -0.048687 0.104718
|
|
279
|
+
-0.058943 -0.049687 0.094418
|
|
280
|
+
-0.054043 -0.052287 0.093018
|
|
281
|
+
-0.057743 -0.048687 0.104718
|
|
282
|
+
-0.057743 -0.044487 0.103218
|
|
283
|
+
-0.058943 -0.044687 0.097318
|
|
284
|
+
-0.058943 -0.049687 0.094418
|
|
285
|
+
-0.057743 -0.044487 0.103218
|
|
286
|
+
-0.054043 -0.042087 0.098718
|
|
287
|
+
-0.058943 -0.044687 0.097318
|
|
288
|
+
-0.054043 -0.042387 0.102518
|
|
289
|
+
-0.054043 -0.042387 0.102518
|
|
290
|
+
-0.049143 -0.044687 0.097318
|
|
291
|
+
-0.054043 -0.042087 0.098718
|
|
292
|
+
-0.050343 -0.044487 0.103218
|
|
293
|
+
-0.050343 -0.044487 0.103218
|
|
294
|
+
-0.050343 -0.048687 0.104718
|
|
295
|
+
-0.049143 -0.049687 0.094418
|
|
296
|
+
-0.049143 -0.044687 0.097318
|
|
297
|
+
-0.050343 -0.048687 0.104718
|
|
298
|
+
-0.054043 -0.050787 0.105418
|
|
299
|
+
-0.054043 -0.052287 0.093018
|
|
300
|
+
-0.049143 -0.049687 0.094418
|
|
301
|
+
-0.054043 -0.046287 0.121418
|
|
302
|
+
-0.057743 -0.048687 0.104718
|
|
303
|
+
-0.054043 -0.050787 0.105418
|
|
304
|
+
-0.056743 -0.044787 0.120918
|
|
305
|
+
-0.056743 -0.044787 0.120918
|
|
306
|
+
-0.057743 -0.044487 0.103218
|
|
307
|
+
-0.057743 -0.048687 0.104718
|
|
308
|
+
-0.056743 -0.041687 0.120018
|
|
309
|
+
-0.056743 -0.041687 0.120018
|
|
310
|
+
-0.054043 -0.042387 0.102518
|
|
311
|
+
-0.057743 -0.044487 0.103218
|
|
312
|
+
-0.054043 -0.040087 0.119518
|
|
313
|
+
-0.054043 -0.040087 0.119518
|
|
314
|
+
-0.050343 -0.044487 0.103218
|
|
315
|
+
-0.054043 -0.042387 0.102518
|
|
316
|
+
-0.051343 -0.041687 0.120018
|
|
317
|
+
-0.051343 -0.041687 0.120018
|
|
318
|
+
-0.050343 -0.048687 0.104718
|
|
319
|
+
-0.050343 -0.044487 0.103218
|
|
320
|
+
-0.051343 -0.044787 0.120918
|
|
321
|
+
-0.051343 -0.044787 0.120918
|
|
322
|
+
-0.054043 -0.050787 0.105418
|
|
323
|
+
-0.050343 -0.048687 0.104718
|
|
324
|
+
-0.054043 -0.046287 0.121418
|
|
325
|
+
-0.054043 -0.045287 0.121118
|
|
326
|
+
-0.055643 -0.044187 0.120818
|
|
327
|
+
-0.056743 -0.044787 0.120918
|
|
328
|
+
-0.054043 -0.046287 0.121418
|
|
329
|
+
-0.055643 -0.044187 0.120818
|
|
330
|
+
-0.055643 -0.042187 0.120118
|
|
331
|
+
-0.056743 -0.041687 0.120018
|
|
332
|
+
-0.056743 -0.044787 0.120918
|
|
333
|
+
-0.055643 -0.042187 0.120118
|
|
334
|
+
-0.054043 -0.041187 0.119718
|
|
335
|
+
-0.054043 -0.040087 0.119518
|
|
336
|
+
-0.056743 -0.041687 0.120018
|
|
337
|
+
-0.054043 -0.041187 0.119718
|
|
338
|
+
-0.052443 -0.042187 0.120118
|
|
339
|
+
-0.051343 -0.041687 0.120018
|
|
340
|
+
-0.054043 -0.040087 0.119518
|
|
341
|
+
-0.052443 -0.042187 0.120118
|
|
342
|
+
-0.052443 -0.044187 0.120818
|
|
343
|
+
-0.051343 -0.044787 0.120918
|
|
344
|
+
-0.051343 -0.041687 0.120018
|
|
345
|
+
-0.052443 -0.044187 0.120818
|
|
346
|
+
-0.054043 -0.045287 0.121118
|
|
347
|
+
-0.054043 -0.046287 0.121418
|
|
348
|
+
-0.051343 -0.044787 0.120918
|
|
349
|
+
-0.054043 -0.042387 0.128518
|
|
350
|
+
-0.055643 -0.041487 0.127918
|
|
351
|
+
-0.055643 -0.044187 0.120818
|
|
352
|
+
-0.054043 -0.045287 0.121118
|
|
353
|
+
-0.055643 -0.041487 0.127918
|
|
354
|
+
-0.055643 -0.042187 0.120118
|
|
355
|
+
-0.055643 -0.044187 0.120818
|
|
356
|
+
-0.055643 -0.039787 0.126718
|
|
357
|
+
-0.055643 -0.039787 0.126718
|
|
358
|
+
-0.054043 -0.041187 0.119718
|
|
359
|
+
-0.055643 -0.042187 0.120118
|
|
360
|
+
-0.054043 -0.038887 0.126118
|
|
361
|
+
-0.054043 -0.038887 0.126118
|
|
362
|
+
-0.052443 -0.042187 0.120118
|
|
363
|
+
-0.054043 -0.041187 0.119718
|
|
364
|
+
-0.052443 -0.039787 0.126718
|
|
365
|
+
-0.052443 -0.039787 0.126718
|
|
366
|
+
-0.052443 -0.044187 0.120818
|
|
367
|
+
-0.052443 -0.042187 0.120118
|
|
368
|
+
-0.052443 -0.041487 0.127918
|
|
369
|
+
-0.052443 -0.041487 0.127918
|
|
370
|
+
-0.054043 -0.042387 0.128518
|
|
371
|
+
-0.054043 -0.045287 0.121118
|
|
372
|
+
-0.052443 -0.044187 0.120818
|
|
373
|
+
-0.051843 -0.032387 0.134218
|
|
374
|
+
-0.053443 -0.032087 0.133118
|
|
375
|
+
-0.055643 -0.041487 0.127918
|
|
376
|
+
-0.055643 -0.041487 0.127918
|
|
377
|
+
-0.054043 -0.042387 0.128518
|
|
378
|
+
-0.051843 -0.032387 0.134218
|
|
379
|
+
-0.053443 -0.032087 0.133118
|
|
380
|
+
-0.053443 -0.031487 0.131118
|
|
381
|
+
-0.055643 -0.039787 0.126718
|
|
382
|
+
-0.055643 -0.041487 0.127918
|
|
383
|
+
-0.053443 -0.031487 0.131118
|
|
384
|
+
-0.054043 -0.038887 0.126118
|
|
385
|
+
-0.055643 -0.039787 0.126718
|
|
386
|
+
-0.051843 -0.031187 0.130018
|
|
387
|
+
-0.051843 -0.031187 0.130018
|
|
388
|
+
-0.050343 -0.031487 0.131118
|
|
389
|
+
-0.052443 -0.039787 0.126718
|
|
390
|
+
-0.054043 -0.038887 0.126118
|
|
391
|
+
-0.050343 -0.031487 0.131118
|
|
392
|
+
-0.050343 -0.032087 0.133118
|
|
393
|
+
-0.052443 -0.041487 0.127918
|
|
394
|
+
-0.052443 -0.039787 0.126718
|
|
395
|
+
-0.050343 -0.032087 0.133118
|
|
396
|
+
-0.051843 -0.032387 0.134218
|
|
397
|
+
-0.054043 -0.042387 0.128518
|
|
398
|
+
-0.052443 -0.041487 0.127918
|
|
399
|
+
-0.049543 -0.015187 0.132918
|
|
400
|
+
-0.053443 -0.032087 0.133118
|
|
401
|
+
-0.051843 -0.032387 0.134218
|
|
402
|
+
-0.051043 -0.015487 0.131918
|
|
403
|
+
-0.051043 -0.015487 0.131918
|
|
404
|
+
-0.051043 -0.016087 0.129818
|
|
405
|
+
-0.053443 -0.031487 0.131118
|
|
406
|
+
-0.053443 -0.032087 0.133118
|
|
407
|
+
-0.051043 -0.016087 0.129818
|
|
408
|
+
-0.051843 -0.031187 0.130018
|
|
409
|
+
-0.053443 -0.031487 0.131118
|
|
410
|
+
-0.049543 -0.016487 0.128818
|
|
411
|
+
-0.049543 -0.016487 0.128818
|
|
412
|
+
-0.050343 -0.031487 0.131118
|
|
413
|
+
-0.051843 -0.031187 0.130018
|
|
414
|
+
-0.047943 -0.016087 0.129818
|
|
415
|
+
-0.047943 -0.016087 0.129818
|
|
416
|
+
-0.047943 -0.015487 0.131918
|
|
417
|
+
-0.050343 -0.032087 0.133118
|
|
418
|
+
-0.050343 -0.031487 0.131118
|
|
419
|
+
-0.047943 -0.015487 0.131918
|
|
420
|
+
-0.049543 -0.015187 0.132918
|
|
421
|
+
-0.051843 -0.032387 0.134218
|
|
422
|
+
-0.050343 -0.032087 0.133118
|
|
423
|
+
-0.045643 0.018813 0.116518
|
|
424
|
+
-0.047143 0.018113 0.115618
|
|
425
|
+
-0.051043 -0.015487 0.131918
|
|
426
|
+
-0.049543 -0.015187 0.132918
|
|
427
|
+
-0.047143 0.018113 0.115618
|
|
428
|
+
-0.047143 0.016913 0.113818
|
|
429
|
+
-0.051043 -0.016087 0.129818
|
|
430
|
+
-0.051043 -0.015487 0.131918
|
|
431
|
+
-0.047143 0.016913 0.113818
|
|
432
|
+
-0.045643 0.016213 0.113018
|
|
433
|
+
-0.049543 -0.016487 0.128818
|
|
434
|
+
-0.051043 -0.016087 0.129818
|
|
435
|
+
-0.047143 0.016913 0.113818
|
|
436
|
+
-0.045643 0.016213 0.113018
|
|
437
|
+
-0.047943 -0.016087 0.129818
|
|
438
|
+
-0.049543 -0.016487 0.128818
|
|
439
|
+
-0.044043 0.016913 0.113818
|
|
440
|
+
-0.044043 0.016913 0.113818
|
|
441
|
+
-0.044043 0.018113 0.115618
|
|
442
|
+
-0.047943 -0.015487 0.131918
|
|
443
|
+
-0.047943 -0.016087 0.129818
|
|
444
|
+
-0.044043 0.018113 0.115618
|
|
445
|
+
-0.045643 0.018813 0.116518
|
|
446
|
+
-0.047943 -0.015487 0.131918
|
|
447
|
+
-0.049543 -0.015187 0.132918
|
|
448
|
+
-0.045043 0.038013 0.097618
|
|
449
|
+
-0.046643 0.037013 0.097218
|
|
450
|
+
-0.047143 0.018113 0.115618
|
|
451
|
+
-0.045643 0.018813 0.116518
|
|
452
|
+
-0.046643 0.037013 0.097218
|
|
453
|
+
-0.047143 0.016913 0.113818
|
|
454
|
+
-0.047143 0.018113 0.115618
|
|
455
|
+
-0.046643 0.035013 0.096418
|
|
456
|
+
-0.046643 0.035013 0.096418
|
|
457
|
+
-0.045043 0.034013 0.096018
|
|
458
|
+
-0.045643 0.016213 0.113018
|
|
459
|
+
-0.047143 0.016913 0.113818
|
|
460
|
+
-0.045043 0.034013 0.096018
|
|
461
|
+
-0.043443 0.035013 0.096418
|
|
462
|
+
-0.044043 0.016913 0.113818
|
|
463
|
+
-0.045643 0.016213 0.113018
|
|
464
|
+
-0.043443 0.035013 0.096418
|
|
465
|
+
-0.044043 0.018113 0.115618
|
|
466
|
+
-0.044043 0.016913 0.113818
|
|
467
|
+
-0.043443 0.037013 0.097218
|
|
468
|
+
-0.043443 0.037013 0.097218
|
|
469
|
+
-0.045043 0.038013 0.097618
|
|
470
|
+
-0.045643 0.018813 0.116518
|
|
471
|
+
-0.044043 0.018113 0.115618
|
|
472
|
+
-0.043843 0.040513 0.080318
|
|
473
|
+
-0.046643 0.037013 0.097218
|
|
474
|
+
-0.045043 0.038013 0.097618
|
|
475
|
+
-0.045443 0.039413 0.080318
|
|
476
|
+
-0.045443 0.039413 0.080318
|
|
477
|
+
-0.045443 0.037313 0.080518
|
|
478
|
+
-0.046643 0.035013 0.096418
|
|
479
|
+
-0.046643 0.037013 0.097218
|
|
480
|
+
-0.045443 0.037313 0.080518
|
|
481
|
+
-0.045043 0.034013 0.096018
|
|
482
|
+
-0.046643 0.035013 0.096418
|
|
483
|
+
-0.043843 0.036213 0.080518
|
|
484
|
+
-0.043843 0.036213 0.080518
|
|
485
|
+
-0.043443 0.035013 0.096418
|
|
486
|
+
-0.045043 0.034013 0.096018
|
|
487
|
+
-0.042243 0.037313 0.080518
|
|
488
|
+
-0.042243 0.037313 0.080518
|
|
489
|
+
-0.042243 0.039413 0.080318
|
|
490
|
+
-0.043443 0.037013 0.097218
|
|
491
|
+
-0.043443 0.035013 0.096418
|
|
492
|
+
-0.042243 0.039413 0.080318
|
|
493
|
+
-0.043843 0.040513 0.080318
|
|
494
|
+
-0.043443 0.037013 0.097218
|
|
495
|
+
-0.045043 0.038013 0.097618
|
|
496
|
+
-0.044343 0.032013 0.065518
|
|
497
|
+
-0.045843 0.031213 0.066218
|
|
498
|
+
-0.045443 0.039413 0.080318
|
|
499
|
+
-0.043843 0.040513 0.080318
|
|
500
|
+
-0.044343 0.032013 0.065518
|
|
501
|
+
-0.045843 0.031213 0.066218
|
|
502
|
+
-0.045443 0.037313 0.080518
|
|
503
|
+
-0.045443 0.039413 0.080318
|
|
504
|
+
-0.045843 0.029613 0.067718
|
|
505
|
+
-0.045843 0.029613 0.067718
|
|
506
|
+
-0.044343 0.028813 0.068518
|
|
507
|
+
-0.043843 0.036213 0.080518
|
|
508
|
+
-0.045443 0.037313 0.080518
|
|
509
|
+
-0.044343 0.028813 0.068518
|
|
510
|
+
-0.042743 0.029613 0.067718
|
|
511
|
+
-0.042243 0.037313 0.080518
|
|
512
|
+
-0.043843 0.036213 0.080518
|
|
513
|
+
-0.042743 0.029613 0.067718
|
|
514
|
+
-0.042743 0.031213 0.066218
|
|
515
|
+
-0.042243 0.037313 0.080518
|
|
516
|
+
-0.042243 0.039413 0.080318
|
|
517
|
+
-0.042743 0.031213 0.066218
|
|
518
|
+
-0.044343 0.032013 0.065518
|
|
519
|
+
-0.043843 0.040513 0.080318
|
|
520
|
+
-0.043843 0.040513 0.080318
|
|
521
|
+
-0.042243 0.039413 0.080318
|
|
522
|
+
-0.042743 0.031213 0.066218
|
|
523
|
+
-0.048843 0.020113 0.058418
|
|
524
|
+
-0.048843 0.019113 0.060318
|
|
525
|
+
-0.045843 0.029613 0.067718
|
|
526
|
+
-0.045843 0.031213 0.066218
|
|
527
|
+
-0.048843 0.019113 0.060318
|
|
528
|
+
-0.047243 0.018613 0.061318
|
|
529
|
+
-0.045843 0.029613 0.067718
|
|
530
|
+
-0.044343 0.028813 0.068518
|
|
531
|
+
-0.047243 0.018613 0.061318
|
|
532
|
+
-0.045743 0.019113 0.060318
|
|
533
|
+
-0.044343 0.028813 0.068518
|
|
534
|
+
-0.042743 0.029613 0.067718
|
|
535
|
+
-0.045743 0.019113 0.060318
|
|
536
|
+
-0.045743 0.020113 0.058418
|
|
537
|
+
-0.042743 0.031213 0.066218
|
|
538
|
+
-0.042743 0.029613 0.067718
|
|
539
|
+
-0.065743 0.049013 0.123218
|
|
540
|
+
-0.049543 -0.016487 0.128818
|
|
541
|
+
-0.045443 0.039413 0.080318
|
|
542
|
+
</float_array>
|
|
543
|
+
<technique_common>
|
|
544
|
+
<accessor source="#drc_head_camera-POSITION-array" count="480" stride="3">
|
|
545
|
+
<param name="X" type="float"/>
|
|
546
|
+
<param name="Y" type="float"/>
|
|
547
|
+
<param name="Z" type="float"/>
|
|
548
|
+
</accessor>
|
|
549
|
+
</technique_common>
|
|
550
|
+
</source>
|
|
551
|
+
<source id="drc_head_camera-Normal0">
|
|
552
|
+
<float_array id="drc_head_camera-Normal0-array" count="2304">
|
|
553
|
+
0.000000 -0.315212 0.949021
|
|
554
|
+
0.000000 -0.315212 0.949021
|
|
555
|
+
0.000000 -0.315212 0.949021
|
|
556
|
+
0.000000 -0.315212 0.949021
|
|
557
|
+
0.000000 -0.315212 0.949021
|
|
558
|
+
0.000000 -0.315212 0.949021
|
|
559
|
+
1.000000 0.000000 0.000000
|
|
560
|
+
1.000000 0.000000 0.000000
|
|
561
|
+
1.000000 0.000000 0.000000
|
|
562
|
+
1.000000 0.000000 0.000000
|
|
563
|
+
1.000000 0.000000 0.000000
|
|
564
|
+
1.000000 0.000000 0.000000
|
|
565
|
+
-0.000000 0.949422 0.314002
|
|
566
|
+
-0.000000 0.949422 0.314002
|
|
567
|
+
-0.000000 0.949422 0.314002
|
|
568
|
+
-0.000000 0.949422 0.314002
|
|
569
|
+
-0.000000 0.949422 0.314002
|
|
570
|
+
-0.000000 0.949422 0.314002
|
|
571
|
+
-1.000000 0.000000 0.000000
|
|
572
|
+
-1.000000 0.000000 0.000000
|
|
573
|
+
-1.000000 0.000000 0.000000
|
|
574
|
+
-1.000000 0.000000 0.000000
|
|
575
|
+
-1.000000 0.000000 0.000000
|
|
576
|
+
-1.000000 0.000000 0.000000
|
|
577
|
+
0.000000 -0.949178 -0.314741
|
|
578
|
+
0.000000 -0.949178 -0.314741
|
|
579
|
+
0.000000 -0.949178 -0.314741
|
|
580
|
+
0.000000 -0.949178 -0.314741
|
|
581
|
+
0.000000 -0.949178 -0.314741
|
|
582
|
+
0.000000 -0.949178 -0.314741
|
|
583
|
+
0.000142 0.315628 -0.948883
|
|
584
|
+
-0.000346 0.315665 -0.948871
|
|
585
|
+
0.000995 0.315283 -0.948997
|
|
586
|
+
0.000142 0.315628 -0.948883
|
|
587
|
+
-0.000179 0.315719 -0.948853
|
|
588
|
+
-0.000346 0.315665 -0.948871
|
|
589
|
+
-0.000178 0.315719 -0.948853
|
|
590
|
+
-0.000179 0.315719 -0.948853
|
|
591
|
+
0.000142 0.315628 -0.948883
|
|
592
|
+
-0.000178 0.315719 -0.948853
|
|
593
|
+
0.000141 0.315628 -0.948883
|
|
594
|
+
-0.000179 0.315719 -0.948853
|
|
595
|
+
-0.000342 0.315665 -0.948871
|
|
596
|
+
0.000141 0.315628 -0.948883
|
|
597
|
+
-0.000178 0.315719 -0.948853
|
|
598
|
+
-0.000342 0.315665 -0.948871
|
|
599
|
+
0.000988 0.315283 -0.948997
|
|
600
|
+
0.000141 0.315628 -0.948883
|
|
601
|
+
0.000000 -0.313702 0.949521
|
|
602
|
+
0.000000 -0.316228 0.948683
|
|
603
|
+
0.000000 -0.316228 0.948683
|
|
604
|
+
0.000000 -0.313702 0.949521
|
|
605
|
+
0.000000 -0.313698 0.949523
|
|
606
|
+
0.000000 -0.316228 0.948683
|
|
607
|
+
0.000000 -0.313702 0.949521
|
|
608
|
+
0.000000 -0.313698 0.949523
|
|
609
|
+
0.000000 -0.313702 0.949521
|
|
610
|
+
0.000000 -0.313702 0.949521
|
|
611
|
+
0.000000 -0.313698 0.949523
|
|
612
|
+
0.000000 -0.313698 0.949523
|
|
613
|
+
0.000000 -0.316228 0.948683
|
|
614
|
+
0.000000 -0.313698 0.949523
|
|
615
|
+
0.000000 -0.313702 0.949521
|
|
616
|
+
0.000000 -0.316228 0.948683
|
|
617
|
+
0.000000 -0.316228 0.948683
|
|
618
|
+
0.000000 -0.313698 0.949523
|
|
619
|
+
1.000000 0.000000 0.000000
|
|
620
|
+
1.000000 0.000000 0.000000
|
|
621
|
+
1.000000 0.000000 0.000000
|
|
622
|
+
1.000000 0.000000 0.000000
|
|
623
|
+
1.000000 0.000000 0.000000
|
|
624
|
+
1.000000 0.000000 0.000000
|
|
625
|
+
-0.000000 0.949224 0.314600
|
|
626
|
+
-0.000000 0.949224 0.314600
|
|
627
|
+
-0.000000 0.949224 0.314600
|
|
628
|
+
-0.000000 0.949224 0.314600
|
|
629
|
+
-0.000000 0.949224 0.314600
|
|
630
|
+
-0.000000 0.949224 0.314600
|
|
631
|
+
-1.000000 0.000000 0.000000
|
|
632
|
+
-1.000000 0.000000 0.000000
|
|
633
|
+
-1.000000 0.000000 0.000000
|
|
634
|
+
-1.000000 0.000000 0.000000
|
|
635
|
+
-1.000000 0.000000 0.000000
|
|
636
|
+
-1.000000 0.000000 0.000000
|
|
637
|
+
0.000000 -0.949757 -0.312988
|
|
638
|
+
0.000000 -0.949757 -0.312988
|
|
639
|
+
0.000000 -0.949757 -0.312988
|
|
640
|
+
0.000000 -0.949757 -0.312988
|
|
641
|
+
0.000000 -0.949757 -0.312988
|
|
642
|
+
0.000000 -0.949757 -0.312988
|
|
643
|
+
0.707049 0.671258 0.222474
|
|
644
|
+
0.707049 0.671258 0.222474
|
|
645
|
+
0.707049 0.671258 0.222474
|
|
646
|
+
0.707049 0.671258 0.222474
|
|
647
|
+
0.707049 0.671258 0.222474
|
|
648
|
+
0.707049 0.671258 0.222474
|
|
649
|
+
0.707048 -0.671636 -0.221335
|
|
650
|
+
0.707048 -0.671636 -0.221335
|
|
651
|
+
0.707048 -0.671636 -0.221335
|
|
652
|
+
0.707048 -0.671636 -0.221335
|
|
653
|
+
0.707048 -0.671636 -0.221335
|
|
654
|
+
0.707048 -0.671636 -0.221335
|
|
655
|
+
-0.704454 0.673712 0.223288
|
|
656
|
+
-0.704454 0.673712 0.223288
|
|
657
|
+
-0.704454 0.673712 0.223288
|
|
658
|
+
-0.704454 0.673712 0.223288
|
|
659
|
+
-0.704454 0.673712 0.223288
|
|
660
|
+
-0.704454 0.673712 0.223288
|
|
661
|
+
-0.704452 -0.674092 -0.222144
|
|
662
|
+
-0.704452 -0.674092 -0.222144
|
|
663
|
+
-0.704452 -0.674092 -0.222144
|
|
664
|
+
-0.704452 -0.674092 -0.222144
|
|
665
|
+
-0.704452 -0.674092 -0.222144
|
|
666
|
+
-0.704452 -0.674092 -0.222144
|
|
667
|
+
-0.866050 0.474877 0.156362
|
|
668
|
+
0.001066 0.949835 0.312750
|
|
669
|
+
-0.866442 0.474231 0.156149
|
|
670
|
+
-0.866050 0.474877 0.156362
|
|
671
|
+
0.001065 0.949835 0.312750
|
|
672
|
+
0.001066 0.949835 0.312750
|
|
673
|
+
-1.000000 0.000000 0.000000
|
|
674
|
+
-0.866442 0.474231 0.156149
|
|
675
|
+
-1.000000 0.000000 0.000000
|
|
676
|
+
-1.000000 0.000000 0.000000
|
|
677
|
+
-0.866050 0.474877 0.156362
|
|
678
|
+
-0.866442 0.474231 0.156149
|
|
679
|
+
0.000396 -0.949569 -0.313559
|
|
680
|
+
-0.499402 -0.822625 -0.271820
|
|
681
|
+
0.000401 -0.949568 -0.313560
|
|
682
|
+
0.000396 -0.949569 -0.313559
|
|
683
|
+
-0.497526 -0.823185 -0.273558
|
|
684
|
+
-0.499402 -0.822625 -0.271820
|
|
685
|
+
0.866055 -0.474706 -0.156855
|
|
686
|
+
0.000401 -0.949568 -0.313560
|
|
687
|
+
0.866838 -0.473149 -0.157235
|
|
688
|
+
0.866055 -0.474706 -0.156855
|
|
689
|
+
0.000396 -0.949569 -0.313559
|
|
690
|
+
0.000401 -0.949568 -0.313560
|
|
691
|
+
0.866583 0.474000 0.156073
|
|
692
|
+
0.866838 -0.473149 -0.157235
|
|
693
|
+
0.866974 0.473354 0.155860
|
|
694
|
+
0.866583 0.474000 0.156073
|
|
695
|
+
0.866055 -0.474706 -0.156855
|
|
696
|
+
0.866838 -0.473149 -0.157235
|
|
697
|
+
0.001065 0.949835 0.312750
|
|
698
|
+
0.866974 0.473354 0.155860
|
|
699
|
+
0.001066 0.949835 0.312750
|
|
700
|
+
0.001065 0.949835 0.312750
|
|
701
|
+
0.866583 0.474000 0.156073
|
|
702
|
+
0.866974 0.473354 0.155860
|
|
703
|
+
-0.000001 0.951114 -0.308838
|
|
704
|
+
-0.000001 1.000000 0.000423
|
|
705
|
+
-0.000001 0.951114 -0.308839
|
|
706
|
+
-0.000001 0.951114 -0.308838
|
|
707
|
+
-0.000001 1.000000 0.000423
|
|
708
|
+
-0.000001 1.000000 0.000423
|
|
709
|
+
-0.000001 1.000000 0.000423
|
|
710
|
+
-0.000001 0.950853 0.309644
|
|
711
|
+
-0.000001 1.000000 0.000423
|
|
712
|
+
-0.000001 1.000000 0.000423
|
|
713
|
+
-0.000001 0.950853 0.309644
|
|
714
|
+
-0.000001 0.950853 0.309644
|
|
715
|
+
-0.000000 0.951893 -0.306430
|
|
716
|
+
-0.000000 0.951893 -0.306430
|
|
717
|
+
-0.000000 0.951893 -0.306430
|
|
718
|
+
-0.000000 0.951893 -0.306430
|
|
719
|
+
-0.000000 0.951893 -0.306431
|
|
720
|
+
-0.000000 0.951893 -0.306430
|
|
721
|
+
-0.000000 0.588555 -0.808458
|
|
722
|
+
-0.000000 0.588555 -0.808458
|
|
723
|
+
-0.000000 0.588555 -0.808457
|
|
724
|
+
-0.000000 0.588555 -0.808458
|
|
725
|
+
-0.000000 0.588555 -0.808457
|
|
726
|
+
-0.000000 0.588555 -0.808458
|
|
727
|
+
0.000000 -0.588555 -0.808458
|
|
728
|
+
0.000000 -0.588555 -0.808458
|
|
729
|
+
0.000000 -0.588555 -0.808457
|
|
730
|
+
0.000000 -0.588555 -0.808458
|
|
731
|
+
0.000000 -0.588555 -0.808457
|
|
732
|
+
0.000000 -0.588555 -0.808458
|
|
733
|
+
0.000000 -0.951893 -0.306431
|
|
734
|
+
0.000000 -0.951893 -0.306431
|
|
735
|
+
0.000000 -0.951893 -0.306431
|
|
736
|
+
0.000000 -0.951893 -0.306431
|
|
737
|
+
0.000000 -0.951893 -0.306431
|
|
738
|
+
0.000000 -0.951893 -0.306431
|
|
739
|
+
0.000000 -0.951893 0.306432
|
|
740
|
+
0.000000 -0.951893 0.306432
|
|
741
|
+
0.000000 -0.951893 0.306432
|
|
742
|
+
0.000000 -0.951893 0.306432
|
|
743
|
+
0.000000 -0.951893 0.306432
|
|
744
|
+
0.000000 -0.951893 0.306432
|
|
745
|
+
0.000000 -0.584305 0.811534
|
|
746
|
+
0.000000 -0.584305 0.811534
|
|
747
|
+
0.000000 -0.584305 0.811534
|
|
748
|
+
0.000000 -0.584305 0.811534
|
|
749
|
+
0.000000 -0.584305 0.811534
|
|
750
|
+
0.000000 -0.584305 0.811534
|
|
751
|
+
0.000000 0.000000 1.000000
|
|
752
|
+
0.000000 0.000000 1.000000
|
|
753
|
+
0.000000 0.000000 1.000000
|
|
754
|
+
0.000000 0.000000 1.000000
|
|
755
|
+
0.000000 0.000000 1.000000
|
|
756
|
+
0.000000 0.000000 1.000000
|
|
757
|
+
-0.000000 0.584305 0.811534
|
|
758
|
+
-0.000000 0.584305 0.811534
|
|
759
|
+
-0.000000 0.584305 0.811534
|
|
760
|
+
-0.000000 0.584305 0.811534
|
|
761
|
+
-0.000000 0.584305 0.811534
|
|
762
|
+
-0.000000 0.584305 0.811534
|
|
763
|
+
-0.000000 0.951893 0.306432
|
|
764
|
+
-0.000000 0.951893 0.306432
|
|
765
|
+
-0.000000 0.951893 0.306432
|
|
766
|
+
-0.000000 0.951893 0.306432
|
|
767
|
+
-0.000000 0.951893 0.306432
|
|
768
|
+
-0.000000 0.951893 0.306432
|
|
769
|
+
1.000000 0.000000 0.000000
|
|
770
|
+
1.000000 0.000000 0.000000
|
|
771
|
+
1.000000 0.000000 0.000000
|
|
772
|
+
1.000000 0.000000 0.000000
|
|
773
|
+
1.000000 0.000000 0.000000
|
|
774
|
+
1.000000 0.000000 0.000000
|
|
775
|
+
1.000000 0.000000 0.000000
|
|
776
|
+
1.000000 0.000000 0.000000
|
|
777
|
+
1.000000 0.000000 0.000000
|
|
778
|
+
1.000000 0.000000 0.000000
|
|
779
|
+
1.000000 0.000000 0.000000
|
|
780
|
+
1.000000 0.000000 0.000000
|
|
781
|
+
1.000000 0.000000 0.000000
|
|
782
|
+
1.000000 0.000000 0.000000
|
|
783
|
+
1.000000 0.000000 0.000000
|
|
784
|
+
1.000000 0.000000 0.000000
|
|
785
|
+
1.000000 0.000000 0.000000
|
|
786
|
+
1.000000 0.000000 0.000000
|
|
787
|
+
1.000000 0.000000 0.000000
|
|
788
|
+
1.000000 0.000000 0.000000
|
|
789
|
+
1.000000 0.000000 0.000000
|
|
790
|
+
1.000000 0.000000 0.000000
|
|
791
|
+
1.000000 0.000000 0.000000
|
|
792
|
+
1.000000 0.000000 0.000000
|
|
793
|
+
-0.864085 -0.101619 -0.492981
|
|
794
|
+
-0.501395 -0.176109 -0.847106
|
|
795
|
+
-0.869805 -0.101305 -0.482884
|
|
796
|
+
-0.864085 -0.101619 -0.492981
|
|
797
|
+
-0.496960 -0.173638 -0.850224
|
|
798
|
+
-0.501395 -0.176109 -0.847106
|
|
799
|
+
-0.866482 0.099216 0.489249
|
|
800
|
+
-0.869805 -0.101305 -0.482884
|
|
801
|
+
-0.865787 0.102071 0.489892
|
|
802
|
+
-0.866482 0.099216 0.489249
|
|
803
|
+
-0.864085 -0.101619 -0.492981
|
|
804
|
+
-0.869805 -0.101305 -0.482884
|
|
805
|
+
-0.002045 0.204081 0.978952
|
|
806
|
+
-0.865787 0.102071 0.489892
|
|
807
|
+
-0.002015 0.204082 0.978952
|
|
808
|
+
-0.002045 0.204081 0.978952
|
|
809
|
+
-0.866482 0.099216 0.489249
|
|
810
|
+
-0.865787 0.102071 0.489892
|
|
811
|
+
0.867474 0.101477 0.487022
|
|
812
|
+
-0.002015 0.204082 0.978952
|
|
813
|
+
0.866795 0.099108 0.488717
|
|
814
|
+
0.867474 0.101477 0.487022
|
|
815
|
+
-0.002045 0.204081 0.978952
|
|
816
|
+
-0.002015 0.204082 0.978952
|
|
817
|
+
0.863413 -0.103585 -0.493750
|
|
818
|
+
0.866795 0.099108 0.488717
|
|
819
|
+
0.869166 -0.099841 -0.484337
|
|
820
|
+
0.863413 -0.103585 -0.493750
|
|
821
|
+
0.867474 0.101477 0.487022
|
|
822
|
+
0.866795 0.099108 0.488717
|
|
823
|
+
0.499275 -0.176361 -0.848305
|
|
824
|
+
0.869166 -0.099841 -0.484337
|
|
825
|
+
0.503708 -0.172857 -0.846403
|
|
826
|
+
0.499275 -0.176361 -0.848305
|
|
827
|
+
0.863413 -0.103585 -0.493750
|
|
828
|
+
0.869166 -0.099841 -0.484337
|
|
829
|
+
-0.119356 -0.992851 -0.001236
|
|
830
|
+
-0.089158 -0.982158 0.165579
|
|
831
|
+
-0.101731 -0.989931 0.098426
|
|
832
|
+
-0.101731 -0.989931 0.098426
|
|
833
|
+
-0.124727 -0.991640 -0.033056
|
|
834
|
+
-0.119356 -0.992851 -0.001236
|
|
835
|
+
-0.050751 -0.977532 0.204586
|
|
836
|
+
0.189707 -0.939504 0.285208
|
|
837
|
+
0.099205 -0.961413 0.256600
|
|
838
|
+
0.099205 -0.961413 0.256600
|
|
839
|
+
-0.100245 -0.977390 0.186171
|
|
840
|
+
-0.050751 -0.977532 0.204586
|
|
841
|
+
0.097758 -0.993666 0.055425
|
|
842
|
+
0.197934 -0.979671 -0.032655
|
|
843
|
+
0.159984 -0.987119 0.001013
|
|
844
|
+
0.159984 -0.987119 0.001013
|
|
845
|
+
0.077509 -0.994321 0.072924
|
|
846
|
+
0.097758 -0.993666 0.055425
|
|
847
|
+
-0.133316 -0.991050 -0.006785
|
|
848
|
+
-0.108617 -0.985370 0.131335
|
|
849
|
+
-0.118927 -0.990033 0.075442
|
|
850
|
+
-0.118927 -0.990033 0.075442
|
|
851
|
+
-0.137709 -0.989923 -0.032997
|
|
852
|
+
-0.133316 -0.991050 -0.006785
|
|
853
|
+
-0.087872 -0.974989 0.204146
|
|
854
|
+
0.154534 -0.945386 0.286993
|
|
855
|
+
0.062314 -0.964311 0.257336
|
|
856
|
+
0.062314 -0.964311 0.257336
|
|
857
|
+
-0.137224 -0.973046 0.185343
|
|
858
|
+
-0.087872 -0.974989 0.204146
|
|
859
|
+
0.076030 -0.994341 0.074197
|
|
860
|
+
0.197934 -0.979671 -0.032657
|
|
861
|
+
0.151780 -0.988380 0.008242
|
|
862
|
+
0.151780 -0.988380 0.008242
|
|
863
|
+
0.051356 -0.994116 0.095376
|
|
864
|
+
0.076030 -0.994341 0.074197
|
|
865
|
+
-0.514312 -0.344329 -0.785443
|
|
866
|
+
-0.508176 -0.341730 -0.790556
|
|
867
|
+
-0.501043 -0.338697 -0.796392
|
|
868
|
+
-0.514312 -0.344329 -0.785443
|
|
869
|
+
-0.521572 -0.347393 -0.779283
|
|
870
|
+
-0.508176 -0.341730 -0.790556
|
|
871
|
+
-0.506205 0.351535 0.787515
|
|
872
|
+
-0.504221 0.350501 0.789247
|
|
873
|
+
-0.500640 0.348634 0.792347
|
|
874
|
+
-0.506205 0.351535 0.787515
|
|
875
|
+
-0.509913 0.353465 0.784252
|
|
876
|
+
-0.504221 0.350501 0.789247
|
|
877
|
+
0.506143 0.350059 0.788212
|
|
878
|
+
0.504140 0.352029 0.788618
|
|
879
|
+
0.500312 0.355774 0.789375
|
|
880
|
+
0.506143 0.350059 0.788212
|
|
881
|
+
0.509762 0.346483 0.787460
|
|
882
|
+
0.504140 0.352029 0.788618
|
|
883
|
+
0.514221 -0.340356 -0.787232
|
|
884
|
+
0.508040 -0.345848 -0.788850
|
|
885
|
+
0.500466 -0.352502 -0.790744
|
|
886
|
+
0.514221 -0.340356 -0.787232
|
|
887
|
+
0.521322 -0.333976 -0.785292
|
|
888
|
+
0.508040 -0.345848 -0.788850
|
|
889
|
+
-0.501049 -0.654024 -0.566748
|
|
890
|
+
-0.496148 -0.653806 -0.571292
|
|
891
|
+
-0.490860 -0.653539 -0.576145
|
|
892
|
+
-0.501049 -0.654024 -0.566748
|
|
893
|
+
-0.507389 -0.654264 -0.560799
|
|
894
|
+
-0.496148 -0.653806 -0.571292
|
|
895
|
+
-1.000000 -0.000001 -0.000001
|
|
896
|
+
-1.000000 -0.000000 0.000000
|
|
897
|
+
-1.000000 0.000002 0.000004
|
|
898
|
+
-1.000000 -0.000002 -0.000001
|
|
899
|
+
-1.000000 -0.000000 0.000000
|
|
900
|
+
-1.000000 -0.000001 -0.000001
|
|
901
|
+
-1.000000 -0.000002 -0.000001
|
|
902
|
+
-1.000000 0.000000 0.000000
|
|
903
|
+
-1.000000 -0.000000 0.000000
|
|
904
|
+
-1.000000 -0.000002 -0.000001
|
|
905
|
+
-1.000000 -0.000001 -0.000001
|
|
906
|
+
-1.000000 -0.000002 -0.000002
|
|
907
|
+
-0.483429 0.726691 0.488074
|
|
908
|
+
-0.516041 0.743705 0.424976
|
|
909
|
+
-0.494771 0.732892 0.466981
|
|
910
|
+
-0.494771 0.732892 0.466981
|
|
911
|
+
-0.465700 0.716459 0.519432
|
|
912
|
+
-0.483429 0.726691 0.488074
|
|
913
|
+
0.476304 0.740984 0.473368
|
|
914
|
+
0.512786 0.695065 0.503920
|
|
915
|
+
0.490627 0.723651 0.485402
|
|
916
|
+
0.490627 0.723651 0.485402
|
|
917
|
+
0.442623 0.778559 0.444893
|
|
918
|
+
0.476304 0.740984 0.473368
|
|
919
|
+
1.000000 0.000000 -0.000000
|
|
920
|
+
1.000000 0.000001 0.000001
|
|
921
|
+
1.000000 -0.000002 -0.000004
|
|
922
|
+
1.000000 0.000002 0.000001
|
|
923
|
+
1.000000 0.000001 0.000001
|
|
924
|
+
1.000000 0.000000 -0.000000
|
|
925
|
+
1.000000 0.000002 0.000001
|
|
926
|
+
1.000000 0.000002 0.000002
|
|
927
|
+
1.000000 0.000001 0.000001
|
|
928
|
+
1.000000 0.000002 0.000001
|
|
929
|
+
1.000000 0.000000 -0.000000
|
|
930
|
+
1.000000 0.000000 0.000000
|
|
931
|
+
0.500655 -0.651887 -0.569551
|
|
932
|
+
0.495617 -0.656343 -0.568838
|
|
933
|
+
0.488629 -0.662443 -0.567812
|
|
934
|
+
0.500655 -0.651887 -0.569551
|
|
935
|
+
0.506206 -0.646918 -0.570309
|
|
936
|
+
0.495617 -0.656343 -0.568838
|
|
937
|
+
-0.487796 -0.863075 0.130984
|
|
938
|
+
-0.508768 -0.849159 0.141717
|
|
939
|
+
-0.455606 -0.882764 0.114676
|
|
940
|
+
-0.455606 -0.882764 0.114676
|
|
941
|
+
-0.441794 -0.890624 0.107737
|
|
942
|
+
-0.487796 -0.863075 0.130984
|
|
943
|
+
-0.986390 0.007909 0.164233
|
|
944
|
+
-0.977982 0.070184 0.196533
|
|
945
|
+
-0.989363 -0.036144 0.140903
|
|
946
|
+
-0.989363 -0.036144 0.140903
|
|
947
|
+
-0.989968 -0.070890 0.122219
|
|
948
|
+
-0.986390 0.007909 0.164233
|
|
949
|
+
-0.482718 0.873074 0.068739
|
|
950
|
+
-0.482713 0.873076 0.068744
|
|
951
|
+
-0.482838 0.873018 0.068611
|
|
952
|
+
-0.482718 0.873074 0.068739
|
|
953
|
+
-0.482537 0.873159 0.068933
|
|
954
|
+
-0.482713 0.873076 0.068744
|
|
955
|
+
0.482741 0.873062 0.068729
|
|
956
|
+
0.482736 0.873065 0.068723
|
|
957
|
+
0.482894 0.872962 0.068918
|
|
958
|
+
0.482741 0.873062 0.068729
|
|
959
|
+
0.482602 0.873152 0.068558
|
|
960
|
+
0.482736 0.873065 0.068723
|
|
961
|
+
0.990685 -0.001800 0.136159
|
|
962
|
+
0.992928 0.039932 0.111805
|
|
963
|
+
0.985772 -0.046072 0.161649
|
|
964
|
+
0.985772 -0.046072 0.161649
|
|
965
|
+
0.972423 -0.117011 0.201747
|
|
966
|
+
0.990685 -0.001800 0.136159
|
|
967
|
+
0.487656 -0.865798 0.112184
|
|
968
|
+
0.505702 -0.856464 0.103605
|
|
969
|
+
0.453264 -0.882126 0.128084
|
|
970
|
+
0.453264 -0.882126 0.128084
|
|
971
|
+
0.433476 -0.890694 0.136978
|
|
972
|
+
0.487656 -0.865798 0.112184
|
|
973
|
+
-0.506183 -0.830764 0.231539
|
|
974
|
+
-0.511981 -0.826995 0.232282
|
|
975
|
+
-0.512976 -0.826342 0.232408
|
|
976
|
+
-0.506183 -0.830764 0.231539
|
|
977
|
+
-0.504855 -0.831619 0.231367
|
|
978
|
+
-0.511981 -0.826995 0.232282
|
|
979
|
+
-0.998246 0.017085 0.056687
|
|
980
|
+
-0.998194 0.019763 0.056730
|
|
981
|
+
-0.998184 0.020259 0.056737
|
|
982
|
+
-0.998246 0.017085 0.056687
|
|
983
|
+
-0.998257 0.016454 0.056677
|
|
984
|
+
-0.998194 0.019763 0.056730
|
|
985
|
+
-0.519587 0.846773 -0.114036
|
|
986
|
+
-0.508377 0.853743 -0.112585
|
|
987
|
+
-0.506472 0.854907 -0.112338
|
|
988
|
+
-0.519587 0.846773 -0.114036
|
|
989
|
+
-0.522047 0.845216 -0.114353
|
|
990
|
+
-0.508377 0.853743 -0.112585
|
|
991
|
+
0.519452 0.847285 -0.110803
|
|
992
|
+
0.508482 0.853367 -0.114935
|
|
993
|
+
0.506746 0.854312 -0.115584
|
|
994
|
+
0.519452 0.847285 -0.110803
|
|
995
|
+
0.521703 0.846013 -0.109948
|
|
996
|
+
0.508482 0.853367 -0.114935
|
|
997
|
+
0.998205 0.017237 0.057357
|
|
998
|
+
0.998223 0.019651 0.056253
|
|
999
|
+
0.998225 0.020031 0.056080
|
|
1000
|
+
0.998205 0.017237 0.057357
|
|
1001
|
+
0.998200 0.016720 0.057593
|
|
1002
|
+
0.998223 0.019651 0.056253
|
|
1003
|
+
0.506156 -0.830304 0.233239
|
|
1004
|
+
0.511999 -0.827324 0.231068
|
|
1005
|
+
0.512937 -0.826841 0.230717
|
|
1006
|
+
0.506156 -0.830304 0.233239
|
|
1007
|
+
0.504911 -0.830933 0.233699
|
|
1008
|
+
0.511999 -0.827324 0.231068
|
|
1009
|
+
-0.020412 0.274399 0.961399
|
|
1010
|
+
-0.031469 0.220118 0.974966
|
|
1011
|
+
-0.027051 0.241953 0.969911
|
|
1012
|
+
-0.027051 0.241953 0.969911
|
|
1013
|
+
-0.017748 0.287294 0.957678
|
|
1014
|
+
-0.020412 0.274399 0.961399
|
|
1015
|
+
-0.039996 0.288530 0.956635
|
|
1016
|
+
0.064206 0.329667 0.941911
|
|
1017
|
+
0.019336 0.312431 0.949744
|
|
1018
|
+
0.019336 0.312431 0.949744
|
|
1019
|
+
-0.064671 0.278218 0.958338
|
|
1020
|
+
-0.039996 0.288530 0.956635
|
|
1021
|
+
0.045474 0.242269 0.969143
|
|
1022
|
+
0.132958 0.177326 0.975130
|
|
1023
|
+
0.093777 0.206819 0.973875
|
|
1024
|
+
0.093777 0.206819 0.973875
|
|
1025
|
+
0.027967 0.254873 0.966570
|
|
1026
|
+
0.045474 0.242269 0.969143
|
|
1027
|
+
-0.071442 0.200449 0.977096
|
|
1028
|
+
-0.050119 0.300767 0.952380
|
|
1029
|
+
-0.059420 0.257742 0.964385
|
|
1030
|
+
-0.059420 0.257742 0.964385
|
|
1031
|
+
-0.075962 0.178397 0.981022
|
|
1032
|
+
-0.071442 0.200449 0.977096
|
|
1033
|
+
-0.013714 0.288738 0.957310
|
|
1034
|
+
0.094004 0.328886 0.939679
|
|
1035
|
+
0.046277 0.311589 0.949090
|
|
1036
|
+
0.046277 0.311589 0.949090
|
|
1037
|
+
-0.039379 0.278585 0.959604
|
|
1038
|
+
-0.013714 0.288738 0.957310
|
|
1039
|
+
0.034613 0.250079 0.967607
|
|
1040
|
+
-0.017956 0.287293 0.957674
|
|
1041
|
+
0.006594 0.270059 0.962821
|
|
1042
|
+
0.006594 0.270059 0.962821
|
|
1043
|
+
0.044474 0.242968 0.969014
|
|
1044
|
+
0.034613 0.250079 0.967607
|
|
1045
|
+
-0.555046 -0.777001 0.296972
|
|
1046
|
+
-0.550293 -0.780444 0.296789
|
|
1047
|
+
-0.574059 -0.762815 0.297607
|
|
1048
|
+
-0.574059 -0.762815 0.297607
|
|
1049
|
+
-0.578116 -0.759700 0.297721
|
|
1050
|
+
-0.555046 -0.777001 0.296972
|
|
1051
|
+
-1.000000 0.000000 0.000000
|
|
1052
|
+
-1.000000 0.000000 0.000000
|
|
1053
|
+
-1.000000 0.000000 0.000000
|
|
1054
|
+
-1.000000 0.000000 0.000000
|
|
1055
|
+
-1.000000 0.000000 0.000000
|
|
1056
|
+
-1.000000 0.000000 0.000000
|
|
1057
|
+
-0.550402 0.785506 -0.282908
|
|
1058
|
+
-0.556590 0.780952 -0.283412
|
|
1059
|
+
-0.558224 0.779737 -0.283542
|
|
1060
|
+
-0.550402 0.785506 -0.282908
|
|
1061
|
+
-0.548613 0.786810 -0.282760
|
|
1062
|
+
-0.556590 0.780952 -0.283412
|
|
1063
|
+
0.550469 0.784765 -0.284829
|
|
1064
|
+
0.556579 0.781654 -0.281488
|
|
1065
|
+
0.558172 0.780833 -0.280612
|
|
1066
|
+
0.550469 0.784765 -0.284829
|
|
1067
|
+
0.548965 0.785521 -0.285646
|
|
1068
|
+
0.556579 0.781654 -0.281488
|
|
1069
|
+
1.000000 0.000000 0.000000
|
|
1070
|
+
1.000000 0.000000 0.000000
|
|
1071
|
+
1.000000 0.000000 0.000000
|
|
1072
|
+
1.000000 0.000000 0.000000
|
|
1073
|
+
1.000000 0.000000 0.000000
|
|
1074
|
+
1.000000 0.000000 0.000000
|
|
1075
|
+
0.555216 -0.774807 0.302341
|
|
1076
|
+
0.551155 -0.776876 0.304453
|
|
1077
|
+
0.574141 -0.764804 0.292298
|
|
1078
|
+
0.574141 -0.764804 0.292298
|
|
1079
|
+
0.578511 -0.762408 0.289930
|
|
1080
|
+
0.555216 -0.774807 0.302341
|
|
1081
|
+
-0.578661 -0.286895 0.763441
|
|
1082
|
+
-0.578661 -0.286895 0.763441
|
|
1083
|
+
-0.578661 -0.286895 0.763441
|
|
1084
|
+
-0.493809 -0.346072 0.797739
|
|
1085
|
+
-0.493809 -0.346072 0.797739
|
|
1086
|
+
-0.493809 -0.346072 0.797739
|
|
1087
|
+
-0.974246 0.209913 0.082346
|
|
1088
|
+
-0.972660 0.222438 0.066733
|
|
1089
|
+
-0.975801 0.137459 0.170052
|
|
1090
|
+
-0.975801 0.137459 0.170052
|
|
1091
|
+
-0.975078 0.127944 0.181251
|
|
1092
|
+
-0.974246 0.209913 0.082346
|
|
1093
|
+
-0.551070 0.497395 -0.670015
|
|
1094
|
+
-0.538417 0.501317 -0.677339
|
|
1095
|
+
-0.536660 0.501850 -0.678338
|
|
1096
|
+
-0.551070 0.497395 -0.670015
|
|
1097
|
+
-0.553002 0.496782 -0.668877
|
|
1098
|
+
-0.538417 0.501317 -0.677339
|
|
1099
|
+
0.590795 0.252789 -0.766198
|
|
1100
|
+
0.604652 0.248225 -0.756823
|
|
1101
|
+
0.491371 0.281928 -0.824058
|
|
1102
|
+
0.491371 0.281928 -0.824058
|
|
1103
|
+
0.473503 0.286558 -0.832874
|
|
1104
|
+
0.590795 0.252789 -0.766198
|
|
1105
|
+
0.980516 -0.183325 -0.070571
|
|
1106
|
+
0.980573 -0.187882 -0.056366
|
|
1107
|
+
0.973358 -0.148498 -0.174708
|
|
1108
|
+
0.973358 -0.148498 -0.174708
|
|
1109
|
+
0.970015 -0.140163 -0.198561
|
|
1110
|
+
0.980516 -0.183325 -0.070571
|
|
1111
|
+
0.571886 -0.496928 0.652693
|
|
1112
|
+
0.575639 -0.496832 0.649459
|
|
1113
|
+
0.541229 -0.497258 0.678090
|
|
1114
|
+
0.541229 -0.497258 0.678090
|
|
1115
|
+
0.535633 -0.497233 0.682537
|
|
1116
|
+
0.571886 -0.496928 0.652693
|
|
1117
|
+
-0.566459 0.140330 0.812054
|
|
1118
|
+
-0.545508 0.135672 0.827052
|
|
1119
|
+
-0.543964 0.135329 0.828124
|
|
1120
|
+
-0.566459 0.140330 0.812054
|
|
1121
|
+
-0.568511 0.140786 0.810539
|
|
1122
|
+
-0.545508 0.135672 0.827052
|
|
1123
|
+
-0.988060 0.149973 -0.035280
|
|
1124
|
+
-0.987707 0.150303 -0.042944
|
|
1125
|
+
-0.988502 0.146380 0.037897
|
|
1126
|
+
-0.988502 0.146380 0.037897
|
|
1127
|
+
-0.988306 0.146055 0.043817
|
|
1128
|
+
-0.988060 0.149973 -0.035280
|
|
1129
|
+
-0.552702 0.018248 -0.833179
|
|
1130
|
+
-0.567747 0.019180 -0.822979
|
|
1131
|
+
-0.568874 0.019250 -0.822199
|
|
1132
|
+
-0.552702 0.018248 -0.833179
|
|
1133
|
+
-0.551271 0.018160 -0.834129
|
|
1134
|
+
-0.567747 0.019180 -0.822979
|
|
1135
|
+
0.552050 -0.155065 -0.819265
|
|
1136
|
+
0.562950 -0.154519 -0.811918
|
|
1137
|
+
0.563993 -0.154465 -0.811204
|
|
1138
|
+
0.552050 -0.155065 -0.819265
|
|
1139
|
+
0.551196 -0.155106 -0.819832
|
|
1140
|
+
0.562950 -0.154519 -0.811918
|
|
1141
|
+
0.989369 -0.141352 0.034196
|
|
1142
|
+
0.989322 -0.140140 0.040040
|
|
1143
|
+
0.987045 -0.155886 -0.037963
|
|
1144
|
+
0.987045 -0.155886 -0.037963
|
|
1145
|
+
0.986351 -0.157711 -0.047314
|
|
1146
|
+
0.989369 -0.141352 0.034196
|
|
1147
|
+
0.533490 -0.008010 0.845769
|
|
1148
|
+
0.529091 -0.006618 0.848540
|
|
1149
|
+
0.589216 -0.026070 0.807555
|
|
1150
|
+
0.589216 -0.026070 0.807555
|
|
1151
|
+
0.594760 -0.027913 0.803419
|
|
1152
|
+
0.533490 -0.008010 0.845769
|
|
1153
|
+
-0.600458 0.404295 0.689924
|
|
1154
|
+
-0.601871 0.404033 0.688846
|
|
1155
|
+
-0.562447 0.410736 0.717600
|
|
1156
|
+
-0.562447 0.410736 0.717600
|
|
1157
|
+
-0.561172 0.410933 0.718485
|
|
1158
|
+
-0.600458 0.404295 0.689924
|
|
1159
|
+
-0.994314 0.089311 -0.057985
|
|
1160
|
+
-0.994288 0.088803 -0.059202
|
|
1161
|
+
-0.994439 0.100960 -0.029964
|
|
1162
|
+
-0.994439 0.100960 -0.029964
|
|
1163
|
+
-0.994427 0.101374 -0.028964
|
|
1164
|
+
-0.994314 0.089311 -0.057985
|
|
1165
|
+
-0.555464 -0.307126 -0.772744
|
|
1166
|
+
-0.555464 -0.307126 -0.772744
|
|
1167
|
+
-0.555464 -0.307126 -0.772744
|
|
1168
|
+
-0.583257 -0.297535 -0.755834
|
|
1169
|
+
-0.583257 -0.297535 -0.755834
|
|
1170
|
+
-0.583257 -0.297535 -0.755834
|
|
1171
|
+
0.546073 -0.416843 -0.726668
|
|
1172
|
+
0.554310 -0.414788 -0.721589
|
|
1173
|
+
0.554587 -0.414718 -0.721417
|
|
1174
|
+
0.546073 -0.416843 -0.726668
|
|
1175
|
+
0.545816 -0.416906 -0.726825
|
|
1176
|
+
0.554310 -0.414788 -0.721589
|
|
1177
|
+
0.994499 -0.087765 0.057181
|
|
1178
|
+
0.994490 -0.087223 0.058149
|
|
1179
|
+
0.994255 -0.102548 0.030665
|
|
1180
|
+
0.994255 -0.102548 0.030665
|
|
1181
|
+
0.994223 -0.103203 0.029487
|
|
1182
|
+
0.994499 -0.087765 0.057181
|
|
1183
|
+
0.564954 0.306138 0.766229
|
|
1184
|
+
0.564305 0.306356 0.766620
|
|
1185
|
+
0.545489 0.312571 0.777651
|
|
1186
|
+
0.545489 0.312571 0.777651
|
|
1187
|
+
0.564305 0.306356 0.766620
|
|
1188
|
+
0.544885 0.312766 0.777996
|
|
1189
|
+
-0.529995 0.598933 0.600320
|
|
1190
|
+
-0.525881 0.600422 0.602447
|
|
1191
|
+
-0.598586 0.571185 0.561642
|
|
1192
|
+
-0.598586 0.571185 0.561642
|
|
1193
|
+
-0.601733 0.569772 0.559712
|
|
1194
|
+
-0.529995 0.598933 0.600320
|
|
1195
|
+
-0.999770 0.008676 -0.019608
|
|
1196
|
+
-0.999815 0.015698 -0.011107
|
|
1197
|
+
-0.999814 0.016040 -0.010693
|
|
1198
|
+
-0.999770 0.008676 -0.019608
|
|
1199
|
+
-0.999761 0.008115 -0.020287
|
|
1200
|
+
-0.999815 0.015698 -0.011107
|
|
1201
|
+
-0.522889 -0.579651 -0.624974
|
|
1202
|
+
-0.519672 -0.580857 -0.626535
|
|
1203
|
+
-0.575351 -0.558343 -0.597682
|
|
1204
|
+
-0.575351 -0.558343 -0.597682
|
|
1205
|
+
-0.578002 -0.557181 -0.596207
|
|
1206
|
+
-0.522889 -0.579651 -0.624974
|
|
1207
|
+
0.526519 -0.598119 -0.604178
|
|
1208
|
+
0.525341 -0.598679 -0.604650
|
|
1209
|
+
0.551392 -0.585920 -0.593856
|
|
1210
|
+
0.551392 -0.585920 -0.593856
|
|
1211
|
+
0.552702 -0.585256 -0.593292
|
|
1212
|
+
0.526519 -0.598119 -0.604178
|
|
1213
|
+
0.999695 -0.009699 0.022703
|
|
1214
|
+
0.999710 -0.019588 0.013999
|
|
1215
|
+
0.999705 -0.020196 0.013464
|
|
1216
|
+
0.999695 -0.009699 0.022703
|
|
1217
|
+
0.999690 -0.009242 0.023106
|
|
1218
|
+
0.999710 -0.019588 0.013999
|
|
1219
|
+
0.524909 0.588573 0.614860
|
|
1220
|
+
0.522544 0.589774 0.615723
|
|
1221
|
+
0.575990 0.560941 0.594626
|
|
1222
|
+
0.575990 0.560941 0.594626
|
|
1223
|
+
0.578609 0.559434 0.593503
|
|
1224
|
+
0.524909 0.588573 0.614860
|
|
1225
|
+
-0.563200 0.822718 0.077074
|
|
1226
|
+
-0.544499 0.834679 0.082650
|
|
1227
|
+
-0.543024 0.835597 0.083084
|
|
1228
|
+
-0.563200 0.822718 0.077074
|
|
1229
|
+
-0.564866 0.821622 0.076571
|
|
1230
|
+
-0.544499 0.834679 0.082650
|
|
1231
|
+
-0.997143 -0.004069 -0.075433
|
|
1232
|
+
-0.997058 -0.007268 -0.076301
|
|
1233
|
+
-0.997409 0.024489 -0.067648
|
|
1234
|
+
-0.997409 0.024489 -0.067648
|
|
1235
|
+
-0.997392 0.026804 -0.067014
|
|
1236
|
+
-0.997143 -0.004069 -0.075433
|
|
1237
|
+
-0.558749 -0.813976 -0.158879
|
|
1238
|
+
-0.552168 -0.818245 -0.159958
|
|
1239
|
+
-0.551631 -0.818590 -0.160045
|
|
1240
|
+
-0.558749 -0.813976 -0.158879
|
|
1241
|
+
-0.559342 -0.813588 -0.158781
|
|
1242
|
+
-0.552168 -0.818245 -0.159958
|
|
1243
|
+
0.563293 -0.822731 -0.076263
|
|
1244
|
+
0.544012 -0.835561 -0.076747
|
|
1245
|
+
0.542170 -0.836753 -0.076790
|
|
1246
|
+
0.563293 -0.822731 -0.076263
|
|
1247
|
+
0.564881 -0.821644 -0.076221
|
|
1248
|
+
0.544012 -0.835561 -0.076747
|
|
1249
|
+
0.997413 0.004392 0.071750
|
|
1250
|
+
0.997396 0.006839 0.071792
|
|
1251
|
+
0.997144 -0.025200 0.071199
|
|
1252
|
+
0.997144 -0.025200 0.071199
|
|
1253
|
+
0.997061 -0.028452 0.071134
|
|
1254
|
+
0.997413 0.004392 0.071750
|
|
1255
|
+
0.559652 0.814038 0.155342
|
|
1256
|
+
0.559062 0.814426 0.155436
|
|
1257
|
+
0.551858 0.819107 0.156576
|
|
1258
|
+
0.551858 0.819107 0.156576
|
|
1259
|
+
0.559062 0.814426 0.155436
|
|
1260
|
+
0.551324 0.819451 0.156660
|
|
1261
|
+
-0.569730 0.717350 -0.401021
|
|
1262
|
+
-0.569730 0.717350 -0.401021
|
|
1263
|
+
-0.569730 0.717350 -0.401021
|
|
1264
|
+
-0.515830 0.750297 -0.413489
|
|
1265
|
+
-0.515830 0.750297 -0.413488
|
|
1266
|
+
-0.515830 0.750297 -0.413489
|
|
1267
|
+
-0.999639 0.017240 0.020608
|
|
1268
|
+
-0.999645 0.003668 0.026398
|
|
1269
|
+
-0.999636 0.002560 0.026871
|
|
1270
|
+
-0.999639 0.017240 0.020608
|
|
1271
|
+
-0.999625 0.018725 0.019974
|
|
1272
|
+
-0.999645 0.003668 0.026398
|
|
1273
|
+
-0.585945 -0.679310 0.441822
|
|
1274
|
+
-0.593912 -0.673502 0.440072
|
|
1275
|
+
-0.510416 -0.729220 0.455756
|
|
1276
|
+
-0.510416 -0.729220 0.455756
|
|
1277
|
+
-0.503986 -0.733069 0.456736
|
|
1278
|
+
-0.585945 -0.679310 0.441822
|
|
1279
|
+
0.559615 -0.719324 0.411588
|
|
1280
|
+
0.563503 -0.717437 0.409571
|
|
1281
|
+
0.515595 -0.739169 0.433348
|
|
1282
|
+
0.515595 -0.739169 0.433348
|
|
1283
|
+
0.509830 -0.741570 0.436058
|
|
1284
|
+
0.559615 -0.719324 0.411588
|
|
1285
|
+
0.999415 -0.023401 -0.024962
|
|
1286
|
+
0.999436 -0.021546 -0.025754
|
|
1287
|
+
0.999445 -0.004584 -0.032990
|
|
1288
|
+
0.999445 -0.004584 -0.032990
|
|
1289
|
+
0.999436 -0.021546 -0.025754
|
|
1290
|
+
0.999431 -0.003199 -0.033580
|
|
1291
|
+
0.547245 0.717670 -0.430665
|
|
1292
|
+
0.547245 0.717670 -0.430665
|
|
1293
|
+
0.547245 0.717670 -0.430665
|
|
1294
|
+
0.506857 0.737245 -0.446727
|
|
1295
|
+
0.506857 0.737245 -0.446727
|
|
1296
|
+
0.506857 0.737245 -0.446727
|
|
1297
|
+
-0.973863 0.197201 0.112708
|
|
1298
|
+
-0.973369 0.202861 0.106768
|
|
1299
|
+
-0.975468 0.155345 0.155982
|
|
1300
|
+
-0.975468 0.155345 0.155982
|
|
1301
|
+
-0.975428 0.150682 0.160733
|
|
1302
|
+
-0.973863 0.197201 0.112708
|
|
1303
|
+
-0.572744 -0.356560 0.738126
|
|
1304
|
+
-0.573318 -0.356300 0.737805
|
|
1305
|
+
-0.579295 -0.353580 0.734437
|
|
1306
|
+
-0.579295 -0.353580 0.734437
|
|
1307
|
+
-0.573318 -0.356300 0.737805
|
|
1308
|
+
-0.579934 -0.353287 0.734074
|
|
1309
|
+
0.578041 -0.573854 0.580139
|
|
1310
|
+
0.577979 -0.573877 0.580177
|
|
1311
|
+
0.577400 -0.574097 0.580536
|
|
1312
|
+
0.577400 -0.574097 0.580536
|
|
1313
|
+
0.577979 -0.573877 0.580177
|
|
1314
|
+
0.577345 -0.574118 0.580570
|
|
1315
|
+
0.975965 -0.189490 -0.107639
|
|
1316
|
+
0.976035 -0.192572 -0.101353
|
|
1317
|
+
0.973379 -0.162536 -0.161603
|
|
1318
|
+
0.973379 -0.162536 -0.161603
|
|
1319
|
+
0.972723 -0.158652 -0.169234
|
|
1320
|
+
0.975965 -0.189490 -0.107639
|
|
1321
|
+
</float_array>
|
|
1322
|
+
<technique_common>
|
|
1323
|
+
<accessor source="#drc_head_camera-Normal0-array" count="768" stride="3">
|
|
1324
|
+
<param name="X" type="float"/>
|
|
1325
|
+
<param name="Y" type="float"/>
|
|
1326
|
+
<param name="Z" type="float"/>
|
|
1327
|
+
</accessor>
|
|
1328
|
+
</technique_common>
|
|
1329
|
+
</source>
|
|
1330
|
+
<source id="drc_head_camera-UV0">
|
|
1331
|
+
<float_array id="drc_head_camera-UV0-array" count="956">
|
|
1332
|
+
0.133754 0.681922
|
|
1333
|
+
0.181482 0.635359
|
|
1334
|
+
0.180778 0.682624
|
|
1335
|
+
0.134470 0.634659
|
|
1336
|
+
0.021930 0.679978
|
|
1337
|
+
0.055151 0.633322
|
|
1338
|
+
0.054326 0.680559
|
|
1339
|
+
0.022837 0.632718
|
|
1340
|
+
0.100776 0.713778
|
|
1341
|
+
0.054326 0.680559
|
|
1342
|
+
0.101347 0.681382
|
|
1343
|
+
0.053760 0.712952
|
|
1344
|
+
0.134470 0.634659
|
|
1345
|
+
0.101347 0.681382
|
|
1346
|
+
0.102164 0.634145
|
|
1347
|
+
0.133754 0.681922
|
|
1348
|
+
0.055716 0.601002
|
|
1349
|
+
0.102164 0.634145
|
|
1350
|
+
0.055151 0.633322
|
|
1351
|
+
0.102731 0.601827
|
|
1352
|
+
0.138898 0.929339
|
|
1353
|
+
0.127862 0.965597
|
|
1354
|
+
0.127960 0.940189
|
|
1355
|
+
0.138715 0.976532
|
|
1356
|
+
0.164131 0.929437
|
|
1357
|
+
0.163949 0.976630
|
|
1358
|
+
0.175062 0.940371
|
|
1359
|
+
0.174966 0.965779
|
|
1360
|
+
0.265189 0.941677
|
|
1361
|
+
0.229108 0.930628
|
|
1362
|
+
0.254343 0.930737
|
|
1363
|
+
0.218087 0.941473
|
|
1364
|
+
0.265079 0.967060
|
|
1365
|
+
0.217977 0.966855
|
|
1366
|
+
0.254137 0.977906
|
|
1367
|
+
0.228904 0.977795
|
|
1368
|
+
0.244797 0.581703
|
|
1369
|
+
0.219396 0.566907
|
|
1370
|
+
0.244801 0.566935
|
|
1371
|
+
0.219413 0.581751
|
|
1372
|
+
0.285437 0.581726
|
|
1373
|
+
0.260205 0.566958
|
|
1374
|
+
0.285437 0.566957
|
|
1375
|
+
0.260203 0.581726
|
|
1376
|
+
0.163303 0.581776
|
|
1377
|
+
0.137895 0.566990
|
|
1378
|
+
0.163303 0.566931
|
|
1379
|
+
0.137920 0.581758
|
|
1380
|
+
0.204003 0.581728
|
|
1381
|
+
0.178764 0.566892
|
|
1382
|
+
0.203994 0.566883
|
|
1383
|
+
0.178767 0.581737
|
|
1384
|
+
0.260203 0.581726
|
|
1385
|
+
0.244801 0.566935
|
|
1386
|
+
0.260205 0.566958
|
|
1387
|
+
0.244797 0.581703
|
|
1388
|
+
0.203994 0.566883
|
|
1389
|
+
0.219413 0.581751
|
|
1390
|
+
0.204003 0.581728
|
|
1391
|
+
0.219396 0.566907
|
|
1392
|
+
0.300900 0.581708
|
|
1393
|
+
0.285437 0.566957
|
|
1394
|
+
0.300901 0.566940
|
|
1395
|
+
0.285437 0.581726
|
|
1396
|
+
0.178767 0.581737
|
|
1397
|
+
0.163303 0.566931
|
|
1398
|
+
0.178764 0.566892
|
|
1399
|
+
0.163303 0.581776
|
|
1400
|
+
0.116372 0.597283
|
|
1401
|
+
0.097490 0.569633
|
|
1402
|
+
0.116369 0.569619
|
|
1403
|
+
0.097497 0.597296
|
|
1404
|
+
0.135269 0.597263
|
|
1405
|
+
0.135193 0.569576
|
|
1406
|
+
0.041023 0.597225
|
|
1407
|
+
0.022174 0.569554
|
|
1408
|
+
0.041051 0.569562
|
|
1409
|
+
0.022185 0.597241
|
|
1410
|
+
0.059793 0.597278
|
|
1411
|
+
0.059859 0.569591
|
|
1412
|
+
0.078690 0.597290
|
|
1413
|
+
0.078683 0.569628
|
|
1414
|
+
0.261286 0.566310
|
|
1415
|
+
0.232032 0.561186
|
|
1416
|
+
0.261345 0.561584
|
|
1417
|
+
0.231985 0.565912
|
|
1418
|
+
0.202779 0.561011
|
|
1419
|
+
0.202773 0.565737
|
|
1420
|
+
0.061097 0.522335
|
|
1421
|
+
0.048648 0.504260
|
|
1422
|
+
0.060935 0.504151
|
|
1423
|
+
0.048810 0.522444
|
|
1424
|
+
0.048810 0.522444
|
|
1425
|
+
0.036262 0.504371
|
|
1426
|
+
0.048648 0.504260
|
|
1427
|
+
0.036425 0.522554
|
|
1428
|
+
0.147279 0.521571
|
|
1429
|
+
0.134732 0.503497
|
|
1430
|
+
0.147118 0.503388
|
|
1431
|
+
0.134893 0.521682
|
|
1432
|
+
0.134893 0.521682
|
|
1433
|
+
0.122446 0.503606
|
|
1434
|
+
0.134732 0.503497
|
|
1435
|
+
0.122607 0.521791
|
|
1436
|
+
0.122607 0.521791
|
|
1437
|
+
0.110159 0.503715
|
|
1438
|
+
0.122446 0.503606
|
|
1439
|
+
0.110319 0.521899
|
|
1440
|
+
0.110319 0.521899
|
|
1441
|
+
0.097819 0.503824
|
|
1442
|
+
0.110159 0.503715
|
|
1443
|
+
0.097980 0.522008
|
|
1444
|
+
0.097980 0.522008
|
|
1445
|
+
0.085562 0.503933
|
|
1446
|
+
0.097819 0.503824
|
|
1447
|
+
0.085724 0.522116
|
|
1448
|
+
0.085724 0.522116
|
|
1449
|
+
0.073223 0.504042
|
|
1450
|
+
0.085562 0.503933
|
|
1451
|
+
0.073384 0.522226
|
|
1452
|
+
0.073384 0.522226
|
|
1453
|
+
0.060935 0.504151
|
|
1454
|
+
0.073223 0.504042
|
|
1455
|
+
0.061097 0.522335
|
|
1456
|
+
0.375896 0.706723
|
|
1457
|
+
0.375855 0.685266
|
|
1458
|
+
0.379371 0.696036
|
|
1459
|
+
0.366771 0.678698
|
|
1460
|
+
0.366838 0.713376
|
|
1461
|
+
0.355441 0.678736
|
|
1462
|
+
0.355551 0.713354
|
|
1463
|
+
0.346382 0.685387
|
|
1464
|
+
0.346466 0.706787
|
|
1465
|
+
0.342905 0.696075
|
|
1466
|
+
0.339280 0.568959
|
|
1467
|
+
0.346200 0.580605
|
|
1468
|
+
0.339245 0.580665
|
|
1469
|
+
0.346204 0.568996
|
|
1470
|
+
0.332352 0.569084
|
|
1471
|
+
0.332396 0.580771
|
|
1472
|
+
0.325435 0.569151
|
|
1473
|
+
0.325435 0.580777
|
|
1474
|
+
0.318519 0.569083
|
|
1475
|
+
0.318473 0.580771
|
|
1476
|
+
0.311590 0.568959
|
|
1477
|
+
0.311624 0.580665
|
|
1478
|
+
0.304666 0.568995
|
|
1479
|
+
0.304670 0.580605
|
|
1480
|
+
0.192576 0.584091
|
|
1481
|
+
0.190283 0.587995
|
|
1482
|
+
0.187933 0.588076
|
|
1483
|
+
0.191396 0.582017
|
|
1484
|
+
0.190283 0.587995
|
|
1485
|
+
0.192605 0.592067
|
|
1486
|
+
0.191322 0.594041
|
|
1487
|
+
0.187933 0.588076
|
|
1488
|
+
0.192605 0.592067
|
|
1489
|
+
0.197131 0.592088
|
|
1490
|
+
0.198312 0.594163
|
|
1491
|
+
0.191322 0.594041
|
|
1492
|
+
0.197131 0.592088
|
|
1493
|
+
0.199421 0.588186
|
|
1494
|
+
0.201773 0.588090
|
|
1495
|
+
0.198312 0.594163
|
|
1496
|
+
0.199421 0.588186
|
|
1497
|
+
0.197104 0.584111
|
|
1498
|
+
0.198373 0.582131
|
|
1499
|
+
0.201773 0.588090
|
|
1500
|
+
0.197104 0.584111
|
|
1501
|
+
0.192576 0.584091
|
|
1502
|
+
0.191396 0.582017
|
|
1503
|
+
0.198373 0.582131
|
|
1504
|
+
0.280772 0.596982
|
|
1505
|
+
0.274549 0.602551
|
|
1506
|
+
0.273431 0.597753
|
|
1507
|
+
0.281634 0.601094
|
|
1508
|
+
0.282936 0.605405
|
|
1509
|
+
0.277726 0.611334
|
|
1510
|
+
0.276420 0.607007
|
|
1511
|
+
0.283770 0.609927
|
|
1512
|
+
0.281019 0.583699
|
|
1513
|
+
0.274434 0.588080
|
|
1514
|
+
0.274814 0.583577
|
|
1515
|
+
0.281141 0.588294
|
|
1516
|
+
0.280761 0.592782
|
|
1517
|
+
0.273431 0.597753
|
|
1518
|
+
0.273529 0.592827
|
|
1519
|
+
0.280772 0.596982
|
|
1520
|
+
0.288653 0.596156
|
|
1521
|
+
0.281634 0.601094
|
|
1522
|
+
0.280772 0.596982
|
|
1523
|
+
0.288235 0.601149
|
|
1524
|
+
0.288235 0.601149
|
|
1525
|
+
0.274549 0.602551
|
|
1526
|
+
0.281634 0.601094
|
|
1527
|
+
0.282936 0.605405
|
|
1528
|
+
0.276420 0.607007
|
|
1529
|
+
0.287010 0.605781
|
|
1530
|
+
0.287010 0.605781
|
|
1531
|
+
0.286297 0.610273
|
|
1532
|
+
0.283770 0.609927
|
|
1533
|
+
0.282936 0.605405
|
|
1534
|
+
0.283418 0.582836
|
|
1535
|
+
0.285048 0.587082
|
|
1536
|
+
0.281141 0.588294
|
|
1537
|
+
0.281019 0.583699
|
|
1538
|
+
0.273529 0.592827
|
|
1539
|
+
0.287207 0.591359
|
|
1540
|
+
0.280761 0.592782
|
|
1541
|
+
0.281141 0.588294
|
|
1542
|
+
0.285048 0.587082
|
|
1543
|
+
0.274434 0.588080
|
|
1544
|
+
0.287207 0.591359
|
|
1545
|
+
0.280772 0.596982
|
|
1546
|
+
0.280761 0.592782
|
|
1547
|
+
0.288653 0.596156
|
|
1548
|
+
0.283221 0.669399
|
|
1549
|
+
0.284152 0.666118
|
|
1550
|
+
0.292451 0.666894
|
|
1551
|
+
0.292921 0.671500
|
|
1552
|
+
0.284152 0.666118
|
|
1553
|
+
0.285195 0.662685
|
|
1554
|
+
0.290084 0.662927
|
|
1555
|
+
0.292451 0.666894
|
|
1556
|
+
0.285195 0.662685
|
|
1557
|
+
0.288405 0.658704
|
|
1558
|
+
0.290084 0.662927
|
|
1559
|
+
0.285445 0.659213
|
|
1560
|
+
0.281029 0.679591
|
|
1561
|
+
0.286790 0.678130
|
|
1562
|
+
0.283514 0.681278
|
|
1563
|
+
0.282239 0.676326
|
|
1564
|
+
0.282239 0.676326
|
|
1565
|
+
0.282712 0.672770
|
|
1566
|
+
0.290587 0.675498
|
|
1567
|
+
0.286790 0.678130
|
|
1568
|
+
0.282712 0.672770
|
|
1569
|
+
0.283221 0.669399
|
|
1570
|
+
0.292921 0.671500
|
|
1571
|
+
0.290587 0.675498
|
|
1572
|
+
0.270286 0.666595
|
|
1573
|
+
0.284152 0.666118
|
|
1574
|
+
0.283221 0.669399
|
|
1575
|
+
0.270937 0.664127
|
|
1576
|
+
0.270937 0.664127
|
|
1577
|
+
0.285195 0.662685
|
|
1578
|
+
0.284152 0.666118
|
|
1579
|
+
0.271497 0.661601
|
|
1580
|
+
0.271497 0.661601
|
|
1581
|
+
0.285445 0.659213
|
|
1582
|
+
0.285195 0.662685
|
|
1583
|
+
0.271757 0.659082
|
|
1584
|
+
0.268516 0.674043
|
|
1585
|
+
0.282239 0.676326
|
|
1586
|
+
0.281029 0.679591
|
|
1587
|
+
0.269322 0.671643
|
|
1588
|
+
0.269322 0.671643
|
|
1589
|
+
0.282712 0.672770
|
|
1590
|
+
0.282239 0.676326
|
|
1591
|
+
0.269857 0.669112
|
|
1592
|
+
0.269857 0.669112
|
|
1593
|
+
0.283221 0.669399
|
|
1594
|
+
0.282712 0.672770
|
|
1595
|
+
0.270286 0.666595
|
|
1596
|
+
0.242001 0.640210
|
|
1597
|
+
0.243566 0.640059
|
|
1598
|
+
0.244090 0.640918
|
|
1599
|
+
0.241583 0.640934
|
|
1600
|
+
0.243566 0.640059
|
|
1601
|
+
0.244414 0.638589
|
|
1602
|
+
0.245380 0.638677
|
|
1603
|
+
0.244090 0.640918
|
|
1604
|
+
0.244414 0.638589
|
|
1605
|
+
0.243733 0.637205
|
|
1606
|
+
0.244179 0.636430
|
|
1607
|
+
0.245380 0.638677
|
|
1608
|
+
0.243733 0.637205
|
|
1609
|
+
0.242193 0.637308
|
|
1610
|
+
0.241632 0.636516
|
|
1611
|
+
0.244179 0.636430
|
|
1612
|
+
0.242193 0.637308
|
|
1613
|
+
0.241346 0.638779
|
|
1614
|
+
0.240341 0.638757
|
|
1615
|
+
0.241632 0.636516
|
|
1616
|
+
0.241346 0.638779
|
|
1617
|
+
0.242001 0.640210
|
|
1618
|
+
0.241583 0.640934
|
|
1619
|
+
0.240341 0.638757
|
|
1620
|
+
0.293750 0.589902
|
|
1621
|
+
0.292517 0.590311
|
|
1622
|
+
0.290125 0.584854
|
|
1623
|
+
0.291799 0.584041
|
|
1624
|
+
0.292517 0.590311
|
|
1625
|
+
0.288557 0.585933
|
|
1626
|
+
0.290125 0.584854
|
|
1627
|
+
0.291201 0.590972
|
|
1628
|
+
0.291201 0.590972
|
|
1629
|
+
0.287205 0.586793
|
|
1630
|
+
0.288557 0.585933
|
|
1631
|
+
0.289920 0.591743
|
|
1632
|
+
0.298008 0.588923
|
|
1633
|
+
0.295457 0.583747
|
|
1634
|
+
0.296998 0.583525
|
|
1635
|
+
0.296543 0.589414
|
|
1636
|
+
0.296543 0.589414
|
|
1637
|
+
0.293627 0.583833
|
|
1638
|
+
0.295457 0.583747
|
|
1639
|
+
0.295038 0.589716
|
|
1640
|
+
0.295038 0.589716
|
|
1641
|
+
0.293750 0.589902
|
|
1642
|
+
0.291799 0.584041
|
|
1643
|
+
0.293627 0.583833
|
|
1644
|
+
0.296754 0.598600
|
|
1645
|
+
0.294976 0.598616
|
|
1646
|
+
0.292517 0.590311
|
|
1647
|
+
0.292517 0.590311
|
|
1648
|
+
0.293750 0.589902
|
|
1649
|
+
0.296754 0.598600
|
|
1650
|
+
0.294976 0.598616
|
|
1651
|
+
0.293124 0.598526
|
|
1652
|
+
0.291201 0.590972
|
|
1653
|
+
0.292517 0.590311
|
|
1654
|
+
0.293124 0.598526
|
|
1655
|
+
0.289920 0.591743
|
|
1656
|
+
0.291201 0.590972
|
|
1657
|
+
0.291556 0.598885
|
|
1658
|
+
0.300730 0.595565
|
|
1659
|
+
0.299621 0.596638
|
|
1660
|
+
0.296543 0.589414
|
|
1661
|
+
0.298008 0.588923
|
|
1662
|
+
0.299621 0.596638
|
|
1663
|
+
0.298265 0.597835
|
|
1664
|
+
0.295038 0.589716
|
|
1665
|
+
0.296543 0.589414
|
|
1666
|
+
0.298265 0.597835
|
|
1667
|
+
0.296754 0.598600
|
|
1668
|
+
0.293750 0.589902
|
|
1669
|
+
0.295038 0.589716
|
|
1670
|
+
0.433091 0.813037
|
|
1671
|
+
0.433690 0.825772
|
|
1672
|
+
0.432042 0.825941
|
|
1673
|
+
0.434381 0.813183
|
|
1674
|
+
0.434381 0.813183
|
|
1675
|
+
0.435980 0.813125
|
|
1676
|
+
0.435289 0.825013
|
|
1677
|
+
0.433690 0.825772
|
|
1678
|
+
0.435980 0.813125
|
|
1679
|
+
0.436742 0.824483
|
|
1680
|
+
0.435289 0.825013
|
|
1681
|
+
0.437370 0.813074
|
|
1682
|
+
0.428754 0.812468
|
|
1683
|
+
0.429104 0.824274
|
|
1684
|
+
0.427693 0.823882
|
|
1685
|
+
0.430179 0.812435
|
|
1686
|
+
0.430179 0.812435
|
|
1687
|
+
0.431747 0.812727
|
|
1688
|
+
0.430585 0.825254
|
|
1689
|
+
0.429104 0.824274
|
|
1690
|
+
0.431747 0.812727
|
|
1691
|
+
0.433091 0.813037
|
|
1692
|
+
0.432042 0.825941
|
|
1693
|
+
0.430585 0.825254
|
|
1694
|
+
0.435238 0.784911
|
|
1695
|
+
0.436624 0.785115
|
|
1696
|
+
0.434381 0.813183
|
|
1697
|
+
0.433091 0.813037
|
|
1698
|
+
0.436624 0.785115
|
|
1699
|
+
0.438235 0.785143
|
|
1700
|
+
0.435980 0.813125
|
|
1701
|
+
0.434381 0.813183
|
|
1702
|
+
0.438235 0.785143
|
|
1703
|
+
0.439616 0.785229
|
|
1704
|
+
0.437370 0.813074
|
|
1705
|
+
0.435980 0.813125
|
|
1706
|
+
0.438235 0.785143
|
|
1707
|
+
0.430773 0.784505
|
|
1708
|
+
0.430179 0.812435
|
|
1709
|
+
0.428754 0.812468
|
|
1710
|
+
0.432201 0.784484
|
|
1711
|
+
0.432201 0.784484
|
|
1712
|
+
0.433783 0.784712
|
|
1713
|
+
0.431747 0.812727
|
|
1714
|
+
0.430179 0.812435
|
|
1715
|
+
0.433783 0.784712
|
|
1716
|
+
0.435238 0.784911
|
|
1717
|
+
0.431747 0.812727
|
|
1718
|
+
0.433091 0.813037
|
|
1719
|
+
0.436832 0.765155
|
|
1720
|
+
0.438133 0.765500
|
|
1721
|
+
0.436624 0.785115
|
|
1722
|
+
0.435238 0.784911
|
|
1723
|
+
0.438133 0.765500
|
|
1724
|
+
0.438235 0.785143
|
|
1725
|
+
0.436624 0.785115
|
|
1726
|
+
0.439583 0.765971
|
|
1727
|
+
0.439583 0.765971
|
|
1728
|
+
0.440988 0.766214
|
|
1729
|
+
0.439616 0.785229
|
|
1730
|
+
0.438235 0.785143
|
|
1731
|
+
0.432546 0.765492
|
|
1732
|
+
0.433988 0.765361
|
|
1733
|
+
0.432201 0.784484
|
|
1734
|
+
0.430773 0.784505
|
|
1735
|
+
0.433988 0.765361
|
|
1736
|
+
0.433783 0.784712
|
|
1737
|
+
0.432201 0.784484
|
|
1738
|
+
0.435503 0.765141
|
|
1739
|
+
0.435503 0.765141
|
|
1740
|
+
0.436832 0.765155
|
|
1741
|
+
0.435238 0.784911
|
|
1742
|
+
0.433783 0.784712
|
|
1743
|
+
0.437933 0.752250
|
|
1744
|
+
0.438133 0.765500
|
|
1745
|
+
0.436832 0.765155
|
|
1746
|
+
0.439552 0.752807
|
|
1747
|
+
0.439552 0.752807
|
|
1748
|
+
0.441121 0.753778
|
|
1749
|
+
0.439583 0.765971
|
|
1750
|
+
0.438133 0.765500
|
|
1751
|
+
0.441121 0.753778
|
|
1752
|
+
0.440988 0.766214
|
|
1753
|
+
0.439583 0.765971
|
|
1754
|
+
0.442574 0.754199
|
|
1755
|
+
0.433044 0.753412
|
|
1756
|
+
0.433988 0.765361
|
|
1757
|
+
0.432546 0.765492
|
|
1758
|
+
0.434538 0.753070
|
|
1759
|
+
0.434538 0.753070
|
|
1760
|
+
0.436242 0.752377
|
|
1761
|
+
0.435503 0.765141
|
|
1762
|
+
0.433988 0.765361
|
|
1763
|
+
0.436242 0.752377
|
|
1764
|
+
0.437933 0.752250
|
|
1765
|
+
0.435503 0.765141
|
|
1766
|
+
0.436832 0.765155
|
|
1767
|
+
0.421208 0.779750
|
|
1768
|
+
0.422545 0.779413
|
|
1769
|
+
0.423553 0.792400
|
|
1770
|
+
0.421966 0.793212
|
|
1771
|
+
0.421208 0.779750
|
|
1772
|
+
0.422545 0.779413
|
|
1773
|
+
0.425078 0.791264
|
|
1774
|
+
0.423553 0.792400
|
|
1775
|
+
0.424221 0.779189
|
|
1776
|
+
0.424221 0.779189
|
|
1777
|
+
0.425712 0.779229
|
|
1778
|
+
0.426543 0.790612
|
|
1779
|
+
0.425078 0.791264
|
|
1780
|
+
0.416603 0.779706
|
|
1781
|
+
0.418125 0.779862
|
|
1782
|
+
0.418581 0.791882
|
|
1783
|
+
0.417053 0.791269
|
|
1784
|
+
0.418125 0.779862
|
|
1785
|
+
0.419783 0.779916
|
|
1786
|
+
0.418581 0.791882
|
|
1787
|
+
0.420265 0.792825
|
|
1788
|
+
0.419783 0.779916
|
|
1789
|
+
0.421208 0.779750
|
|
1790
|
+
0.421966 0.793212
|
|
1791
|
+
0.421966 0.793212
|
|
1792
|
+
0.420265 0.792825
|
|
1793
|
+
0.419783 0.779916
|
|
1794
|
+
0.422041 0.768380
|
|
1795
|
+
0.423710 0.768377
|
|
1796
|
+
0.424221 0.779189
|
|
1797
|
+
0.422545 0.779413
|
|
1798
|
+
0.423710 0.768377
|
|
1799
|
+
0.425242 0.768750
|
|
1800
|
+
0.424221 0.779189
|
|
1801
|
+
0.425712 0.779229
|
|
1802
|
+
0.416207 0.768927
|
|
1803
|
+
0.417627 0.769186
|
|
1804
|
+
0.416603 0.779706
|
|
1805
|
+
0.418125 0.779862
|
|
1806
|
+
0.417627 0.769186
|
|
1807
|
+
0.419262 0.769090
|
|
1808
|
+
0.419783 0.779916
|
|
1809
|
+
0.418125 0.779862
|
|
1810
|
+
</float_array>
|
|
1811
|
+
<technique_common>
|
|
1812
|
+
<accessor source="#drc_head_camera-UV0-array" count="478" stride="2">
|
|
1813
|
+
<param name="S" type="float"/>
|
|
1814
|
+
<param name="T" type="float"/>
|
|
1815
|
+
</accessor>
|
|
1816
|
+
</technique_common>
|
|
1817
|
+
</source>
|
|
1818
|
+
<source id="drc_head_camera-VERTEX_COLOR0">
|
|
1819
|
+
<float_array id="drc_head_camera-VERTEX_COLOR0-array" count="1920">
|
|
1820
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1821
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1822
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1823
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1824
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1825
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1826
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1827
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1828
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1829
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1830
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1831
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1832
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1833
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1834
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1835
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1836
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1837
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1838
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1839
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1840
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1841
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1842
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1843
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1844
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1845
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1846
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1847
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1848
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1849
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1850
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1851
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1852
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1853
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1854
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1855
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1856
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1857
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1858
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1859
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1860
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1861
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1862
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1863
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1864
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1865
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1866
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1867
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1868
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1869
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1870
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1871
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1872
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1873
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1874
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1875
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1876
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1877
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1878
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1879
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1880
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1881
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1882
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1883
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1884
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1885
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1886
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1887
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1888
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1889
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1890
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1891
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1892
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1893
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1894
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1895
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1896
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1897
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1898
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1899
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1900
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1901
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1902
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1903
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1904
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1905
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1906
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1907
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1908
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1909
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1910
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1911
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1912
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1913
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1914
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1915
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1916
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1917
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1918
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1919
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1920
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1921
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1922
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1923
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1924
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1925
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1926
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1927
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1928
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1929
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1930
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1931
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1932
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1933
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1934
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1935
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1936
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1937
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1938
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1939
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1940
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1941
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1942
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1943
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1944
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1945
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1946
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1947
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1948
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1949
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1950
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1951
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1952
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1953
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1954
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1955
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1956
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1957
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1958
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1959
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1960
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1961
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1962
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1963
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1964
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1965
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1966
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1967
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1968
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1969
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1970
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1971
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1972
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1973
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1974
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1975
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1976
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1977
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1978
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1979
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1980
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1981
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1982
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1983
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1984
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1985
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1986
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1987
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1988
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1989
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1990
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1991
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1992
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1993
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1994
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1995
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1996
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1997
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1998
|
+
1.000000 1.000000 1.000000 1.000000
|
|
1999
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2000
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2001
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2002
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2003
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2004
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2005
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2006
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2007
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2008
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2009
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2010
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2011
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2012
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2013
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2014
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2015
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2016
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2017
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2018
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2019
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2020
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2021
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2022
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2023
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2024
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2025
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2026
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2027
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2028
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2029
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2030
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2031
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2032
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2033
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2034
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2035
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2036
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2037
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2038
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2039
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2040
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2041
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2042
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2043
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2044
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2045
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2046
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2047
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2048
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2049
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2050
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2051
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2052
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2053
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2054
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2055
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2056
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2057
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2058
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2059
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2060
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2061
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2062
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2063
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2064
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2065
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2066
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2067
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2068
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2069
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2070
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2071
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2072
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2073
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2074
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2075
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2076
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2077
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2078
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2079
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2080
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2081
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2082
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2083
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2084
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2085
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2086
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2087
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2088
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2089
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2090
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2091
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2092
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2093
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2094
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2095
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2096
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2097
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2098
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2099
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2100
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2101
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2102
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2103
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2104
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2105
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2106
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2107
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2108
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2109
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2110
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2111
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2112
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2113
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2114
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2115
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2116
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2117
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2118
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2119
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2120
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2121
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2122
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2123
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2124
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2125
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2126
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2127
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2128
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2129
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2130
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2131
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2132
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2133
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2134
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2135
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2136
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2137
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2138
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2139
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2140
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2141
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2142
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2143
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2144
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2145
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2146
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2147
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2148
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2149
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2150
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2151
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2152
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2153
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2154
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2155
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2156
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2157
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2158
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2159
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2160
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2161
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2162
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2163
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2164
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2165
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2166
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2167
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2168
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2169
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2170
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2171
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2172
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2173
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2174
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2175
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2176
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2177
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2178
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2179
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2180
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2181
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2182
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2183
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2184
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2185
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2186
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2187
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2188
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2189
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2190
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2191
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2192
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2193
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2194
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2195
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2196
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2197
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2198
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2199
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2200
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2201
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2202
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2203
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2204
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2205
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2206
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2207
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2208
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2209
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2210
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2211
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2212
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2213
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2214
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2215
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2216
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2217
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2218
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2219
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2220
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2221
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2222
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2223
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2224
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2225
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2226
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2227
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2228
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2229
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2230
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2231
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2232
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2233
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2234
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2235
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2236
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2237
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2238
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2239
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2240
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2241
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2242
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2243
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2244
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2245
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2246
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2247
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2248
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2249
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2250
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2251
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2252
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2253
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2254
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2255
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2256
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2257
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2258
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2259
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2260
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2261
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2262
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2263
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2264
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2265
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2266
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2267
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2268
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2269
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2270
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2271
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2272
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2273
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2274
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2275
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2276
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2277
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2278
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2279
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2280
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2281
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2282
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2283
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2284
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2285
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2286
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2287
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2288
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2289
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2290
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2291
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2292
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2293
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2294
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2295
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2296
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2297
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2298
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2299
|
+
1.000000 1.000000 1.000000 1.000000
|
|
2300
|
+
</float_array>
|
|
2301
|
+
<technique_common>
|
|
2302
|
+
<accessor source="#drc_head_camera-VERTEX_COLOR0-array" count="480" stride="4">
|
|
2303
|
+
<param name="R" type="double"/>
|
|
2304
|
+
<param name="G" type="double"/>
|
|
2305
|
+
<param name="B" type="double"/>
|
|
2306
|
+
<param name="A" type="double"/>
|
|
2307
|
+
</accessor>
|
|
2308
|
+
</technique_common>
|
|
2309
|
+
</source>
|
|
2310
|
+
<vertices id="drc_head_camera-VERTEX">
|
|
2311
|
+
<input semantic="POSITION" source="#drc_head_camera-POSITION"/>
|
|
2312
|
+
</vertices>
|
|
2313
|
+
<triangles count="256" material="drc_torso_head_diffuse"><input semantic="VERTEX" offset="0" source="#drc_head_camera-VERTEX"/><input semantic="NORMAL" offset="1" source="#drc_head_camera-Normal0"/><input semantic="TEXCOORD" offset="2" set="0" source="#drc_head_camera-UV0"/><input semantic="COLOR" offset="3" set="0" source="#drc_head_camera-VERTEX_COLOR0"/><p> 0 0 0 0 1 1 1 1 2 2 2 2 0 3 0 0 3 4 3 3 1 5 1 1 4 6 4 4 5 7 5 5 6 8 6 6 4 9 4 4 7 10 7 7 5 11 5 5 8 12 8 8 9 13 9 9 10 14 10 10 8 15 8 8 11 16 11 11 9 17 9 9 12 18 12 12 13 19 13 13 14 20 14 14 12 21 12 12 15 22 15 15 13 23 13 13 16 24 16 16 17 25 17 17 18 26 18 18 16 27 16 16 19 28 19 19 17 29 17 17 20 30 20 20 21 31 21 21 22 32 22 22 20 33 20 20 23 34 23 23 21 35 21 21 24 36 24 24 23 37 23 23 20 38 20 20 24 39 24 24 25 40 25 25 23 41 23 23 26 42 26 26 25 43 25 25 24 44 24 24 26 45 26 26 27 46 27 27 25 47 25 25 28 48 28 28 29 49 29 29 30 50 30 30 28 51 28 28 31 52 31 31 29 53 29 29 32 54 32 32 31 55 31 31 28 56 28 28 32 57 32 32 33 58 33 33 31 59 31 31 34 60 34 34 33 61 33 33 32 62 32 32 34 63 34 34 35 64 35 35 33 65 33 33 36 66 36 36 37 67 37 37 38 68 38 38 36 69 36 36 39 70 39 39 37 71 37 37 40 72 40 40 41 73 41 41 42 74 42 42 40 75 40 40 43 76 43 43 41 77 41 41 44 78 44 44 45 79 45 45 46 80 46 46 44 81 44 44 47 82 47 47 45 83 45 45 48 84 48 48 49 85 49 49 50 86 50 50 48 87 48 48 51 88 51 51 49 89 49 49 52 90 52 52 53 91 53 53 54 92 54 54 52 93 52 52 55 94 55 55 53 95 53 53 56 96 56 56 57 97 57 57 58 98 58 58 56 99 56 56 59 100 59 59 57 101 57 57 60 102 60 60 61 103 61 61 62 104 62 62 60 105 60 60 63 106 63 63 61 107 61 61 64 108 64 64 65 109 65 65 66 110 66 66 64 111 64 64 67 112 67 67 65 113 65 65 68 114 68 68 69 115 69 69 70 116 70 70 68 117 68 68 71 118 71 71 69 119 69 69 72 120 72 72 70 121 70 70 73 122 73 73 72 123 72 72 68 124 68 68 70 125 70 70 74 126 74 74 75 127 75 75 76 128 76 76 74 129 74 74 77 130 77 77 75 131 75 75 78 132 78 78 76 133 76 76 79 134 79 79 78 135 78 78 74 136 74 74 76 137 76 76 80 138 80 80 79 139 79 79 81 140 81 81 80 141 80 80 78 142 78 78 79 143 79 79 71 144 71 71 81 145 81 81 69 146 69 69 71 147 71 71 80 148 80 80 81 149 81 81 82 150 82 82 83 151 83 83 84 152 84 84 82 153 82 82 85 154 85 85 83 155 83 83 85 156 85 85 477 157 86 477 83 158 83 83 85 159 85 85 86 160 87 86 477 161 86 477 87 162 88 87 88 163 89 88 89 164 90 89 87 165 88 87 90 166 91 90 88 167 89 88 91 168 92 91 92 169 93 92 93 170 94 93 91 171 92 91 94 172 95 94 92 173 93 92 95 174 96 95 96 175 97 96 97 176 98 97 95 177 96 95 98 178 99 98 96 179 97 96 99 180 100 99 100 181 101 100 101 182 102 101 99 183 100 99 102 184 103 102 100 185 101 100 103 186 104 103 104 187 105 104 105 188 106 105 103 189 104 103 106 190 107 106 104 191 105 104 107 192 108 107 108 193 109 108 109 194 110 109 107 195 108 107 110 196 111 110 108 197 109 108 111 198 112 111 112 199 113 112 113 200 114 113 111 201 112 111 114 202 115 114 112 203 113 112 115 204 116 115 116 205 117 116 117 206 118 117 115 207 116 115 118 208 119 118 116 209 117 116 119 210 120 119 120 211 121 120 121 212 122 121 119 213 120 119 122 214 123 122 120 215 121 120 123 216 124 123 124 217 125 124 125 218 126 125 123 219 124 123 126 220 127 126 124 221 125 124 127 222 128 127 126 223 127 126 123 224 124 123 127 225 128 127 128 226 129 128 126 227 127 126 129 228 130 129 128 229 129 128 127 230 128 127 129 231 130 129 130 232 131 130 128 233 129 128 131 234 132 131 130 235 131 130 129 236 130 129 131 237 132 131 132 238 133 132 130 239 131 130 133 240 134 133 134 241 135 134 135 242 136 135 133 243 134 133 136 244 137 136 134 245 135 134 137 246 138 137 135 247 136 135 138 248 139 138 137 249 138 137 133 250 134 133 135 251 136 135 139 252 140 139 138 253 139 138 140 254 141 140 139 255 140 139 137 256 138 137 138 257 139 138 141 258 142 141 140 259 141 140 142 260 143 142 141 261 142 141 139 262 140 139 140 263 141 140 143 264 144 143 142 265 143 142 144 266 145 144 143 267 144 143 141 268 142 141 142 269 143 142 145 270 146 145 144 271 145 144 146 272 147 146 145 273 146 145 143 274 144 143 144 275 145 144 147 276 148 147 148 277 149 148 149 278 150 149 149 279 150 149 150 280 151 150 147 281 148 147 151 282 152 151 152 283 153 152 153 284 154 153 153 285 154 153 154 286 155 154 151 287 152 151 155 288 156 155 156 289 157 156 157 290 158 157 157 291 158 157 158 292 159 158 155 293 156 155 159 294 160 159 160 295 161 160 161 296 162 161 161 297 162 161 162 298 163 162 159 299 160 159 163 300 164 163 164 301 165 164 165 302 166 165 165 303 166 165 166 304 167 166 163 305 164 163 167 306 168 167 168 307 169 168 169 308 170 169 169 309 170 169 170 310 171 170 167 311 168 167 171 312 172 171 172 313 173 172 173 314 174 173 171 315 172 171 174 316 175 174 172 317 173 172 175 318 176 175 176 319 177 176 177 320 178 177 175 321 176 175 178 322 179 178 176 323 177 176 179 324 180 179 180 325 181 180 181 326 182 181 179 327 180 179 182 328 183 182 180 329 181 180 183 330 184 183 184 331 185 184 185 332 186 185 183 333 184 183 186 334 187 186 184 335 185 184 187 336 188 187 188 337 189 188 189 338 190 189 187 339 188 187 190 340 191 190 188 341 189 188 191 342 192 191 192 343 193 192 193 344 194 193 194 345 195 194 192 346 193 192 191 347 192 191 194 348 195 194 195 349 196 195 192 350 193 192 194 351 195 194 191 352 192 191 196 353 197 196 197 354 198 197 198 355 199 198 199 356 200 199 199 357 200 199 200 358 201 200 197 359 198 197 201 360 202 201 202 361 203 202 203 362 204 203 203 363 204 203 204 364 205 204 201 365 202 201 205 366 206 205 206 367 207 206 207 368 208 207 208 369 209 208 206 370 207 206 205 371 206 205 208 372 209 208 209 373 210 209 206 374 207 206 208 375 209 208 205 376 206 205 210 377 211 210 211 378 212 211 212 379 213 212 213 380 214 213 211 381 212 211 214 382 215 214 212 383 213 212 215 384 216 215 216 385 217 216 217 386 218 217 217 387 218 217 218 388 219 218 215 389 216 215 219 390 220 219 220 391 221 220 221 392 222 221 221 393 222 221 222 394 223 222 219 395 220 219 223 396 224 223 224 397 225 224 225 398 226 225 223 399 224 223 226 400 227 226 224 401 225 224 227 402 228 227 228 403 229 228 229 404 230 229 227 405 228 227 230 406 231 230 228 407 229 228 231 408 232 231 232 409 233 232 233 410 234 233 233 411 234 233 234 412 235 234 231 413 232 231 235 414 236 235 236 415 237 236 237 416 238 237 237 417 238 237 238 418 239 238 235 419 236 235 239 420 240 239 240 421 241 240 241 422 242 241 239 423 240 239 242 424 243 242 240 425 241 240 243 426 244 243 244 427 245 244 245 428 246 245 243 429 244 243 246 430 247 246 244 431 245 244 247 432 248 247 248 433 249 248 249 434 250 249 247 435 248 247 250 436 251 250 248 437 249 248 251 438 252 251 252 439 253 252 253 440 254 253 251 441 252 251 254 442 255 254 252 443 253 252 255 444 256 255 256 445 257 256 257 446 258 257 255 447 256 255 258 448 259 258 256 449 257 256 259 450 260 259 260 451 261 260 261 452 262 261 259 453 260 259 262 454 263 262 260 455 261 260 263 456 264 263 264 457 265 264 265 458 266 265 265 459 266 265 266 460 267 266 263 461 264 263 267 462 268 267 268 463 269 268 269 464 270 269 269 465 270 269 270 466 271 270 267 467 268 267 271 468 272 271 272 469 273 272 273 470 274 273 273 471 274 273 274 472 275 274 271 473 272 271 275 474 276 275 276 475 277 276 277 476 278 277 277 477 278 277 278 478 279 278 275 479 276 275 279 480 280 279 280 481 281 280 281 482 282 281 281 483 282 281 282 484 283 282 279 485 280 279 283 486 284 283 284 487 285 284 285 488 286 285 285 489 286 285 286 490 287 286 283 491 284 283 287 492 288 287 288 493 289 288 289 494 290 289 289 495 290 289 290 496 291 290 287 497 288 287 291 498 292 291 292 499 293 292 293 500 294 293 291 501 292 291 294 502 295 294 292 503 293 292 295 504 296 295 296 505 297 296 297 506 298 297 295 507 296 295 298 508 299 298 296 509 297 296 299 510 300 299 300 511 301 300 301 512 302 301 299 513 300 299 302 514 303 302 300 515 301 300 303 516 304 303 304 517 305 304 305 518 306 305 303 519 304 303 306 520 307 306 304 521 305 304 307 522 308 307 308 523 309 308 309 524 310 309 309 525 310 309 310 526 311 310 307 527 308 307 311 528 312 311 312 529 313 312 313 530 314 313 314 531 315 314 315 532 316 315 316 533 317 316 317 534 318 317 318 535 319 318 319 536 320 319 319 537 320 319 320 538 321 320 317 539 318 317 321 540 322 321 322 541 323 322 323 542 324 323 321 543 322 321 324 544 325 324 322 545 323 322 325 546 326 325 326 547 327 326 327 548 328 327 327 549 328 327 328 550 329 328 325 551 326 325 329 552 330 329 330 553 331 330 331 554 332 331 331 555 332 331 332 556 333 332 329 557 330 329 333 558 334 333 334 559 335 334 335 560 336 335 335 561 336 335 336 562 337 336 333 563 334 333 337 564 338 337 338 565 339 338 339 566 340 339 337 567 338 337 340 568 341 340 338 569 339 338 341 570 342 341 342 571 343 342 343 572 344 343 343 573 344 343 344 574 345 344 341 575 342 341 345 576 346 345 346 577 347 346 347 578 348 347 345 579 346 345 348 580 349 348 346 581 347 346 349 582 350 349 350 583 351 350 351 584 352 351 349 585 350 349 352 586 353 352 350 587 351 350 353 588 354 353 354 589 355 354 355 590 356 355 355 591 356 355 356 592 357 356 353 593 354 353 357 594 358 357 358 595 359 358 359 596 360 359 359 597 360 359 360 598 361 360 357 599 358 357 361 600 362 361 362 601 363 362 363 602 364 363 363 603 364 363 364 604 365 364 361 605 362 361 365 606 366 365 366 607 367 366 367 608 368 367 367 609 368 367 368 610 369 368 365 611 366 365 369 612 370 369 370 613 371 370 371 614 372 371 478 615 372 478 372 616 373 372 373 617 374 373 374 618 375 374 375 619 376 375 376 620 377 376 374 621 375 374 377 622 378 377 375 623 376 375 378 624 379 378 379 625 380 379 380 626 381 380 380 627 381 380 381 628 382 381 378 629 379 378 382 630 383 382 383 631 384 383 384 632 385 384 384 633 385 384 383 634 384 383 385 635 386 385 386 636 387 386 387 637 388 387 388 638 389 388 388 639 389 388 389 640 390 389 386 641 387 386 390 642 391 390 391 643 392 391 392 644 393 392 390 645 391 390 393 646 394 393 391 647 392 391 394 648 395 394 395 649 396 395 396 650 397 396 396 651 397 396 397 652 398 397 394 653 395 394 398 654 399 398 399 655 400 399 400 656 401 400 400 657 401 400 401 658 402 401 398 659 399 398 402 660 403 402 403 661 404 403 404 662 405 404 402 663 403 402 405 664 406 405 403 665 404 403 406 666 407 406 407 667 408 407 408 668 409 408 408 669 409 408 409 670 410 409 406 671 407 406 410 672 411 410 411 673 412 411 412 674 413 412 410 675 411 410 413 676 414 413 411 677 412 411 414 678 415 414 415 679 416 415 416 680 417 416 416 681 417 416 417 682 418 417 414 683 415 414 418 684 419 418 419 685 420 419 420 686 421 420 418 687 419 418 421 688 422 421 419 689 420 419 422 690 423 422 423 691 424 423 424 692 425 424 422 693 423 422 425 694 426 425 423 695 424 423 426 696 427 426 427 697 428 427 428 698 429 428 428 699 429 428 429 700 430 429 426 701 427 426 430 702 431 430 431 703 432 431 432 704 433 432 432 705 433 432 431 706 432 431 433 707 434 433 434 708 435 434 435 709 436 435 436 710 437 436 479 711 437 479 437 712 438 437 438 713 439 438 439 714 440 439 440 715 441 440 441 716 442 441 439 717 440 439 442 718 443 442 440 719 441 440 443 720 444 443 444 721 445 444 445 722 446 445 445 723 446 445 446 724 447 446 443 725 444 443 447 726 448 447 448 727 449 448 449 728 450 449 449 729 450 449 450 730 451 450 447 731 448 447 451 732 452 451 452 733 453 452 453 734 454 453 453 735 454 453 452 736 453 452 454 737 455 454 455 738 456 455 456 739 457 456 457 740 458 457 458 741 459 458 459 742 460 459 460 743 461 460 461 744 462 461 462 745 463 462 463 746 464 463 463 747 464 463 464 748 465 464 461 749 462 461 465 750 466 465 466 751 467 466 467 752 468 467 467 753 468 467 466 754 467 466 468 755 469 468 469 756 470 469 470 757 471 470 471 758 472 471 471 759 472 471 470 760 471 470 472 761 473 472 473 762 474 473 474 763 475 474 475 764 476 475 475 765 476 475 476 766 477 476 473 767 474 473</p></triangles>
|
|
2314
|
+
</mesh>
|
|
2315
|
+
</geometry>
|
|
2316
|
+
</library_geometries>
|
|
2317
|
+
<library_visual_scenes>
|
|
2318
|
+
<visual_scene id="head_camera" name="head_camera">
|
|
2319
|
+
<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="head_camera" id="head_camera" sid="head_camera"><matrix sid="matrix">1.000000 0.000000 0.000000 -0.032031 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 -0.061426 0.000000 0.000000 0.000000 1.000000</matrix><extra><technique profile="FCOLLADA"><visibility>1.000000</visibility></technique></extra><node name="drc_head_camera" id="drc_head_camera" sid="drc_head_camera"><matrix sid="matrix">1.000000 0.000000 0.000000 0.032031 0.000000 1.000000 0.000000 -0.000000 0.000000 0.000000 1.000000 0.061426 0.000000 0.000000 0.000000 1.000000</matrix><instance_geometry url="#drc_head_camera-lib"><bind_material><technique_common><instance_material symbol="drc_torso_head_diffuse" target="#drc_torso_head_diffuse"/></technique_common></bind_material></instance_geometry><extra><technique profile="FCOLLADA"><visibility>1.000000</visibility></technique></extra></node></node></node>
|
|
2320
|
+
<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>
|
|
2321
|
+
</visual_scene>
|
|
2322
|
+
</library_visual_scenes>
|
|
2323
|
+
<scene>
|
|
2324
|
+
<instance_visual_scene url="#head_camera"></instance_visual_scene>
|
|
2325
|
+
</scene>
|
|
2326
|
+
</COLLADA>
|