dartpy 7.0.0.dev0__cp312-cp312-manylinux_2_39_x86_64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of dartpy might be problematic. Click here for more details.
- 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-312-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-2607815a.so.0.7.0 +0 -0
- dartpy.libs/libfmt-277170bf.so.11.2.0 +0 -0
- dartpy.libs/libfontconfig-559ff509.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-78f9bc34.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-caca20fc.so.8.2.0 +0 -0
- dartpy.libs/libosg-e67375e5.so.3.6.5 +0 -0
- dartpy.libs/libosgDB-22ae780f.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-8caf1954.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
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,187 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<COLLADA xmlns="http://www.collada.org/2005/11/COLLADASchema" version="1.4.1">
|
|
3
|
+
<asset>
|
|
4
|
+
<contributor>
|
|
5
|
+
<author>dmh</author>
|
|
6
|
+
<authoring_tool>OpenCOLLADA for 3ds Max; Version: 1.2.5; Revision: 673; Platform: Win32; Configuration: Release Max9</authoring_tool>
|
|
7
|
+
<source_data>file:///D:/Re2_components_20110111/Re2_DAE_Conversion_Source/Re2_DAE_conversion3.max</source_data>
|
|
8
|
+
</contributor>
|
|
9
|
+
<created>2011-02-01T18:24:59</created>
|
|
10
|
+
<modified>2011-02-01T18:24:59</modified>
|
|
11
|
+
<unit name="meter" meter="1.0"/>
|
|
12
|
+
<up_axis>Y_UP</up_axis>
|
|
13
|
+
</asset>
|
|
14
|
+
<library_effects>
|
|
15
|
+
<effect id="wristyawM">
|
|
16
|
+
<profile_COMMON>
|
|
17
|
+
<newparam sid="wrist_yaw_128x_jpg-surface">
|
|
18
|
+
<surface type="2D">
|
|
19
|
+
<init_from>wrist_yaw_128x_jpg</init_from>
|
|
20
|
+
</surface>
|
|
21
|
+
</newparam>
|
|
22
|
+
<newparam sid="wrist_yaw_128x_jpg-sampler">
|
|
23
|
+
<sampler2D>
|
|
24
|
+
<source>wrist_yaw_128x_jpg-surface</source>
|
|
25
|
+
</sampler2D>
|
|
26
|
+
</newparam>
|
|
27
|
+
<technique sid="common">
|
|
28
|
+
<blinn>
|
|
29
|
+
<emission>
|
|
30
|
+
<color>0 0 0 1</color>
|
|
31
|
+
</emission>
|
|
32
|
+
<ambient>
|
|
33
|
+
<color>0 0 0 1</color>
|
|
34
|
+
</ambient>
|
|
35
|
+
<diffuse>
|
|
36
|
+
<texture texture="wrist_yaw_128x_jpg-sampler" texcoord="CHANNEL1"/>
|
|
37
|
+
</diffuse>
|
|
38
|
+
<specular>
|
|
39
|
+
<color>0.9 0.9 0.9 1</color>
|
|
40
|
+
</specular>
|
|
41
|
+
<shininess>
|
|
42
|
+
<float>40</float>
|
|
43
|
+
</shininess>
|
|
44
|
+
<reflective>
|
|
45
|
+
<color>0 0 0 1</color>
|
|
46
|
+
</reflective>
|
|
47
|
+
<transparent opaque="A_ONE">
|
|
48
|
+
<color>1 1 1 1</color>
|
|
49
|
+
</transparent>
|
|
50
|
+
<transparency>
|
|
51
|
+
<float>1</float>
|
|
52
|
+
</transparency>
|
|
53
|
+
</blinn>
|
|
54
|
+
</technique>
|
|
55
|
+
</profile_COMMON>
|
|
56
|
+
<extra>
|
|
57
|
+
<technique profile="OpenCOLLADA3dsMax">
|
|
58
|
+
<extended_shader>
|
|
59
|
+
<apply_reflection_dimming>0</apply_reflection_dimming>
|
|
60
|
+
<dim_level>0</dim_level>
|
|
61
|
+
<falloff_type>0</falloff_type>
|
|
62
|
+
<index_of_refraction>1.5</index_of_refraction>
|
|
63
|
+
<opacity_type>0</opacity_type>
|
|
64
|
+
<reflection_level>3</reflection_level>
|
|
65
|
+
<wire_size>1</wire_size>
|
|
66
|
+
<wire_units>0</wire_units>
|
|
67
|
+
</extended_shader>
|
|
68
|
+
<shader>
|
|
69
|
+
<ambient_diffuse_lock>1</ambient_diffuse_lock>
|
|
70
|
+
<ambient_diffuse_texture_lock>0</ambient_diffuse_texture_lock>
|
|
71
|
+
<diffuse_specular_lock>0</diffuse_specular_lock>
|
|
72
|
+
<soften>0.1</soften>
|
|
73
|
+
<use_self_illum_color>0</use_self_illum_color>
|
|
74
|
+
</shader>
|
|
75
|
+
</technique>
|
|
76
|
+
</extra>
|
|
77
|
+
</effect>
|
|
78
|
+
</library_effects>
|
|
79
|
+
<library_materials>
|
|
80
|
+
<material id="wristyawM-material" name="wristyawM">
|
|
81
|
+
<instance_effect url="#wristyawM"/>
|
|
82
|
+
</material>
|
|
83
|
+
</library_materials>
|
|
84
|
+
<library_geometries>
|
|
85
|
+
<geometry id="geom-wamUpperWristYawLink" name="wamUpperWristYawLink">
|
|
86
|
+
<mesh>
|
|
87
|
+
<source id="geom-wamUpperWristYawLink-positions">
|
|
88
|
+
<float_array id="geom-wamUpperWristYawLink-positions-array" count="1839">0.010976 0.019 0.321427984941 0.009057 0.019 0.323056984941 0.009788 0.018658 0.323069984941 0.013322 0.017508 0.320824984941 0.012759 0.016767 0.323069984941 0.016052 0.015044 0.320824984941 0.015374 0.014408 0.323069984941 0.018334 0.01216 0.320824984941 0.017559 0.011646 0.323069984941 0.020103 0.008937 0.320824984941 0.019253 0.008559 0.323069984941 0.021311 0.005464 0.320824984941 0.02041 0.005233 0.323069984941 0.021923 0.001838 0.320824984941 0.021923 -0.001838 0.320824984941 0.020996 0.001761 0.323069984941 0.021311 -0.005464 0.320824984941 0.020996 -0.001761 0.323069984941 0.020103 -0.008937 0.320824984941 0.02041 -0.005233 0.323069984941 0.019253 -0.008559 0.323069984941 0.018334 -0.01216 0.320824984941 0.017559 -0.011646 0.323069984941 0.016052 -0.015044 0.320824984941 0.013322 -0.017508 0.320824984941 0.015374 -0.014408 0.323069984941 0.012759 -0.016767 0.323069984941 0.011012 -0.019 0.321324984941 0.009788 -0.018658 0.323069984941 0.009139 -0.019 0.323055984941 -0.011012 -0.019 0.321324984941 -0.009057 -0.019 0.323056984941 -0.009788 -0.018658 0.323069984941 -0.013322 -0.017508 0.320824984941 -0.012759 -0.016767 0.323069984941 -0.016052 -0.015044 0.320824984941 -0.018334 -0.01216 0.320824984941 -0.015374 -0.014408 0.323069984941 -0.020103 -0.008937 0.320824984941 -0.017559 -0.011646 0.323069984941 -0.021311 -0.005464 0.320824984941 -0.019253 -0.008559 0.323069984941 -0.021923 -0.001838 0.320824984941 -0.02041 -0.005233 0.323069984941 -0.020996 -0.001761 0.323069984941 -0.021923 0.001838 0.320824984941 -0.020996 0.001761 0.323069984941 -0.021311 0.005464 0.320824984941 -0.02041 0.005233 0.323069984941 -0.020103 0.008937 0.320824984941 -0.019253 0.008559 0.323069984941 -0.018334 0.01216 0.320824984941 -0.017559 0.011646 0.323069984941 -0.016052 0.015044 0.320824984941 -0.013322 0.017508 0.320824984941 -0.015374 0.014408 0.323069984941 -0.011012 0.019 0.321324984941 -0.012759 0.016767 0.323069984941 -0.009788 0.018658 0.323069984941 -0.009139 0.019 0.323055984941 0.005357 0.019 0.307093984941 0.005357 0.02 0.307093984941 0.002433 0.019 0.308550984941 0.00829 -0.02 0.296788984941 0.00829 -0.019 0.296788984941 0.00889 -0.02 0.299999984941 0.002433 0.02 0.308550984941 0.007558 0.02 0.304679984941 0.00657 -0.019 0.294010984941 0.00889 -0.019 0.299999984941 -0.00082 0.019 0.308851984941 0.007558 0.019 0.304679984941 0.00657 -0.02 0.294010984941 0.00829 -0.02 0.303210984941 -0.00082 0.02 0.308851984941 0.008739 0.02 0.301633984941 0.003963 -0.019 0.292041984941 0.00829 -0.019 0.303210984941 -0.003963 0.019 0.307957984941 0.008739 0.019 0.301633984941 0.003963 -0.02 0.292041984941 0.00657 -0.02 0.305988984941 -0.003963 0.02 0.307957984941 0.008739 0.02 0.298365984941 0.00082 -0.019 0.291147984941 0.00657 -0.019 0.305988984941 -0.00657 0.019 0.305988984941 0.008739 0.019 0.298365984941 0.00082 -0.02 0.291147984941 0.003963 -0.02 0.307957984941 0.007558 0.02 0.295319984941 -0.00657 0.02 0.305988984941 -0.002433 -0.019 0.291448984941 0.003963 -0.019 0.307957984941 0.007558 0.019 0.295319984941 -0.00829 0.019 0.303210984941 -0.002433 -0.02 0.291448984941 0.00082 -0.02 0.308851984941 0.005357 0.02 0.292905984941 -0.00829 0.02 0.303210984941 0.00082 -0.019 0.308851984941 -0.005357 -0.019 0.292905984941 0.005357 0.019 0.292905984941 -0.00889 0.019 0.299999984941 -0.002433 -0.02 0.308550984941 -0.005357 -0.02 0.292905984941 0.002433 0.02 0.291448984941 -0.00889 0.02 0.299999984941 -0.002433 -0.019 0.308550984941 -0.007558 -0.019 0.295319984941 0.002433 0.019 0.291448984941 -0.00829 0.019 0.296788984941 -0.005357 -0.02 0.307093984941 -0.007558 -0.02 0.295319984941 -0.00082 0.02 0.291147984941 -0.00829 0.02 0.296788984941 -0.005357 -0.019 0.307093984941 -0.008739 -0.019 0.298365984941 -0.00082 0.019 0.291147984941 -0.00657 0.019 0.294010984941 -0.007558 -0.02 0.304679984941 -0.008739 -0.02 0.298365984941 -0.003963 0.02 0.292041984941 -0.00657 0.02 0.294010984941 -0.007558 -0.019 0.304679984941 -0.008739 -0.019 0.301633984941 -0.003963 0.019 0.292041984941 -0.008739 -0.02 0.301633984941 0.029938 0.019 0.289714984941 0.038016 0.019 0.285050984941 0.038016 0.019 0.278699984941 -0.038016 0.019 0.278699984941 -0.029938 0.019 0.289714984941 -0.038016 0.019 0.285050984941 -0.00082 0.019 0.291147984941 -0.00657 0.019 0.294010984941 -0.025591 0.019 0.294061984941 -0.024405 0.019 0.296925984941 -0.003963 0.019 0.292041984941 -0.027478 0.019 0.291602984941 -0.00829 0.019 0.296788984941 -0.024 0.019 0.299999984941 -0.00889 0.019 0.299999984941 -0.023421 0.019 0.305240984941 -0.00829 0.019 0.303210984941 -0.021711 0.019 0.310228984941 -0.018954 0.019 0.314722984941 -0.00657 0.019 0.305988984941 -0.015281 0.019 0.318505984941 -0.003963 0.019 0.307957984941 -0.011012 0.019 0.321324984941 -0.009139 0.019 0.323055984941 -0.00082 0.019 0.308851984941 -0.002859 0.019 0.323948984941 0.002433 0.019 0.308550984941 0.002854 0.019 0.323975984941 0.005357 0.019 0.307093984941 0.009057 0.019 0.323056984941 0.010976 0.019 0.321427984941 0.007558 0.019 0.304679984941 0.015281 0.019 0.318505984941 0.018954 0.019 0.314722984941 0.021711 0.019 0.310228984941 0.023421 0.019 0.305240984941 0.024 0.019 0.299999984941 0.008739 0.019 0.301633984941 0.024405 0.019 0.296925984941 0.008739 0.019 0.298365984941 0.025591 0.019 0.294061984941 0.007558 0.019 0.295319984941 0.027478 0.019 0.291602984941 0.005357 0.019 0.292905984941 0.002433 0.019 0.291448984941 0.038016 -0.019 0.278699984941 0.038016 -0.019 0.285050984941 0.029938 -0.019 0.289714984941 -0.038016 -0.019 0.278699984941 -0.029938 -0.019 0.289714984941 -0.038016 -0.019 0.285050984941 -0.025591 -0.019 0.294061984941 -0.005357 -0.019 0.292905984941 -0.007558 -0.019 0.295319984941 -0.027478 -0.019 0.291602984941 -0.024405 -0.019 0.296925984941 -0.002433 -0.019 0.291448984941 0.00082 -0.019 0.291147984941 -0.008739 -0.019 0.298365984941 -0.024 -0.019 0.299999984941 -0.008739 -0.019 0.301633984941 -0.023421 -0.019 0.305240984941 -0.021711 -0.019 0.310228984941 -0.007558 -0.019 0.304679984941 -0.018954 -0.019 0.314722984941 -0.015281 -0.019 0.318505984941 -0.005357 -0.019 0.307093984941 -0.011012 -0.019 0.321324984941 -0.009057 -0.019 0.323056984941 -0.002433 -0.019 0.308550984941 -0.002854 -0.019 0.323975984941 0.00082 -0.019 0.308851984941 0.002859 -0.019 0.323948984941 0.015281 -0.019 0.318505984941 0.011012 -0.019 0.321324984941 0.003963 -0.019 0.307957984941 0.009139 -0.019 0.323055984941 0.018954 -0.019 0.314722984941 0.00657 -0.019 0.305988984941 0.00829 -0.019 0.303210984941 0.023421 -0.019 0.305240984941 0.021711 -0.019 0.310228984941 0.00889 -0.019 0.299999984941 0.024 -0.019 0.299999984941 0.024405 -0.019 0.296925984941 0.00829 -0.019 0.296788984941 0.025591 -0.019 0.294061984941 0.00657 -0.019 0.294010984941 0.027478 -0.019 0.291602984941 0.003963 -0.019 0.292041984941 -0.030683 0.029407 0.278699984941 -0.035212 0.023799 0.278699984941 0.033067 0.026699 0.278699984941 0.037103 0.020727 0.278699984941 -0.038016 0.019 0.278699984941 0.038016 0.019 0.278699984941 -0.025272 0.03417 0.278699984941 0.028079 0.031904 0.278699984941 -0.019134 0.037949 0.278699984941 0.022283 0.03619 0.278699984941 0.015846 0.039435 0.278699984941 -0.012445 0.040637 0.278699984941 0.008954 0.041546 0.278699984941 -0.005398 0.042156 0.278699984941 0.001804 0.042462 0.278699984941 0.037103 -0.020727 0.278699984941 0.038016 -0.019 0.278699984941 -0.038016 -0.019 0.278699984941 -0.035212 -0.023799 0.278699984941 0.033067 -0.026699 0.278699984941 -0.030683 -0.029407 0.278699984941 0.028079 -0.031904 0.278699984941 -0.025272 -0.03417 0.278699984941 0.022283 -0.03619 0.278699984941 -0.019134 -0.037949 0.278699984941 0.015846 -0.039435 0.278699984941 -0.012445 -0.040637 0.278699984941 0.008954 -0.041546 0.278699984941 -0.005398 -0.042156 0.278699984941 0.001804 -0.042462 0.278699984941 0.00657 -0.02 0.305988984941 0.00889 -0.02 0.299999984941 0.00829 -0.02 0.303210984941 0.00829 -0.02 0.296788984941 0.003963 -0.02 0.307957984941 0.00657 -0.02 0.294010984941 0.00082 -0.02 0.308851984941 0.003963 -0.02 0.292041984941 0.00082 -0.02 0.291147984941 -0.002433 -0.02 0.308550984941 -0.005357 -0.02 0.307093984941 -0.002433 -0.02 0.291448984941 -0.007558 -0.02 0.304679984941 -0.005357 -0.02 0.292905984941 -0.008739 -0.02 0.301633984941 -0.007558 -0.02 0.295319984941 -0.008739 -0.02 0.298365984941 0.002433 0.02 0.308550984941 0.005357 0.02 0.307093984941 0.005357 0.02 0.292905984941 0.008739 0.02 0.298365984941 0.007558 0.02 0.304679984941 0.008739 0.02 0.301633984941 0.007558 0.02 0.295319984941 0.002433 0.02 0.291448984941 -0.00082 0.02 0.308851984941 -0.00082 0.02 0.291147984941 -0.003963 0.02 0.307957984941 -0.003963 0.02 0.292041984941 -0.00657 0.02 0.305988984941 -0.00657 0.02 0.294010984941 -0.00829 0.02 0.303210984941 -0.00829 0.02 0.296788984941 -0.00889 0.02 0.299999984941 0.037103 -0.020727 0.272789984941 0.033067 -0.026699 0.278699984941 0.033067 -0.026699 0.272789984941 0.040072 -0.014158 0.272789984941 0.038016 -0.019 0.278699984941 0.041889 -0.007183 0.272789984941 0.040148 -0.013943 0.283820984941 0.0425 -9.43689570931e-18 0.272789984941 0.041873 -0.007181 0.282824984941 0.041889 0.007183 0.272789984941 0.042454 -3.00000000001e-06 0.282488984941 0.040072 0.014158 0.272789984941 0.041818 0.007166 0.282855984941 0.037103 0.020727 0.272789984941 0.038016 0.019 0.278699984941 0.040552 0.012719 0.283586984941 0.033067 0.026699 0.272789984941 0.033067 0.026699 0.278699984941 0.028079 0.031904 0.272789984941 0.028079 0.031904 0.278699984941 0.037103 0.020727 0.278699984941 0.022283 0.03619 0.272789984941 0.022283 0.03619 0.278699984941 0.015846 0.039435 0.272789984941 0.015846 0.039435 0.278699984941 0.008954 0.041546 0.272789984941 0.008954 0.041546 0.278699984941 0.001804 0.042462 0.272789984941 0.001804 0.042462 0.278699984941 -0.005398 0.042156 0.272789984941 -0.005398 0.042156 0.278699984941 -0.012445 0.040637 0.272789984941 -0.012445 0.040637 0.278699984941 -0.019134 0.037949 0.278699984941 -0.019134 0.037949 0.272789984941 -0.025272 0.03417 0.278699984941 -0.025272 0.03417 0.272789984941 -0.030683 0.029407 0.272789984941 -0.030683 0.029407 0.278699984941 -0.035212 0.023799 0.278699984941 -0.035212 0.023799 0.272789984941 -0.038727 0.017506 0.272789984941 -0.038016 0.019 0.278699984941 -0.041129 0.010709 0.272789984941 -0.040998 0.010675 0.283329984941 -0.038016 0.019 0.285050984941 -0.038658 0.017477 0.284680984941 -0.042214 0.003592 0.282626984941 -0.042347 0.003604 0.272789984941 -0.042495 0.000645 0.282464984941 -0.042347 -0.003604 0.272789984941 -0.041129 -0.010709 0.272789984941 -0.042221 -0.003596 0.282623984941 -0.038727 -0.017506 0.272789984941 -0.041016 -0.010683 0.283318984941 -0.038635 -0.017468 0.284693984941 -0.038016 -0.019 0.278699984941 -0.035212 -0.023799 0.272789984941 -0.035212 -0.023799 0.278699984941 0.038016 0.019 0.285050984941 0.038016 -0.019 0.285050984941 0.037103 -0.020727 0.278699984941 0.028079 -0.031904 0.278699984941 0.028079 -0.031904 0.272789984941 0.022283 -0.03619 0.278699984941 0.022283 -0.03619 0.272789984941 0.015846 -0.039435 0.278699984941 0.015846 -0.039435 0.272789984941 0.008954 -0.041546 0.278699984941 0.008954 -0.041546 0.272789984941 0.001804 -0.042462 0.278699984941 0.001804 -0.042462 0.272789984941 -0.019134 -0.037949 0.278699984941 -0.012445 -0.040637 0.272789984941 -0.012445 -0.040637 0.278699984941 -0.025272 -0.03417 0.278699984941 -0.019134 -0.037949 0.272789984941 -0.025272 -0.03417 0.272789984941 -0.030683 -0.029407 0.278699984941 -0.030683 -0.029407 0.272789984941 -0.005398 -0.042156 0.278699984941 -0.005398 -0.042156 0.272789984941 -0.038016 -0.019 0.285050984941 0.041818 0.007166 0.282855984941 0.041873 -0.007181 0.282824984941 0.042454 -3.00000000001e-06 0.282488984941 -0.042221 -0.003596 0.282623984941 -0.042214 0.003592 0.282626984941 -0.042495 0.000645 0.282464984941 0.040552 0.012719 0.283586984941 -0.040998 0.010675 0.283329984941 0.040148 -0.013943 0.283820984941 -0.041016 -0.010683 0.283318984941 0.038016 0.019 0.285050984941 -0.038658 0.017477 0.284680984941 -0.038635 -0.017468 0.284693984941 0.038016 -0.019 0.285050984941 0.029938 0.019 0.289714984941 -0.038016 0.019 0.285050984941 0.029938 -0.019 0.289714984941 -0.038016 -0.019 0.285050984941 -0.029938 0.019 0.289714984941 0.027478 0.019 0.291602984941 -0.029938 -0.019 0.289714984941 0.027478 -0.019 0.291602984941 0.025591 0.019 0.294061984941 -0.027478 0.019 0.291602984941 0.025591 -0.019 0.294061984941 -0.027478 -0.019 0.291602984941 0.024405 0.019 0.296925984941 -0.025591 0.019 0.294061984941 0.024405 -0.019 0.296925984941 -0.025591 -0.019 0.294061984941 0.024 0.019 0.299999984941 -0.024405 0.019 0.296925984941 0.024 -0.019 0.299999984941 -0.024405 -0.019 0.296925984941 0.023421 0.019 0.305240984941 -0.024 0.019 0.299999984941 0.023421 -0.019 0.305240984941 -0.024 -0.019 0.299999984941 -0.023421 0.019 0.305240984941 0.021883 0.002263 0.309854984941 -0.023421 -0.019 0.305240984941 0.021873 -0.00236 0.309877984941 0.021281 0.005578 0.311095984941 0.021226 -0.005784 0.311199984941 0.020755 0.007262 0.312042984941 -0.021883 -0.002263 0.309854984941 0.019939 -0.009297 0.313357984941 0.021711 -0.019 0.310228984941 0.017799 -0.01293 0.316099984941 0.018954 -0.019 0.314722984941 0.015275 -0.015814 0.318497984941 0.015281 -0.019 0.318505984941 0.013789 -0.017142 0.319642984941 0.011012 -0.019 0.321324984941 0.018942 0.011143 0.314712984941 0.021711 0.019 0.310228984941 0.018049 0.012579 0.315818984941 0.018954 0.019 0.314722984941 0.01665 0.01438 0.317284984941 0.015281 0.019 0.318505984941 0.013815 0.017121 0.319624984941 0.010976 0.019 0.321427984941 -0.015281 -0.019 0.318505984941 -0.011012 -0.019 0.321324984941 -0.013815 -0.017121 0.319624984941 -0.018954 -0.019 0.314722984941 -0.015554 -0.01555 0.318270984941 -0.021711 -0.019 0.310228984941 -0.018049 -0.012579 0.315818984941 -0.020286 -0.008514 0.312824984941 -0.021281 -0.005578 0.311095984941 -0.021861 0.002463 0.309903984941 -0.021226 0.005784 0.311199984941 -0.019939 0.009297 0.313357984941 -0.021711 0.019 0.310228984941 -0.017041 0.013915 0.316899984941 -0.018954 0.019 0.314722984941 -0.01861 0.011691 0.315130984941 -0.015494 0.015619 0.318328984941 -0.015281 0.019 0.318505984941 -0.013789 0.017142 0.319642984941 -0.011012 0.019 0.321324984941 -0.018235 0.004676 0.323999984941 -0.018759 0.001573 0.323999984941 -0.018759 -0.001573 0.323999984941 -0.018235 -0.004676 0.323999984941 -0.015688 0.010405 0.323999984941 -0.017202 -0.007647 0.323999984941 -0.015688 -0.010405 0.323999984941 -0.017202 0.007647 0.323999984941 -0.0114 0.014981 0.323999984941 -0.013736 -0.012873 0.323999984941 -0.0114 -0.014981 0.323999984941 -0.013736 0.012873 0.323999984941 -0.002785 0.018618 0.323999984941 -0.005847 -0.017894 0.323999984941 -0.002785 -0.018618 0.323999984941 -0.005847 0.017894 0.323999984941 -0.008745 -0.01667 0.323999984941 -0.008745 0.01667 0.323999984941 -2.9e-05 0.018836 0.323999984941 -2.9e-05 -0.018836 0.323999984941 0.002785 0.018618 0.323999984941 0.002785 -0.018618 0.323999984941 0.005847 0.017894 0.323999984941 0.005847 -0.017894 0.323999984941 0.008745 0.01667 0.323999984941 0.008745 -0.01667 0.323999984941 0.0114 0.014981 0.323999984941 0.0114 -0.014981 0.323999984941 0.013736 0.012873 0.323999984941 0.013736 -0.012873 0.323999984941 0.015688 0.010405 0.323999984941 0.015688 -0.010405 0.323999984941 0.017202 0.007647 0.323999984941 0.017202 -0.007647 0.323999984941 0.018235 0.004676 0.323999984941 0.018235 -0.004676 0.323999984941 0.018759 0.001573 0.323999984941 0.018759 -0.001573 0.323999984941 0.021873 -0.00236 0.309877984941 0.021883 0.002263 0.309854984941 0.021923 -0.001838 0.320824984941 0.021311 -0.005464 0.320824984941 0.021226 -0.005784 0.311199984941 0.020103 -0.008937 0.320824984941 0.019939 -0.009297 0.313357984941 0.018334 -0.01216 0.320824984941 0.017799 -0.01293 0.316099984941 0.016052 -0.015044 0.320824984941 0.015275 -0.015814 0.318497984941 0.013322 -0.017508 0.320824984941 0.013789 -0.017142 0.319642984941 0.011012 -0.019 0.321324984941 0.021923 0.001838 0.320824984941 0.021281 0.005578 0.311095984941 0.021311 0.005464 0.320824984941 0.020755 0.007262 0.312042984941 0.020103 0.008937 0.320824984941 0.018942 0.011143 0.314712984941 0.018334 0.01216 0.320824984941 0.018049 0.012579 0.315818984941 0.01665 0.01438 0.317284984941 0.016052 0.015044 0.320824984941 0.013815 0.017121 0.319624984941 0.013322 0.017508 0.320824984941 0.010976 0.019 0.321427984941 -0.013322 0.017508 0.320824984941 -0.011012 0.019 0.321324984941 -0.013789 0.017142 0.319642984941 -0.015494 0.015619 0.318328984941 -0.017041 0.013915 0.316899984941 -0.016052 0.015044 0.320824984941 -0.01861 0.011691 0.315130984941 -0.018334 0.01216 0.320824984941 -0.019939 0.009297 0.313357984941 -0.020103 0.008937 0.320824984941 -0.021226 0.005784 0.311199984941 -0.021311 0.005464 0.320824984941 -0.021861 0.002463 0.309903984941 -0.021923 0.001838 0.320824984941 -0.021883 -0.002263 0.309854984941 -0.021923 -0.001838 0.320824984941 -0.021281 -0.005578 0.311095984941 -0.021311 -0.005464 0.320824984941 -0.020286 -0.008514 0.312824984941 -0.020103 -0.008937 0.320824984941 -0.018049 -0.012579 0.315818984941 -0.018334 -0.01216 0.320824984941 -0.015554 -0.01555 0.318270984941 -0.016052 -0.015044 0.320824984941 -0.013815 -0.017121 0.319624984941 -0.013322 -0.017508 0.320824984941 -0.011012 -0.019 0.321324984941 0.002859 -0.019 0.323948984941 -0.002854 -0.019 0.323975984941 0.002854 0.019 0.323975984941 -0.002859 0.019 0.323948984941 0.009139 -0.019 0.323055984941 0.009788 -0.018658 0.323069984941 0.012759 -0.016767 0.323069984941 0.015374 -0.014408 0.323069984941 0.017559 -0.011646 0.323069984941 0.019253 -0.008559 0.323069984941 0.02041 -0.005233 0.323069984941 0.020996 -0.001761 0.323069984941 0.020996 0.001761 0.323069984941 0.02041 0.005233 0.323069984941 0.019253 0.008559 0.323069984941 0.017559 0.011646 0.323069984941 0.015374 0.014408 0.323069984941 0.012759 0.016767 0.323069984941 0.009788 0.018658 0.323069984941 0.009057 0.019 0.323056984941 -0.009139 0.019 0.323055984941 -0.009788 0.018658 0.323069984941 -0.012759 0.016767 0.323069984941 -0.015374 0.014408 0.323069984941 -0.017559 0.011646 0.323069984941 -0.019253 0.008559 0.323069984941 -0.02041 0.005233 0.323069984941 -0.020996 0.001761 0.323069984941 -0.020996 -0.001761 0.323069984941 -0.02041 -0.005233 0.323069984941 -0.019253 -0.008559 0.323069984941 -0.017559 -0.011646 0.323069984941 -0.015374 -0.014408 0.323069984941 -0.012759 -0.016767 0.323069984941 -0.009788 -0.018658 0.323069984941 -0.009057 -0.019 0.323056984941 -2.9e-05 0.018836 0.323999984941 0.002785 0.018618 0.323999984941 0.005847 0.017894 0.323999984941 0.008745 0.01667 0.323999984941 0.0114 0.014981 0.323999984941 0.013736 0.012873 0.323999984941 0.015688 0.010405 0.323999984941 0.017202 0.007647 0.323999984941 0.018235 0.004676 0.323999984941 0.018759 0.001573 0.323999984941 0.018759 -0.001573 0.323999984941 0.018235 -0.004676 0.323999984941 0.017202 -0.007647 0.323999984941 0.015688 -0.010405 0.323999984941 0.013736 -0.012873 0.323999984941 0.0114 -0.014981 0.323999984941 0.008745 -0.01667 0.323999984941 0.005847 -0.017894 0.323999984941 0.002785 -0.018618 0.323999984941 -2.9e-05 -0.018836 0.323999984941 -0.002785 -0.018618 0.323999984941 -0.005847 -0.017894 0.323999984941 -0.008745 -0.01667 0.323999984941 -0.0114 -0.014981 0.323999984941 -0.013736 -0.012873 0.323999984941 -0.015688 -0.010405 0.323999984941 -0.017202 -0.007647 0.323999984941 -0.018235 -0.004676 0.323999984941 -0.018759 -0.001573 0.323999984941 -0.018759 0.001573 0.323999984941 -0.018235 0.004676 0.323999984941 -0.017202 0.007647 0.323999984941 -0.015688 0.010405 0.323999984941 -0.013736 0.012873 0.323999984941 -0.0114 0.014981 0.323999984941 -0.008745 0.01667 0.323999984941 -0.005847 0.017894 0.323999984941 -0.002785 0.018618 0.323999984941</float_array>
|
|
89
|
+
<technique_common>
|
|
90
|
+
<accessor source="#geom-wamUpperWristYawLink-positions-array" count="613" stride="3">
|
|
91
|
+
<param name="X" type="float"/>
|
|
92
|
+
<param name="Y" type="float"/>
|
|
93
|
+
<param name="Z" type="float"/>
|
|
94
|
+
</accessor>
|
|
95
|
+
</technique_common>
|
|
96
|
+
</source>
|
|
97
|
+
<source id="geom-wamUpperWristYawLink-normals">
|
|
98
|
+
<float_array id="geom-wamUpperWristYawLink-normals-array" count="1839">0.5289053 0.6691322 0.5220358 0.3739848 0.8161125 0.4405631 0.4304111 0.7833444 0.4484616 0.5713638 0.7142016 0.4043012 0.5594342 0.7351484 0.3828709 0.6740733 0.6318322 0.3826398 0.6740744 0.6318527 0.382604 0.7699208 0.5106677 0.3826754 0.7699232 0.5106297 0.3827214 0.8441733 0.3752956 0.3827853 0.8441744 0.3752801 0.382798 0.8948976 0.2294407 0.382773 0.8948993 0.2294476 0.3827652 0.9206132 0.0771316 0.3827819 0.9206131 -0.07713209 0.3827823 0.9206108 0.07715859 0.3827823 0.8949033 -0.2294317 0.3827651 0.920611 -0.07715915 0.3827819 0.8441548 -0.3753244 0.382798 0.8948988 -0.2294362 0.382773 0.8441643 -0.3753158 0.3827852 0.7699025 -0.5106609 0.3827213 0.7699364 -0.5106441 0.3826753 0.6741517 -0.6317704 0.3826039 0.590887 -0.7102877 0.3825493 0.6741367 -0.6317644 0.38264 0.5729973 -0.7141758 0.4020288 0.495042 -0.7475832 0.4427784 0.4334486 -0.7770964 0.456337 0.410237 -0.7966601 0.4438899 -0.5240371 -0.6877575 0.5023692 -0.3772124 -0.8224491 0.4257797 -0.4312996 -0.7903313 0.4351518 -0.5699801 -0.7163052 0.4025289 -0.5594342 -0.7351484 0.3828709 -0.6740733 -0.6318322 0.3826398 -0.7699208 -0.5106677 0.3826754 -0.6740744 -0.6318527 0.382604 -0.8441733 -0.3752956 0.3827852 -0.7699232 -0.5106297 0.3827214 -0.8948976 -0.2294407 0.382773 -0.8441744 -0.3752801 0.382798 -0.9206132 -0.0771316 0.3827819 -0.8948993 -0.2294476 0.3827652 -0.9206108 -0.07715859 0.3827823 -0.9206131 0.07713209 0.3827823 -0.920611 0.07715915 0.3827819 -0.8949033 0.2294317 0.3827651 -0.8948988 0.2294362 0.382773 -0.8441548 0.3753244 0.382798 -0.8441643 0.3753158 0.3827852 -0.7699025 0.5106609 0.3827213 -0.7699364 0.5106441 0.3826753 -0.6741517 0.6317704 0.3826039 -0.590887 0.7102877 0.3825493 -0.6741367 0.6317644 0.38264 -0.495042 0.7475832 0.4427784 -0.5729973 0.7141758 0.4020288 -0.4334486 0.7770964 0.456337 -0.410237 0.7966601 0.4438899 0.6027146 -1.3382952524e-16 0.7979568 0.6027146 -1.3382952524e-16 0.7979568 0.2737335 -6.07810468622e-17 0.9618056 0.9324883 -2.07053996171e-16 -0.3612002 0.9324884 -2.07054018375e-16 -0.3612002 1.0 -2.22044604925e-16 4.8252800222e-08 0.2737336 -6.07810690667e-17 0.9618056 0.8501232 -1.88765270082e-16 0.5265838 0.7390381 -1.64099422939e-16 -0.6736637 1.0 -2.22044604925e-16 6.9966600222e-08 -0.09229606 2.04938421788e-17 0.9957316 0.8501232 -1.88765270082e-16 0.5265838 0.739038 -1.64099400735e-16 -0.6736637 0.9324883 -2.07053996171e-16 0.3612001 -0.09229604 2.04938377379e-17 0.9957317 0.9829475 -2.182581893e-16 0.1838861 0.4457352 -9.89730963852e-17 -0.8951647 0.9324883 -2.07053996171e-16 0.3612001 -0.4457348 9.89730075673e-17 0.8951651 0.9829476 -2.18258211504e-16 0.1838861 0.4457353 -9.89731185896e-17 -0.8951648 0.739038 -1.64099400735e-16 0.6736637 -0.4457349 9.89730297718e-17 0.8951651 0.9829476 -2.18258211504e-16 -0.1838862 0.09229629 -2.04938932491e-17 -0.9957316 0.739038 -1.64099400735e-16 0.6736638 -0.739038 1.64099400735e-16 0.6736638 0.9829475 -2.182581893e-16 -0.1838862 0.09229634 -2.04939043513e-17 -0.9957317 0.4457349 -9.89730297718e-17 0.8951651 0.8501233 -1.88765292286e-16 -0.5265837 -0.7390379 1.6409937853e-16 0.6736639 -0.2737338 6.07811134756e-17 -0.9618055 0.4457348 -9.89730075673e-17 0.895165 0.8501232 -1.88765270082e-16 -0.5265837 -0.9324883 2.07053996171e-16 0.3612001 -0.2737338 6.07811134756e-17 -0.9618055 0.09229605 -2.04938399584e-17 0.9957317 0.6027149 -1.33829591853e-16 -0.7979566 -0.9324883 2.07053996171e-16 0.3612001 0.09229605 -2.04938399584e-17 0.9957316 -0.602715 1.33829614057e-16 -0.7979566 0.6027149 -1.33829591853e-16 -0.7979566 -1.0 2.22044604925e-16 6.7553899778e-08 -0.2737335 6.07810468622e-17 0.9618055 -0.602715 1.33829614057e-16 -0.7979565 0.2737338 -6.07811134756e-17 -0.9618055 -1.0 2.22044604925e-16 4.7046499778e-08 -0.2737335 6.07810468622e-17 0.9618056 -0.8501232 1.88765270082e-16 -0.5265837 0.2737338 -6.07811134756e-17 -0.9618055 -0.9324883 2.07053996171e-16 -0.3612002 -0.6027146 1.3382952524e-16 0.7979568 -0.8501233 1.88765292286e-16 -0.5265838 -0.09229633 2.04939021309e-17 -0.9957315 -0.9324883 2.07053996171e-16 -0.3612002 -0.6027146 1.3382952524e-16 0.7979568 -0.9829476 2.18258211504e-16 -0.1838862 -0.0922963 2.04938954695e-17 -0.9957315 -0.7390381 1.64099422939e-16 -0.6736637 -0.8501232 1.88765270082e-16 0.5265838 -0.9829475 2.182581893e-16 -0.1838862 -0.4457353 9.89731185896e-17 -0.8951648 -0.739038 1.64099400735e-16 -0.6736637 -0.8501232 1.88765270082e-16 0.5265838 -0.9829476 2.18258211504e-16 0.1838861 -0.4457352 9.89730963852e-17 -0.8951647 -0.9829475 2.182581893e-16 0.1838861 2.22044604925e-16 1.0 0.0 2.22044604925e-16 1.0 0.0 2.22044604925e-16 1.0 0.0 2.22044604925e-16 1.0 0.0 2.22044604925e-16 1.0 0.0 2.22044604925e-16 1.0 0.0 2.22044582721e-16 0.9999999 0.0 2.22044604925e-16 1.0 0.0 2.22044604925e-16 1.0 0.0 2.22044604925e-16 1.0 0.0 2.22044604925e-16 1.0 0.0 2.22044604925e-16 1.0 0.0 2.22044604925e-16 1.0 0.0 2.22044604925e-16 1.0 0.0 2.22044604925e-16 1.0 0.0 2.22044604925e-16 1.0 0.0 2.22044604925e-16 1.0 0.0 2.22044604925e-16 1.0 0.0 2.22044604925e-16 1.0 0.0 2.22044582721e-16 0.9999999 0.0 2.22044582721e-16 0.9999999 0.0 2.22044582721e-16 0.9999999 0.0 2.22044604925e-16 1.0 0.0 2.22044604925e-16 1.0 0.0 2.22044582721e-16 0.9999999 0.0 2.22044604925e-16 1.0 0.0 2.22044604925e-16 1.0 0.0 2.22044604925e-16 1.0 0.0 2.22044604925e-16 1.0 0.0 2.22044582721e-16 0.9999999 0.0 2.22044604925e-16 1.0 0.0 2.22044604925e-16 1.0 0.0 2.22044604925e-16 1.0 0.0 2.22044604925e-16 1.0 0.0 2.22044604925e-16 1.0 0.0 2.22044604925e-16 1.0 0.0 2.22044582721e-16 0.9999999 0.0 2.22044604925e-16 1.0 0.0 2.22044604925e-16 1.0 0.0 2.22044604925e-16 1.0 0.0 2.22044604925e-16 1.0 0.0 2.22044582721e-16 0.9999999 0.0 2.22044604925e-16 1.0 0.0 2.22044604925e-16 1.0 0.0 2.22044604925e-16 1.0 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044582721e-16 -0.9999999 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044582721e-16 -0.9999999 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044582721e-16 -0.9999999 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044582721e-16 -0.9999999 0.0 -2.22044582721e-16 -0.9999999 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044582721e-16 -0.9999999 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044582721e-16 -0.9999999 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044582721e-16 -0.9999999 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044582721e-16 -0.9999999 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044582721e-16 -0.9999999 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044582721e-16 -0.9999999 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044582721e-16 0.0 0.9999999 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044582721e-16 0.0 0.9999999 -2.22044604925e-16 0.0 1.0 -2.22044582721e-16 0.0 0.9999999 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 -1.0 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044582721e-16 -0.9999999 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044582721e-16 -0.9999999 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044604925e-16 -1.0 0.0 -2.22044582721e-16 -0.9999999 0.0 2.22044604925e-16 1.0 0.0 2.22044604925e-16 1.0 0.0 2.22044604925e-16 1.0 0.0 2.22044582721e-16 0.9999999 0.0 2.22044604925e-16 1.0 0.0 2.22044604925e-16 1.0 0.0 2.22044604925e-16 1.0 0.0 2.22044604925e-16 1.0 0.0 2.22044604925e-16 1.0 0.0 2.22044604925e-16 1.0 0.0 2.22044604925e-16 1.0 0.0 2.22044604925e-16 1.0 0.0 2.22044604925e-16 1.0 0.0 2.22044604925e-16 1.0 0.0 2.22044604925e-16 1.0 0.0 2.22044604925e-16 1.0 0.0 2.22044582721e-16 0.9999999 0.0 0.8699265 -0.4931138 -0.008163105 0.7780675 -0.6281806 1.72765690643e-16 0.7780675 -0.6281807 1.72765690643e-16 0.9443985 -0.328747 -0.006070595 0.9096946 -0.4152575 -0.004112146 0.9857711 -0.1680922 0.000528953 0.9450736 -0.3268572 0.000420399 0.9999924 0.000870444 0.00380595 0.9854446 -0.1699793 0.002470448 0.9854731 0.1697063 0.006517297 0.9999797 0.003239897 0.005481141 0.9449217 0.3272853 -0.002707762 0.9861882 0.1656288 0.000280625 0.8699265 0.4931137 -0.008163105 0.9121909 0.4097629 -0.001524662 0.9529082 0.3032297 -0.004209595 0.7780675 0.6281807 1.72765690643e-16 0.7780675 0.6281806 1.72765690643e-16 0.6606677 0.7506786 1.46697698433e-16 0.6606677 0.7506786 1.46697698433e-16 0.8575476 0.5144045 1.90413818046e-16 0.5242494 0.8515648 1.16406750905e-16 0.5242493 0.8515648 1.16406728701e-16 0.372851 0.9278913 8.27895529909e-17 0.372851 0.9278913 8.27895529909e-17 0.2107292 0.9775445 4.67912819602e-17 0.2107292 0.9775445 4.67912819602e-17 0.04246491 0.9990979 9.42910416413e-18 0.04246491 0.9990979 9.42910416413e-18 -0.1270391 0.9918976 -2.82083467695e-17 -0.1270391 0.9918977 -2.82083467695e-17 -0.2928479 0.9561591 -6.50252962586e-17 -0.2928479 0.9561591 -6.50252962586e-17 -0.450195 0.8929303 -9.99633709142e-17 -0.4501949 0.8929303 -9.99633487098e-17 -0.5946483 0.803986 -1.32038446843e-16 -0.5946482 0.8039859 -1.32038424638e-16 -0.7219501 0.691945 -1.6030512473e-16 -0.7219502 0.691945 -1.60305146935e-16 -0.8230301 0.5679978 -1.82749393396e-16 -0.8258718 0.5638379 -0.004753977 -0.9152933 0.4027751 0.003203159 -0.9137614 0.4062454 0.002185374 -0.9676986 0.2517715 0.01306076 -0.9655073 0.2602447 0.008276364 -0.9214754 0.3884366 -2.04608641141e-16 -0.9339195 0.3573636 -0.009248182 -0.9910091 0.1331302 0.01332057 -0.9956029 0.09365563 0.001847479 -0.9998617 0.01509788 0.006975728 -0.9956474 -0.0931681 0.002443662 -0.9677923 -0.2514855 0.01153914 -0.9929294 -0.1180732 0.01224319 -0.9148878 -0.4037041 -0.001844073 -0.9663936 -0.2568698 0.01007119 -0.933911 -0.3574791 0.004357147 -0.8990843 -0.437775 0.000638487 -0.8258719 -0.5638379 -0.004753977 -0.8230301 -0.5679978 -1.82749393396e-16 0.9272703 0.3743926 2.05895367422e-16 0.9214567 -0.3884809 2.04604488907e-16 0.8575476 -0.5144045 1.90413818046e-16 0.6606677 -0.7506786 1.46697698433e-16 0.6606677 -0.7506786 1.46697698433e-16 0.5242493 -0.8515648 1.16406728701e-16 0.5242494 -0.8515648 1.16406750905e-16 0.372851 -0.9278913 8.27895529909e-17 0.372851 -0.9278913 8.27895529909e-17 0.2107292 -0.9775445 4.67912819602e-17 0.2107292 -0.9775445 4.67912819602e-17 0.04246491 -0.9990979 9.42910416413e-18 0.04246491 -0.999098 9.42910416413e-18 -0.450195 -0.8929303 -9.99633709142e-17 -0.2928479 -0.9561591 -6.50252962586e-17 -0.2928479 -0.9561591 -6.50252962586e-17 -0.5946483 -0.803986 -1.32038446843e-16 -0.4501949 -0.8929303 -9.99633487098e-17 -0.5946482 -0.8039859 -1.32038424638e-16 -0.7219501 -0.691945 -1.6030512473e-16 -0.7219501 -0.691945 -1.6030512473e-16 -0.1270391 -0.9918977 -2.82083467695e-17 -0.1270391 -0.9918976 -2.82083467695e-17 -0.9271767 -0.3746241 -2.05874584047e-16 0.5001916 4.65089999999e-05 0.8659149 0.4999661 2.65670999999e-05 0.8660449 0.500194 4.65218999999e-05 0.8659133 -0.4997905 -1.62541999999e-05 0.8661463 -0.5010353 0.000126747 0.8654269 -0.5004436 0.000126028 0.8657691 0.5000138 2.56935999999e-05 0.8660175 -0.4999756 -1.97187999999e-05 0.8660395 0.4997517 3.04390999989e-06 0.8661687 -0.5000747 -8.75377999989e-06 0.8659823 0.5000007 4.37969999989e-06 0.866025 -0.4994035 -8.02317999989e-06 0.8663695 -0.4996614 -9.11755999889e-07 0.8662209 0.4999481 -1.11010778348e-16 0.8660554 0.5556164 -1.23371624028e-16 0.8314387 -0.4998611 -1.35178999989e-06 0.8661056 0.5556165 -1.23371646232e-16 0.8314387 -0.4999234 1.11005293846e-16 0.8660695 -0.5556164 1.23371624028e-16 0.8314387 0.707128 -1.57013957391e-16 0.7070856 -0.5556165 1.23371646232e-16 0.8314387 0.7071279 -1.57013935187e-16 0.7070856 0.8660392 -1.92299332014e-16 0.499976 -0.707128 1.57013957391e-16 0.7070856 0.8660392 -1.92299332014e-16 0.499976 -0.7071279 1.57013935187e-16 0.7070856 0.9659252 -2.14478479421e-16 0.2588212 -0.8660392 1.92299332014e-16 0.499976 0.9659252 -2.14478479421e-16 0.2588212 -0.8660392 1.92299332014e-16 0.499976 0.9927472 -2.20434159814e-16 0.1202208 -0.9659252 2.14478479421e-16 0.2588212 0.9927472 -2.20434159814e-16 0.1202208 -0.9659252 2.14478479421e-16 0.2588212 0.9694539 -0.01850379 0.2445744 -0.9927472 2.20434159814e-16 0.1202208 0.972351 0.01204165 0.2332139 -0.9927472 2.20434159814e-16 0.1202208 -0.972351 -0.01204071 0.2332134 0.9439159 0.004209426 0.3301591 -0.9732586 0.009466963 0.2295174 0.943119 -0.004896505 0.3324192 0.9162415 0.02824274 0.3996295 0.9122135 -0.03264393 0.4084127 0.892803 0.05620892 0.4469264 -0.9438638 -0.004160585 0.3303086 0.8763407 -0.03426166 0.4804718 0.9092199 0.0455087 0.4138214 0.7844257 -0.02033538 0.6198894 0.7991679 0.02006923 0.6007728 0.6815827 -0.008404146 0.7316928 0.6514989 -0.01467178 0.7585077 0.5758781 -0.03732934 0.8166829 0.5497655 -0.06800561 0.8325461 0.8584411 0.04311042 0.5110973 0.91396 -0.1056313 0.3918153 0.793235 0.02321761 0.6084728 0.800593 -0.007374008 0.5991632 0.7096452 0.01211889 0.704455 0.6458343 0.01677628 0.7632932 0.5893503 0.0211389 0.807601 0.5607656 0.05450435 0.8261787 -0.6482484 -0.01984651 0.7611703 -0.5498073 -0.06688374 0.8326095 -0.5773955 -0.03529018 0.8157016 -0.7979119 0.01125043 0.6026691 -0.6887984 -0.009517447 0.7248904 -0.9081047 0.03096188 0.4175972 -0.7934013 -0.01560323 0.6084988 -0.8836654 -0.0307586 0.4671072 -0.9147398 -0.02992363 0.4029339 -0.9423071 0.005486472 0.3347049 -0.9120613 0.03281615 0.4087386 -0.8790709 0.03235978 0.4755915 -0.9067228 -0.04786063 0.4190025 -0.7648149 0.03280497 0.6434143 -0.8081425 -0.05678837 0.586243 -0.8071194 0.05198604 0.5880949 -0.6829081 0.01817964 0.7302781 -0.6485766 0.02027925 0.7608792 -0.5758957 0.03730827 0.8166714 -0.5497655 0.06800561 0.8325461 -2.22044604925e-16 0.0 1.0 -2.22044582721e-16 0.0 0.9999999 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044582721e-16 0.0 0.9999999 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044582721e-16 0.0 0.9999999 -2.22044582721e-16 0.0 0.9999999 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044582721e-16 0.0 0.9999999 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044582721e-16 0.0 0.9999999 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044604925e-16 0.0 1.0 -2.22044582721e-16 0.0 0.9999999 0.9965175 -0.08333359 -0.002880541 0.9968352 0.07949094 -0.000874248 0.9966937 -0.08125057 -0.000321113 0.9686138 -0.2485589 0.002432385 0.9700164 -0.2430292 -0.002199326 0.9139625 -0.4057914 0.002446125 0.9166986 -0.3995546 -0.00448024 0.8349162 -0.5503602 0.00430945 0.8252779 -0.5646503 -0.009308347 0.7318363 -0.6814682 0.004099085 0.7100978 -0.7041007 -0.001888517 0.5835642 -0.8117226 -0.0236511 0.6570721 -0.7533678 0.02632776 0.5341733 -0.8438799 -0.05025521 0.9965783 0.08263093 -0.001942641 0.9754336 0.2202867 0.001770659 0.9693327 0.2457368 0.002724563 0.941142 0.3380003 -0.002744947 0.9136056 0.4065898 0.003065218 0.8843294 0.4667899 -0.008289125 0.834623 0.5507559 0.008508028 0.8292677 0.5588515 -0.000436 0.7652416 0.643739 0.002326863 0.7276223 0.6859761 0.001650367 0.6491744 0.7606371 0.001969453 0.5746678 0.8179184 -0.02768631 0.5250563 0.8490808 -0.05811825 -0.5899348 0.806981 -0.02754248 -0.5341733 0.8438799 -0.05025521 -0.6568875 0.7535332 0.02620365 -0.8173869 0.4227999 0.3913042 -0.812399 0.5810808 0.04850703 -0.7214275 0.6919683 -0.02687698 -0.8566851 0.5158091 0.005627533 -0.830337 0.5572369 -0.00524963 -0.919336 0.3934706 -0.001514305 -0.9139625 0.4057914 0.002446125 -0.9696982 0.2442962 -0.002152296 -0.9685741 0.2487107 0.002659939 -0.9963097 0.08576721 -0.003309121 -0.9967074 0.08108217 -0.000231292 -0.9969086 -0.07855879 -0.001277721 -0.9965783 -0.08263093 -0.001942641 -0.973612 -0.228202 0.001882566 -0.9690775 -0.2467537 0.0011549 -0.9277124 -0.3732953 -0.000666698 -0.9120422 -0.4100914 -0.002007953 -0.8413389 -0.5405071 -0.001046105 -0.8324541 -0.554046 -0.007303195 -0.7364725 -0.6764649 0.001836084 -0.7410917 -0.6713412 -0.00917259 -0.6468202 -0.7625415 0.0124153 -0.5806893 -0.813775 -0.02387622 -0.533685 -0.8440246 -0.05294264 0.03350195 -0.1630414 0.9860502 0.01979928 -0.1285464 0.9915057 0.004441165 -0.2117892 0.9773052 -0.0248015 -0.1041202 0.9942554 -0.009490425 -0.06099871 0.9980928 -0.004465217 0.2132692 0.9769834 0.02476298 0.104097 0.9942588 -0.03358733 0.1630889 0.9860395 -0.01991097 0.1285249 0.9915064 0.009437742 0.06100821 0.9980927 0.130834 -0.3729162 0.9185946 0.1518256 -0.340183 0.9280218 -0.1343509 -0.3670592 0.9204443 -0.1474216 -0.358194 0.9219348 -0.1774097 -0.3391995 0.9238341 0.178341 -0.3343879 0.9254076 0.1777835 -0.3389173 0.9238659 -0.1778203 -0.3389237 0.9238564 -0.178341 0.3343878 0.9254076 -0.1777835 0.3389173 0.9238659 -0.130834 0.3729162 0.9185946 -0.1518256 0.340183 0.9280218 0.1343509 0.3670591 0.9204443 0.1778203 0.3389236 0.9238564 0.1774097 0.3391995 0.9238341 0.1474216 0.358194 0.9219348 0.231805 -0.3046448 0.9238279 0.2317978 -0.3046412 0.9238308 0.2792499 -0.2617281 0.9238604 0.2792813 -0.2617325 0.9238496 0.3189346 -0.2115315 0.9238697 0.3189287 -0.2115328 0.9238715 0.3497554 -0.1554748 0.9238499 0.3497582 -0.1554687 0.9238499 0.3707045 -0.09505056 0.9238743 0.3707088 -0.0950599 0.9238716 0.3813946 -0.03196399 0.9238595 0.3813863 -0.03196058 0.9238631 0.3813854 0.03197225 0.923863 0.3813939 0.03197232 0.9238595 0.3707167 0.09502818 0.9238717 0.3707102 0.09502886 0.9238742 0.349743 0.1555034 0.9238498 0.3497424 0.1555037 0.9238501 0.3189455 0.2115073 0.9238714 0.3189503 0.2115083 0.9238696 0.2792728 0.2617413 0.9238497 0.2792673 0.2617093 0.9238604 0.2317683 0.3046641 0.9238308 0.231762 0.3046772 0.9238279 -0.231762 -0.3046772 0.9238279 -0.2317683 -0.3046641 0.9238308 -0.2792673 -0.2617093 0.9238604 -0.2792727 -0.2617413 0.9238497 -0.3189503 -0.2115084 0.9238696 -0.3189455 -0.2115073 0.9238714 -0.3497424 -0.1555037 0.9238501 -0.349743 -0.1555034 0.9238498 -0.3707102 -0.09502886 0.9238742 -0.3707167 -0.09502818 0.9238717 -0.2317978 0.3046412 0.9238308 -0.2792813 0.2617325 0.9238496 -0.231805 0.3046448 0.9238279 -0.2792499 0.2617281 0.9238604 -0.3189287 0.2115328 0.9238715 -0.3189346 0.2115315 0.9238697 -0.3497582 0.1554687 0.9238499 -0.3497554 0.1554748 0.9238499 -0.3707088 0.0950599 0.9238716 -0.3707045 0.09505054 0.9238741 -0.3813863 0.03196058 0.9238631 -0.3813946 0.03196399 0.9238595 -0.3813939 -0.03197232 0.9238595 -0.3813854 -0.03197225 0.923863</float_array>
|
|
99
|
+
<technique_common>
|
|
100
|
+
<accessor source="#geom-wamUpperWristYawLink-normals-array" count="613" stride="3">
|
|
101
|
+
<param name="X" type="float"/>
|
|
102
|
+
<param name="Y" type="float"/>
|
|
103
|
+
<param name="Z" type="float"/>
|
|
104
|
+
</accessor>
|
|
105
|
+
</technique_common>
|
|
106
|
+
</source>
|
|
107
|
+
<source id="geom-wamUpperWristYawLink-map1">
|
|
108
|
+
<float_array id="geom-wamUpperWristYawLink-map1-array" count="2067">0.5844917 0.5108002 0 0.8830599 0.5544875 0 0.5914976 0.5305729 0 0.5563751 0.5035523 0 0.5558844 0.5280049 0 0.3997706 0.08553778 0 0.3997706 0.1152306 0 0.3620036 0.1370361 0 0.04429861 0.08553778 0 0.08206564 0.1370361 0 0.5682316 0.6630626 0 0.5747228 0.6401496 0 0.5976663 0.6630626 0 0.6029122 0.6401496 0 0.6305607 0.6630626 0 0.6344187 0.6401496 0 0.6660067 0.6630626 0 0.6683643 0.6401496 0 0.7030143 0.6630626 0 0.7405322 0.6630626 0 0.7038003 0.6401496 0 0.7775398 0.6630626 0 0.7397464 0.6401496 0 0.8129858 0.6630626 0 0.04429861 0.1152306 0 0.7751822 0.6401496 0 0.1023891 0.1573597 0 0.1969891 0.151955 0 0.1866987 0.1632412 0 0.09356686 0.1458631 0 0.107934 0.1707497 0 0.2106596 0.1451431 0 0.2258684 0.1437358 0 0.1811772 0.1774821 0 0.1098275 0.1851216 0 0.1811772 0.192761 0 0.1125345 0.2096248 0 0.1205293 0.2329452 0 0.1866987 0.207002 0 0.1334191 0.2539559 0 0.1505914 0.2716426 0 0.1969891 0.2182881 0 0.1705503 0.2848222 0 0.1796905 0.2929198 0 0.2106596 0.2251 0 0.2086913 0.2972164 0 0.2258684 0.2265073 0 0.2354013 0.2970902 0 0.2934778 0.2716426 0 0.2735189 0.2848222 0 0.2405628 0.2223276 0 0.2647622 0.2929152 0 0.3106501 0.2539559 0 0.2527513 0.2131219 0 0.5188609 0.5041987 0 0.2607928 0.2001339 0 0.5199581 0.5286191 0 0.3315347 0.2096248 0 0.3235399 0.2329452 0 0.263598 0.1851216 0 0.809128 0.6401496 0 0.8458802 0.6630626 0 0.3342417 0.1851216 0 0.8406343 0.6401496 0 0.8753149 0.6630626 0 0.3361352 0.1707497 0 0.2607928 0.1701092 0 0.8688238 0.6401496 0 0.3416801 0.1573597 0 0.2527513 0.1571212 0 0.3505024 0.1458631 0 0.2405628 0.1479156 0 0.07858254 0.611771 0 0.05740813 0.585552 0 0.3766326 0.5991103 0 0.3955021 0.5711895 0 0.04429861 0.5631152 0 0.3997706 0.5631152 0 0.1038806 0.6340394 0 0.3533122 0.6234452 0 0.1325775 0.6517074 0 0.3262142 0.6434835 0 0.2961193 0.6586549 0 0.1638506 0.6642745 0 0.2638972 0.6685243 0 0.1967974 0.6713763 0 0.2304689 0.6728069 0 0.3898605 0.6681316 0 0.3898605 0.6728069 0 0.3761899 0.6681316 0 0.3761899 0.6728069 0 0.3609812 0.6681316 0 0.3609812 0.6728069 0 0.3340982 0.6728069 0 0.3462867 0.6681316 0 0.3340982 0.6681316 0 0.3462867 0.6728069 0 0.2249456 0.7218338 0 0.2249456 0.7171584 0 0.2136594 0.7171584 0 0.2136594 0.7218338 0 0.1994185 0.7171584 0 0.1994185 0.7218338 0 0.1841396 0.7171584 0 0.1841396 0.7218338 0 0.1698986 0.7171584 0 0.1698986 0.7218338 0 0.1586125 0.7171584 0 0.1586125 0.7218338 0 0.2249456 0.7286113 0 0.2249456 0.7332865 0 0.2136594 0.7286113 0 0.1586125 0.7332865 0 0.2136594 0.7332865 0 0.1586125 0.7286113 0 0.1994185 0.7286113 0 0.1698986 0.7332865 0 0.1994185 0.7332865 0 0.1698986 0.7286113 0 0.9503909 0.4581278 0 0.9209564 0.4581278 0 0.9438998 0.4810407 0 0.1841396 0.7286113 0 0.8880618 0.4581278 0 0.9157104 0.4810407 0 0.8526159 0.4581278 0 0.1841396 0.7332865 0 0.884204 0.4810407 0 0.251811 0.8499116 0 0.2586229 0.8362411 0 0.324956 0.8362411 0 0.299429 0.8204292 0 0.2699091 0.8259507 0 0.2841501 0.8204292 0 0.3136699 0.8259507 0 0.331768 0.8499116 0 0.2504038 0.8651204 0 0.3331752 0.8651204 0 0.2545835 0.8798148 0 0.3289955 0.8798148 0 0.2637892 0.8920034 0 0.3197898 0.8920034 0 0.2767771 0.9000448 0 0.3068018 0.9000448 0 0.2917895 0.90285 0 0.1333741 0.4479211 0 0.1613745 0.4587678 0 0.1463621 0.4559626 0 0.1763868 0.4559626 0 0.1241685 0.4357326 0 0.1893748 0.4479211 0 0.1199887 0.4210381 0 0.1985805 0.4357326 0 0.2027602 0.4210381 0 0.121396 0.4058294 0 0.1282079 0.3921588 0 0.2013529 0.4058294 0 0.1394941 0.3818685 0 0.194541 0.3921588 0 0.153735 0.376347 0 0.1832548 0.3818685 0 0.1690139 0.376347 0 0.4265097 0.1845119 0 0.4307782 0.1925861 0 0.0753062 0.1925861 0 0.08841571 0.1701494 0 0.4076402 0.156591 0 0.1095901 0.1439303 0 0.3843198 0.1322561 0 0.1348881 0.1216619 0 0.3572218 0.1122178 0 0.6952428 0.2700341 0 0.7327644 0.270982 0 0.1635851 0.103994 0 0.3271269 0.09704648 0 0.1948581 0.09142676 0 0.2949048 0.08717693 0 0.2278049 0.084325 0 0.2614764 0.08289436 0 0.1000609 0.6681316 0 0.1000609 0.6728069 0 0.08787236 0.6681316 0 0.08787236 0.6728069 0 0.0731779 0.6681316 0 0.0731779 0.6728069 0 0.05796916 0.6681316 0 0.8192644 0.4200104 0 0.7817431 0.4190552 0 0.8178461 0.4447694 0 0.7819135 0.443858 0 0.6734992 0.5455316 0 0.6964118 0.5512776 0 0.6786022 0.5691079 0 0.7832718 0.4660346 0 0.6051093 0.2880106 0 0.776378 0.4451084 0 0.8109892 0.4727809 0 0.8120081 0.4482528 0 0.8484843 0.4728671 0 0.05796916 0.6728069 0 0.8479157 0.4483401 0 0.04429861 0.6681316 0 0.04429861 0.6728069 0 0.8135118 0.517162 0 0.766329 0.5173967 0 0.8081842 0.4054351 0 0.8451917 0.4054351 0 0.8484579 0.5036694 0 0.8806378 0.4054351 0 0.884312 0.4816444 0 0.9135322 0.4054351 0 0.9213911 0.4536591 0 0.9429669 0.4054351 0 0.9508258 0.4291848 0 0.7706664 0.4054351 0 0.7324955 0.5047309 0 0.7336587 0.4054351 0 0.7153084 0.4950657 0 0.6982127 0.4054351 0 0.6756981 0.4678151 0 0.6653183 0.4054351 0 0.661042 0.4565271 0 0.6426607 0.4415648 0 0.6358836 0.4054351 0 0.5823351 0.6120311 0 0.5708125 0.6520903 0 0.6050337 0.5939764 0 0.6002471 0.6520903 0 0.6294673 0.575881 0 0.6331415 0.6520903 0 0.6653216 0.5538559 0 0.6685875 0.6520903 0 0.6992163 0.5406288 0 0.7055951 0.6520903 0 0.7474506 0.5401286 0 0.743113 0.6520903 0 0.781284 0.5527945 0 0.7801204 0.6520903 0 0.8112494 0.5704409 0 0.8155665 0.6520903 0 0.8527375 0.6009983 0 0.848461 0.6520903 0 0.8830599 0.6260237 0 0.8778957 0.6520903 0 0.361765 0.7933192 0 0.361765 0.7656882 0 0.334667 0.7933192 0 0.334667 0.7656882 0 0.3045721 0.7933192 0 0.3045721 0.7656882 0 0.27235 0.7933192 0 0.27235 0.7656882 0 0.2389216 0.7933192 0 0.2389216 0.7656882 0 0.2052501 0.7933192 0 0.2052501 0.7656882 0 0.1723033 0.7933192 0 0.1723033 0.7656882 0 0.1410303 0.7656882 0 0.1410303 0.7933192 0 0.1123333 0.7656882 0 0.1123333 0.7933192 0 0.08703531 0.7933192 0 0.08703531 0.7656882 0 0.3500358 0.6657591 0 0.6966563 0.2452749 0 0.5745793 0.2417283 0 0.7325889 0.2461791 0 0.5981554 0.236625 0 0.5803253 0.2188154 0 0.3500358 0.6381281 0 0.3229379 0.6657591 0 0.3229379 0.6381281 0 0.292843 0.6657591 0 0.292843 0.6381281 0 0.2606209 0.6657591 0 0.2606209 0.6381281 0 0.2271925 0.6657591 0 0.2271925 0.6381281 0 0.1293011 0.6657591 0 0.1605742 0.6381281 0 0.1605742 0.6657591 0 0.1006042 0.6657591 0 0.1293011 0.6381281 0 0.1006042 0.6381281 0 0.0753062 0.6657591 0 0.0753062 0.6381281 0 0.193521 0.6657591 0 0.193521 0.6381281 0 0.930671 0.3154136 0 0.9430905 0.3450334 0 0.9504023 0.3762984 0 0.9524067 0.408354 0 0.8920438 0.2643984 0 0.9490457 0.4402806 0 0.9404097 0.4712085 0 0.9135 0.2882887 0 0.8387942 0.2288881 0 0.9267468 0.5002723 0 0.908431 0.5266508 0 0.8669086 0.2444083 0 0.7447253 0.2127663 0 0.8600153 0.5685064 0 0.8312679 0.5828182 0 0.7768381 0.2128449 0 0.885971 0.5496069 0 0.8084833 0.2182736 0 0.7168294 0.2170052 0 0.8043855 0.5913901 0 0.6893705 0.2257118 0 0.7759132 0.5957637 0 0.660623 0.2400236 0 0.7438003 0.5956852 0 0.6346673 0.2589231 0 0.712155 0.5902565 0 0.6122075 0.281879 0 0.6818443 0.5796419 0 0.5938916 0.3082577 0 0.6537296 0.5641217 0 0.8156082 0.4581278 0 0.8502582 0.4810407 0 0.8148224 0.4810407 0 0.7780904 0.4581278 0 0.7788762 0.4810407 0 0.7410827 0.4581278 0 0.7434404 0.4810407 0 0.7056368 0.4581278 0 0.7094947 0.4810407 0 0.6727422 0.4581278 0 0.6779882 0.4810407 0 0.6433076 0.4581278 0 0.5802286 0.3373215 0 0.6497988 0.4810407 0 0.6285946 0.5441315 0 0.5715926 0.3682493 0 0.6071383 0.5202414 0 0.5682316 0.4001761 0 0.5899673 0.4931163 0 0.5702361 0.4322315 0 0.5775478 0.4634966 0 0.3213716 0.27702 0 0.1329767 0.3695695 0 0.1329767 0.3648942 0 0.1479891 0.3695695 0 0.3492925 0.249389 0 0.3492925 0.27702 0 0.2906596 0.27702 0 0.3132974 0.249389 0 0.2580494 0.27702 0 0.2896544 0.2254468 0 0.2244668 0.27702 0 0.2580401 0.2301034 0 0.1908841 0.27702 0 0.2244808 0.2316743 0 0.1582739 0.27702 0 0.1909636 0.2299585 0 0.1275619 0.27702 0 0.1356362 0.249389 0 0.1650017 0.2265408 0 0.09964108 0.27702 0 0.09964108 0.249389 0 0.0753062 0.27702 0 0.0753062 0.249389 0 0.1275619 0.249389 0 0.1356362 0.2196962 0 0.3132974 0.2196962 0 0.3213716 0.249389 0 0.3736274 0.249389 0 0.3736274 0.27702 0 0.0753062 0.5604718 0 0.0753062 0.5881028 0 0.1015252 0.5881028 0 0.1015252 0.5604718 0 0.1309469 0.5604718 0 0.1239619 0.5881028 0 0.1627248 0.5604718 0 0.1628838 0.6097494 0 0.1239619 0.6177956 0 0.1310824 0.6160657 0 0.195999 0.6064627 0 0.1959428 0.5604718 0 0.209777 0.6057053 0 0.2296423 0.5604718 0 0.2256658 0.4587678 0 0.1199887 0.3648942 0 0.2209905 0.4587678 0 0.1479891 0.3648942 0 0.2628603 0.5604718 0 0.2296049 0.6064487 0 0.2946383 0.5604718 0 0.2627387 0.609698 0 0.1199887 0.3695695 0 0.2944606 0.6161265 0 0.1630014 0.3695695 0 0.3016232 0.5881028 0 0.3240599 0.5604718 0 0.3240599 0.5881028 0 0.350279 0.5881028 0 0.350279 0.5604718 0 0.3016232 0.6177956 0 0.8069933 0.5882241 0 0.1630014 0.3648942 0 0.7812244 0.5621744 0 0.7695881 0.5853231 0 0.7584289 0.5781962 0 0.7353008 0.5869293 0 0.8004171 0.2887796 0 0.8025032 0.2623041 0 0.1759894 0.3695695 0 0.7812124 0.2770679 0 0.774821 0.2654721 0 0.7508175 0.2630826 0 0.7829054 0.2361647 0 0.1759894 0.3648942 0 0.7245976 0.2361647 0 0.7828544 0.6239991 0 0.7245466 0.6239991 0 0.2256658 0.4450972 0 0.8470002 0.2361647 0 0.8536239 0.2396551 0 0.8839465 0.258955 0 0.9106355 0.2830315 0 0.932936 0.3112207 0 0.9502253 0.3427274 0 0.9620339 0.3766731 0 0.9680148 0.4121089 0 0.9680148 0.4480549 0 0.9620339 0.4834908 0 0.2209905 0.4450972 0 0.9502253 0.5174364 0 0.932936 0.5489428 0 0.9106355 0.5771323 0 0.8839465 0.6012088 0 0.8536239 0.6205084 0 0.8461632 0.6239991 0 0.6604518 0.6239991 0 0.653828 0.6205084 0 0.2095377 0.4027671 0 0.6235054 0.6012088 0 0.5968164 0.5771323 0 0.5745159 0.5489428 0 0.5572266 0.5174364 0 0.214213 0.4027671 0 0.5454181 0.4834908 0 0.5394372 0.4480549 0 0.5394372 0.4121089 0 0.5454181 0.3766731 0 0.2256658 0.4298885 0 0.5572266 0.3427274 0 0.5745159 0.3112207 0 0.5968164 0.2830315 0 0.2209905 0.4298885 0 0.6235054 0.258955 0 0.653828 0.2396551 0 0.6612887 0.2361647 0 0.2256658 0.415194 0 0.7534299 0.6223253 0 0.7821502 0.6201003 0 0.3898605 0.6566789 0 0.2209905 0.415194 0 0.8134014 0.612711 0 0.8429789 0.6002187 0 0.3898605 0.6613541 0 0.2256658 0.4030055 0 0.8700764 0.5829805 0 0.8939179 0.5614659 0 0.377672 0.6566789 0 0.9138404 0.5362769 0 0.2209905 0.4030055 0 0.9292925 0.5081285 0 0.377672 0.6613541 0 0.9398355 0.477806 0 0.9451835 0.4461362 0 0.9451835 0.4140277 0 0.3629775 0.6566789 0 0.9398355 0.3823579 0 0.9292925 0.3520353 0 0.3629775 0.6613541 0 0.9138404 0.3238867 0 0.8939179 0.2986978 0 0.8700764 0.2771833 0 0.3477688 0.6566789 0 0.8429789 0.259945 0 0.8134014 0.2474526 0 0.7821502 0.2400633 0 0.7534299 0.2378385 0 0.7253018 0.2400633 0 0.6940505 0.2474526 0 0.6644731 0.259945 0 0.6373757 0.2771833 0 0.613534 0.2986978 0 0.5936117 0.3238867 0 0.5781595 0.3520353 0 0.5676164 0.3823579 0 0.5622686 0.4140277 0 0.5622686 0.4461362 0 0.5676164 0.477806 0 0.5781595 0.5081285 0 0.5936117 0.5362769 0 0.613534 0.5614659 0 0.6373757 0.5829805 0 0.6644731 0.6002187 0 0.6940505 0.612711 0 0.7253018 0.6201003 0 0.240616 0.8256965 0 0.4182773 0.8256965 0 0.240616 0.8141999 0 0.4182773 0.8141999 0 0.240616 0.8008099 0 0.4182773 0.8008099 0 0.240616 0.7864381 0 0.4182773 0.7864381 0 0.240616 0.7619348 0 0.4182773 0.7619348 0 0.3188665 0.7403631 0 0.2095377 0.4157551 0 0.3404804 0.7402555 0 0.3033678 0.734561 0 0.3564886 0.7340748 0 0.214213 0.4157551 0 0.2954946 0.7301335 0 0.3729129 0.7239854 0 0.4182773 0.7386144 0 0.2095377 0.4307674 0 0.3898982 0.7111658 0 0.4182773 0.7176037 0 0.2773498 0.7176504 0 0.214213 0.4307674 0 0.240616 0.7386144 0 0.2706361 0.7124796 0 0.240616 0.7176037 0 0.2095377 0.4457798 0 0.2622159 0.7056256 0 0.240616 0.6999171 0 0.1216323 0.3058226 0 0.214213 0.4457798 0 0.2992934 0.3058226 0 0.1216323 0.3173191 0 0.2992934 0.3173191 0 0.3477688 0.6613541 0 0.1216323 0.3307092 0 0.2992934 0.3307092 0 0.1216323 0.345081 0 0.3340982 0.6566789 0 0.2992934 0.345081 0 0.1216323 0.3695843 0 0.2992934 0.3695843 0 0.3340982 0.6613541 0 0.221043 0.3911561 0 0.2992934 0.4316021 0 0.2992934 0.4139154 0 0.2831637 0.4305033 0 0.2992934 0.3929047 0 0.2692733 0.4190395 0 0.2502683 0.4050417 0 0.2365416 0.3969581 0 0.1989476 0.3913852 0 0.1834209 0.3974444 0 0.1669966 0.4075336 0 0.1216323 0.3929047 0 0.1454061 0.4240935 0 0.1216323 0.4139154 0 0.1558039 0.4158229 0 0.6897121 0.3405824 0 0.7122701 0.3491276 0 0.6791497 0.3481114 0 0.6572526 0.3498962 0 0.6653746 0.5236232 0 0.6716421 0.4993816 0 0.6419963 0.5084642 0 0.6525589 0.5009354 0 0.6194384 0.4999191 0 0.2095377 0.4587678 0 0.214213 0.4587678 0 0.8573719 0.5541116 0 0.8630453 0.5492647 0 0.6317442 0.2869233 0 0.6264583 0.2921899 0 0.6106477 0.2188154 0 0.6172716 0.2189583 0 0.6964118 0.5816002 0 0.6962691 0.5882241 0 0.1936505 0.5208625 0 0.2272565 0.5208297 0 0.2134784 0.5221436 0 0.2603716 0.5151446 0 0.1605166 0.5152287 0 0.292173 0.5042044 0 0.1287948 0.5040969 0 0.2992934 0.5012028 0 0.1216323 0.5012028 0 0.2992934 0.4634358 0 0.1216323 0.4634358 0 0.2992934 0.4519346 0 0.1216323 0.4519346 0 0.3304757 0.3632146 0 0.3453712 0.3808638 0 0.3304757 0.3809013 0 0.7002253 0.5136373 0 0.6684998 0.5173967 0 0.6459326 0.5149691 0 0.9524067 0.5802765 0 0.9096947 0.5789996 0 0.9263375 0.5957637 0 0.9081137 0.5161198 0 0.9508258 0.5173967 0 0.9341828 0.5006326 0 0.3629498 0.8490025 0 0.2958733 0.8487453 0 0.3294326 0.846029 0 0.3889117 0.8549215 0 0.264259 0.8568103 0 0.4182773 0.866778 0 0.240616 0.866778 0 0.4182773 0.904545 0 0.240616 0.904545 0 0.4182773 0.9160462 0 0.240616 0.9160462 0 0.4113669 0.1052342 0 0.3955599 0.08837506 0 0.4113669 0.08754754 0 0.7817431 0.4628228 0 0.8369274 0.4624179 0 0.801055 0.4829072 0 0.3628275 0.2424053 0 0.346961 0.2302971 0 0.3627082 0.2312636 0 0.3736274 0.230357 0 0.467212 0.7075256 0 0.4386098 0.6999171 0 0.4541621 0.7241524 0 0.4392787 0.7245557 0 0.4481602 0.7330172 0 0.4397771 0.7479991 0 0.243438 0.7091932 0 0.2652382 0.7171791 0 0.2566575 0.7259606 0 0.2657549 0.741081 0 0.04429861 0.3535857 0 0.04592466 0.3809013 0 0.05689451 0.3549121 0 0.06658188 0.3674586 0 0.0691741 0.3554792 0 0.08636232 0.3548352 0 0.3620036 0.4845068 0 0.3997706 0.5063124 0 0.3997706 0.5360051 0 0.04429861 0.5360051 0 0.08206564 0.4845068 0 0.04429861 0.5063124 0 0.2182009 0.4778071 0 0.1913179 0.4644217 0 0.1023891 0.4641833 0 0.107934 0.4507932 0 0.2035064 0.4736274 0 0.09356686 0.4756798 0 0.1832764 0.4514337 0 0.1098275 0.4364214 0 0.1804712 0.4364214 0 0.1125345 0.4119181 0 0.1832764 0.421409 0 0.1205293 0.3885978 0 0.1334191 0.367587 0 0.1913179 0.408421 0 0.1505914 0.3499003 0 0.2035064 0.3992154 0 0.1705503 0.3367207 0 0.1793071 0.3286277 0 0.2182009 0.3950357 0 0.2086679 0.3244527 0 0.2334096 0.3964429 0 0.2353779 0.3243265 0 0.2470802 0.4032548 0 0.2643788 0.3286231 0 0.2733507 0.3362391 0 0.2573705 0.414541 0 0.2934778 0.3499003 0 0.3106501 0.367587 0 0.3235399 0.3885978 0 0.3315347 0.4119181 0 0.3342417 0.4364214 0 0.262892 0.4287819 0 0.3361352 0.4507932 0 0.262892 0.4440608 0 0.3416801 0.4641833 0 0.2573705 0.4583018 0 0.3505024 0.4756798 0 0.2470802 0.4695879 0 0.2334096 0.4763998 0</float_array>
|
|
109
|
+
<technique_common>
|
|
110
|
+
<accessor source="#geom-wamUpperWristYawLink-map1-array" count="689" stride="3">
|
|
111
|
+
<param name="S" type="float"/>
|
|
112
|
+
<param name="T" type="float"/>
|
|
113
|
+
<param name="P" type="float"/>
|
|
114
|
+
</accessor>
|
|
115
|
+
</technique_common>
|
|
116
|
+
</source>
|
|
117
|
+
<source id="geom-wamUpperWristYawLink-map1-textangents">
|
|
118
|
+
<float_array id="geom-wamUpperWristYawLink-map1-textangents-array" count="2067">-0.05670836 -0.6720554 0.7350699 -0.01035921 -0.6358952 0.7717059 -0.04080102 -0.6533231 0.7549795 0.6268453 -0.00795276 -0.7779258 0.6267885 -0.01464104 -0.778516 0.5068201 -0.0793077 -0.8397743 0.215904 0.4501577 -0.8619797 0.3320106 0.5141878 -0.7881974 0.334454 0.5177089 -0.7844002 0.7136196 0.04559214 -0.6947809 0.6081495 -0.01346948 -0.7899465 0.7136127 0.04556713 -0.6947783 -0.8281812 -0.009852617 0.5542073 -0.7354132 0.02954563 0.6725566 -0.7354039 0.02956704 0.6725585 -0.8327129 0.009852969 0.5473754 -0.9089204 -0.009843505 0.4085438 -0.9122421 0.009837528 0.4010789 -0.9642572 -0.009862655 0.2514422 -0.9662846 0.009864327 0.2435313 -0.9926871 -0.009848338 0.087265 -0.9933688 -0.009838214 -0.07913718 -0.9933661 0.009848569 0.07916143 -0.9662901 -0.009862145 -0.2435154 -0.9926857 0.0098378 -0.08729041 -0.9122189 -0.009845662 -0.401122 -0.9642581 0.009864202 -0.2514379 -0.9089129 0.009839135 -0.4085646 -0.8326879 -0.009855043 -0.5474062 -0.8281953 0.009853072 -0.5541803 -0.7354813 -0.02952399 -0.6724887 0.6361106 -0.009262684 0.7706466 0.7112701 -0.05301351 0.6966543 0.6242374 -0.001937823 0.7794003 0.7112827 -0.05301302 0.6966539 -0.7354809 -0.02954682 -0.6724821 0.506009 0.8615626 -0.006459036 0.4936153 0.8683999 0.005944802 0.5075189 0.8610278 0.003396671 0.4697391 0.8827036 -0.006816453 0.4867293 0.8735528 -8.39564e-6 -0.005455251 0.7174115 0.6949076 0.02819878 0.6928291 0.7205503 0.003245182 0.7065684 0.7069326 0.6313052 0.02749981 -0.7739528 0.6230321 0.03848029 -0.7807915 0.5107606 0.09698888 -0.8380838 0.2194457 -0.4536166 -0.8597897 0.3320106 -0.5141878 -0.7881974 0.3339758 -0.5172348 -0.7849933 0.7193613 -0.027326 -0.689794 0.613884 0.03174249 -0.7849763 -0.8281812 0.009852617 0.5542073 -0.7354132 -0.02954563 0.6725566 -0.7354039 -0.02956704 0.6725585 0.7193531 -0.02730162 -0.6897917 -0.9089204 0.009843514 0.4085438 -0.8327129 -0.009852969 0.5473754 -0.9642572 0.009862655 0.2514422 -0.9122421 -0.009837528 0.4010789 -0.9926871 0.009848338 0.087265 -0.9662846 -0.009864327 0.2435313 -0.9933661 -0.009848569 0.07916143 -0.9933688 0.009838213 -0.07913718 -0.9926857 -0.0098378 -0.08729041 -0.9662901 0.009862151 -0.2435154 -0.9642581 -0.009864202 -0.2514379 -0.9122189 0.009845662 -0.401122 -0.9089129 -0.009839135 -0.4085646 -0.8326879 0.009855043 -0.5474062 -0.8281953 -0.009853072 -0.5541803 -0.7354813 0.02952399 -0.6724887 0.63617 0.009080406 0.7705998 0.7113419 0.05283277 0.6966071 0.7113298 0.05283151 0.696607 -0.7354809 0.02954682 -0.6724821 0.5471602 0.008370518 0.8337759 0.6338303 0.01588491 0.7721927 0.6152194 0.0250936 0.784407 0.6243002 0.001755463 0.7793507 0.4888292 -0.005017438 0.8711016 0.4578094 6.57741e-6 0.8890504 -1 0 0 -1 0 0 -1 0 0 0 0.9166061 0.3550482 0 0.9166061 0.3550482 0 0.9829864 -4.74319e-8 -1 0 0 0 0.5924721 -0.7843963 0 0.5924721 -0.7843963 0 0.8356638 -0.5176273 0 0.7264581 0.6621966 0 0.9829864 -6.87762e-8 -1 0 0 0 0.8356638 -0.5176273 0 0.7264581 0.6621966 0 0.9166062 -0.3550481 -1 0 0 0 0.9661859 -0.1807504 0 0.7264581 0.6621965 0 0.7264581 0.6621966 0 0.4381398 0.8799109 0 0.9166062 -0.3550482 -1 0 0 0 0.9661859 -0.1807504 0 0.4381398 0.8799109 0 0.726458 -0.6621966 -1 0 0 0 0.9661859 0.1807505 0 0.09072655 0.9787965 0 0.726458 -0.6621966 -1 0 0 0 0.9661859 0.1807505 0 0.09072659 0.9787965 0 -0.726458 0.6621966 0 -0.726458 0.6621966 0 -0.4381394 0.8799111 0 0.8356639 0.5176273 -1 0 0 0 -0.2690626 0.9453925 0 -0.4381394 0.8799111 0 0.8356639 0.5176273 1 0 0 1 0 0 1 0 0 0 -0.2690625 0.9453925 0 -0.0907263 0.9787966 0 0.5924724 0.7843961 1 0 0 0 -0.09072631 0.9787966 0 -0.5924724 0.7843961 0 0.5924723 0.7843961 1 0 0 0 0.2690623 0.9453926 0 -0.5924724 0.7843961 0 0.5924724 0.7843961 0 0.5924724 0.7843962 0 0.2690626 0.9453925 1 0 0 0 0.2690623 0.9453926 0 -0.5924724 0.7843961 0 -0.5924724 0.7843961 0 -0.8356639 0.5176273 0 0.2690626 0.9453925 1 0 0 0 0.5924721 0.7843963 0 -0.8356639 0.5176273 0 -0.09072658 0.9787965 1 0 0 0 0.5924721 0.7843963 0 -0.9661859 0.1807505 0 -0.09072657 0.9787965 1 0 0 0 -0.5924721 -0.7843963 0 -0.5924721 -0.7843963 0 -0.8356638 -0.5176273 0 -0.9661859 0.1807505 0 -0.4381399 0.8799109 1 0 0 0 -0.8356638 -0.5176273 0 -0.9661859 -0.1807504 0 -0.4381398 0.8799109 0 -0.7264581 0.6621965 0 -0.7264581 0.6621966 0 -0.9661859 -0.1807504 0 1.29265e-7 1 0 9.57109e-7 1 0 4.78554e-7 1 0 -3.19036e-7 1 0 -2.41114e-7 1 0 -9.57109e-7 1 0 4.3127e-9 1 0 -2.7337e-7 1 0 -1.27235e-7 1 0 -3.43525e-7 1 0 -5.06301e-8 1 0 1.51732e-8 1 0 -2.7726e-7 1 0 -1.38407e-7 1 0 -5.29583e-8 1 0 -1.75805e-8 1 0 -1.37294e-7 1 0 -1.88089e-7 1 0 -4.42215e-7 1 0 -6.48199e-8 1 0 3.46593e-7 1 0 -2.59843e-7 1 0 -5.81507e-7 1 0 -1.39269e-6 1 0 -3.97246e-7 1 0 4.23876e-8 1 0 1.01265e-6 1 0 7.91184e-7 1 0 1.87223e-7 1 0 -2.70755e-7 1 0 -8.13883e-7 1 0 5.8291e-8 1 0 -4.67197e-7 1 0 6.03079e-7 1 0 1.02879e-7 1 0 -1.06025e-7 1 0 3.80336e-7 1 0 5.80195e-7 1 0 5.3354e-7 1 0 2.95801e-7 1 0 1.17378e-7 1 0 -1.50049e-7 1 0 -1.68322e-7 1 0 -7.45566e-8 1 0 1.30142e-7 1 0 -8.47349e-9 1 0 -1.6947e-8 1 0 -1.12673e-8 1 0 5.64899e-9 1 0 5.8477e-8 1 0 1.6947e-8 1 0 -1.97585e-8 1 0 -7.37736e-8 1 0 -1.64644e-8 1 0 -1.14825e-7 1 0 -4.4648e-8 1 0 4.97434e-8 1 0 8.55228e-8 1 0 -7.69359e-8 1 0 -8.2374e-8 1 0 -6.12133e-8 1 0 -1.29813e-7 1 0 -2.78195e-8 1 0 1.251e-8 1 0 -1.74729e-8 1 0 8.65231e-8 1 0 -2.44852e-7 1 0 -4.35059e-7 1 0 -1.99955e-7 1 0 3.81139e-7 1 0 5.51592e-7 1 0 1.76473e-7 1 0 -5.82627e-7 1 0 -1.28505e-7 1 0 1.13527e-6 1 0 -1.59844e-8 1 0 4.24837e-7 1 0 3.09173e-7 1 0 2.89211e-7 1 0 9.38887e-8 1 0 -1.6662e-7 1 0 -2.40735e-7 1 0 6.43316e-9 1 0 -6.32134e-8 1 0 9.87935e-9 1 0 2.02415e-8 1 0 2.51581e-8 1 0 5.54381e-8 1 0 7.71527e-8 1 0 1.68404e-8 1 9.04346e-8 0 1 5.24783e-8 0 1 9.62029e-8 0 1 1.98944e-8 0 1 1.06631e-8 0 1 0 0 1 1.16711e-7 0 1 5.56268e-8 0 1 1.7501e-7 0 1 2.30878e-7 0 1 4.60747e-9 0 1 1.26742e-7 0 1 7.19985e-7 0 1 1.16771e-6 0 1 1.60546e-6 0 1 -4.33315e-9 0 1 0 0 1 -1.06631e-8 0 1 3.63974e-9 0 1 1.20323e-8 0 1 -5.24621e-10 0 1 -1.93905e-8 0 1 -2.60516e-8 0 1 -2.48871e-8 0 1 -2.69983e-8 0 1 -3.21829e-8 0 1 -2.00455e-8 0 1 1.18132e-8 0 1 3.35627e-8 0 1 5.65638e-8 0 1 0 -1 7.71745e-8 0 -1 2.7315e-8 0 -1 8.39419e-8 0 -1 1.03052e-8 0 -1 1.5213e-7 0 -1 -1.64254e-8 0 -1 -1.52445e-7 0 -1 -1.15594e-7 0 -1 1.63201e-7 0 -1 4.48274e-8 0 -1 1.91626e-10 0 -1 -5.8475e-8 0 -1 7.34823e-8 0 -1 -7.31333e-8 0 -1 -6.52969e-8 0 -1 -2.11079e-7 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.8676138 -7.48192e-5 -0.4918035 -0.7752651 0 -0.625918 -0.7752651 0 -0.6259181 -0.9414767 -1.50587e-4 -0.3277309 -0.9091302 3.16979e-6 -0.4149999 -0.9823307 1.44939e-5 -0.1675055 -0.9424837 -2.93518e-6 -0.3259615 -0.9964964 1.05399e-4 8.67e-4 -0.98188 -8.01711e-5 -0.1693643 -0.9820076 1.81883e-4 0.1691083 -0.9965158 -1.50848e-4 0.0032295 -0.941465 -2.55618e-5 0.326088 -0.9833152 -6.42439e-6 0.1651463 -0.8676138 7.48194e-5 0.4918035 -0.911441 -1.51198e-6 0.409426 -0.9498518 1.06461e-4 0.3022576 -0.7752651 0 0.6259181 -0.7752651 0 0.6259181 -0.6582837 0 0.7479699 -0.6582837 0 0.7479699 -0.8562976 0 0.5136547 -0.5223612 0 0.8484977 -0.5223612 0 0.8484978 -0.6582837 0 0.7479699 -0.6582837 0 0.7479699 -0.3715095 0 0.9245526 -0.3715094 0 0.9245526 -0.2099702 0 0.9740233 -0.2099702 0 0.9740233 -0.04231181 0 0.995496 -0.04231181 0 0.995496 0.1265813 0 0.9883233 0.1265813 0 0.9883233 0.2917931 0 0.9527151 0.2917931 0 0.9527151 0.4485742 0 0.8897156 0.4485742 0 0.8897156 0.5925032 0 0.8010857 0.5925032 0 0.8010857 0.7193545 0 0.6894572 0.7193545 0 0.6894572 -0.7193545 0 -0.6894572 -0.7193545 0 -0.6894572 -0.8206988 0 -0.5663889 -0.8232096 -1.25942e-4 -0.5620196 -0.9125633 3.99357e-5 -0.4015736 -0.9108729 -1.68855e-5 -0.4049612 -0.9642697 3.71532e-4 -0.2508744 -0.9620895 -3.03607e-4 -0.2593261 -0.9214754 -2.20241e-6 -0.3884367 -0.9334765 1.08975e-5 -0.3571942 -0.9904208 -1.4423e-4 -0.1330531 -0.9931883 9.14339e-6 -0.09342848 -0.9977595 3.41701e-5 -0.0150659 -0.9930947 -3.6772e-5 0.09292914 -0.9643137 -3.29984e-4 0.2505777 -0.9916806 1.88646e-4 0.117927 -0.9124998 3.00625e-5 0.4026503 -0.9631065 2.13121e-4 0.2559983 -0.9333601 5.72784e-5 0.3572685 -0.8973796 5.97831e-6 0.436945 -0.8232096 1.25941e-4 0.5620196 -0.8206988 0 0.5663889 -0.9272703 -3.35278e-7 0.3743926 -0.9214568 1.30108e-7 -0.388481 -0.8562976 0 -0.5136547 -0.6582837 0 -0.7479699 -0.6582837 0 -0.7479699 0.6582837 0 0.7479699 0.5223612 0 0.8484978 0.5223612 0 0.8484977 0.6582837 0 0.7479699 0.3715094 0 0.9245526 0.3715095 0 0.9245526 0.2099702 0 0.9740233 0.2099702 0 0.9740233 0.04231181 0 0.995496 0.04231181 0 0.995496 -0.4485742 0 0.8897156 -0.2917931 0 0.9527151 -0.2917931 0 0.9527151 -0.5925032 0 0.8010857 -0.4485742 0 0.8897156 -0.5925032 0 0.8010857 -0.7193545 0 0.6894572 -0.7193545 0 0.6894572 -0.7193545 0 0.6894572 -0.7193545 0 0.6894572 -0.1265813 0 0.9883233 -0.1265813 0 0.9883233 -0.9271768 4.31246e-6 0.3746241 1 -5.41703e-5 7.95522e-7 1 -3.46608e-5 6.90175e-6 1 -5.41868e-5 7.98088e-7 1 -7.79824e-6 -4.60366e-5 1 -1.46271e-4 3.19824e-7 1 -1.45469e-4 1.70498e-7 1 -3.15372e-5 3.23613e-6 1 9.64865e-6 -2.27265e-5 1 -7.29012e-6 6.54438e-6 1 1.30092e-5 5.02323e-6 1 -6.05524e-6 1.72858e-6 1 1.05789e-5 2.28682e-6 1 2.05662e-6 1.74064e-6 1 0 0 1 0 0 1 1.77121e-6 3.6463e-7 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 -1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.9971443 -0.00470856 -0.01784443 -1 0 0 -0.9990536 0.003295833 0.01158185 -1 0 0 -0.9991655 -0.003255846 0.01159186 -0.9999168 -0.001060478 0.004830093 -0.999269 0.003318338 -0.008937426 -0.9998768 0.002395897 -0.006035659 -0.9994291 -0.00166301 0.0315323 -0.9991565 0.002394748 -0.03682739 -0.9977053 -0.002184161 0.0639067 -0.9999158 0.001010315 0.004761228 -0.9973487 -0.01143141 -0.03272512 -0.9972751 0.009444908 0.04561734 -0.9983294 -0.01325017 -0.01540971 -0.9991129 -0.01246448 0.03446052 0.9993482 0.03588213 -0.002448703 0.9994757 0.0240769 -0.01352316 0.9984262 0.0121195 -0.03418394 0.9998953 0.008306417 0.003411941 0.9997341 0.01326603 0.00706906 0.9996572 -0.009979641 -0.01760187 0.9984393 0.04284816 0.003955215 0.9988422 0.02707205 -0.009024678 0.9975942 0.06417479 0.0262176 -0.9921008 0.02231309 0.036538 -0.9881618 -0.02579301 -0.1031497 -0.9988146 0.007025436 0.02384578 -0.9993671 -0.00787256 -0.003313035 -0.9996257 -0.005920499 0.0229482 -0.9993609 -0.006769757 0.03396051 0.9986756 0.005404712 -0.0323294 0.9985479 2.96528e-4 -0.03622239 0.9990958 0.01047323 -0.02745859 0.9978207 -0.02414815 -0.06140691 0.5334061 -0.5368756 -0.6467274 0.5477205 -0.4299522 -0.7177349 0.5316507 -0.4728634 -0.7005206 -0.9994925 0.007403226 -0.008500965 -0.999689 -0.008697028 0.02039407 -0.9998148 0.003115129 0.01709326 0.5167741 -0.5835868 -0.6213063 -0.9986389 0.00654021 -0.0310411 -0.9993049 -0.005043974 0.01578411 -0.9982837 -0.009083297 0.02994678 -0.9993183 0.002075221 0.03360454 -0.9998765 -0.002354924 -0.006658126 -0.9991522 -0.00237431 -0.03701374 -0.9974954 0.01139969 -0.03055173 -0.9947567 -0.01509854 0.04553029 -0.9933495 0.02608266 -0.02066493 -0.995588 0.0203765 0.08474174 -0.9975499 -0.001138971 -0.06508144 0.9997466 -0.007206007 0.01890832 0.9996748 -0.009423302 0.02020217 0.9961428 0.03905502 -0.0416679 0.5469298 0.6258625 0.5499774 0.5422709 0.5656021 0.6192708 0.5334651 0.6845439 0.4590953 0.5335116 0.4701767 0.7013151 0.5283254 0.4373845 0.7277136 0.5353765 0.5362299 0.6458192 -0.2277236 0 -0.9737258 -0.2277139 0 -0.9737281 -0.2277204 0 -0.9737266 -0.2277265 0 -0.9737251 -0.2277221 0 -0.9737262 -0.2277207 0 -0.9737265 -0.2277245 0 -0.9737256 -0.2277234 0 -0.9737259 -0.2277204 0 -0.9737266 -0.2277192 0 -0.9737268 -0.2277243 0 -0.9737257 -0.2277224 0 -0.9737261 -0.2277212 0 -0.9737264 -0.2277209 0 -0.9737264 -0.2277226 0 -0.973726 -0.2277199 0 -0.9737267 -0.2277221 0 -0.9737262 -0.2277255 0 -0.9737254 -0.2277214 0 -0.9737263 -0.2277204 0 -0.9737266 -0.2277204 0 -0.9737266 -0.2277219 0 -0.9737262 -0.2277233 0 -0.9737259 -0.227721 0 -0.9737264 -0.2277193 0 -0.9737268 -0.2277215 0 -0.9737263 -0.2277238 0 -0.9737258 -0.2277227 0 -0.973726 -0.2277218 0 -0.9737262 -0.2277209 0 -0.9737264 -0.2277221 0 -0.9737262 -0.2277242 0 -0.9737257 -0.2277248 0 -0.9737255 -0.2277211 0 -0.9737264 -0.2277154 0 -0.9737277 -0.2277254 0 -0.9737254 -0.227734 0 -0.9737234 -0.227755 0 -0.9737185 -0.9924571 -1.02427e-4 -0.08299433 -0.9930519 -1.92707e-5 0.07918924 -0.993331 8.10932e-6 -0.08097645 -0.9657018 -5.20103e-5 -0.2478115 -0.9663102 -1.02671e-4 -0.2421009 -0.9112044 -5.21503e-5 -0.4045666 -0.9123654 -2.43371e-4 -0.3976671 -0.8327283 -5.18278e-5 -0.5489177 -0.8216649 -4.48502e-4 -0.5621834 -0.7306217 -1.93865e-4 -0.6803362 -0.7093447 8.87643e-5 -0.7033537 0.6385966 -0.4354076 0.6320453 0.6538909 -0.437432 0.6113374 0.5282392 -0.4493551 0.7165551 0.5741253 -0.4549105 0.6764923 0.4909321 -0.4739838 0.7309754 -0.9927393 6.18152e-5 0.08231275 -0.9735861 1.041e-5 0.2198694 -0.9665941 -5.32304e-5 0.2450426 -0.939223 4.62106e-5 0.3373113 -0.9113632 -2.74771e-5 0.4055919 -0.8833058 1.39352e-4 0.466251 -0.8325681 -1.13031e-4 0.549401 -0.8281889 8.22801e-6 0.5581245 -0.7647213 8.68268e-5 0.6433011 -0.7248995 1.4267e-4 0.6834088 -0.6783484 -0.4518262 0.5720163 -0.5686278 -0.4750811 0.667702 -0.6434805 -0.4602691 0.6076942 -0.5116698 -0.4873652 0.7047738 -0.4787354 -0.5048436 0.7182933 0.5341839 0.4544408 0.7095018 0.4909327 0.4739813 0.7309766 0.5739957 0.4549448 0.6765938 0.6547112 0.4818983 0.5693517 0.566784 0.5895995 0.57543 0.6300874 0.5959302 0.4862616 0.4840465 0.5936158 0.6344205 -0.6233501 -0.6047476 -0.4819691 -0.5885198 -0.5978663 -0.5422141 -0.4815046 -0.6016718 -0.6305672 -0.8127264 0.001991069 -0.581196 -0.8539842 -2.42075e-4 -0.5141845 -0.7139845 -0.003743707 -0.6846898 -0.8273811 -1.71117e-4 -0.5552521 -0.9159284 7.39573e-5 -0.3920123 -0.9112044 5.35585e-5 -0.4045666 -0.9660913 9.96421e-5 -0.2433878 -0.965703 5.43747e-5 -0.2479733 -0.9923306 1.14391e-4 -0.08542505 -0.993414 -4.99875e-6 -0.08081425 -0.9930757 2.71561e-5 0.07825671 -0.9927393 -6.28579e-5 0.08231275 -0.9710381 -1.15745e-5 0.2275987 -0.965856 3.09612e-5 0.2459335 -0.9244885 -4.97762e-6 0.3719981 -0.9088378 -5.13538e-5 0.4086507 -0.8380264 4.66903e-6 0.538379 -0.8289966 -2.47028e-4 0.551747 -0.7350086 -1.12145e-4 0.6751199 -0.7394804 6.11011e-4 0.669874 0.7310347 -0.08424248 -0.6716801 0.6413166 -0.08857789 -0.7577534 0.7354097 -0.08357905 -0.6651594 0.5780703 -0.09109003 -0.8063594 0.5362612 -0.09596457 -0.838579 -0.002022932 -0.03423551 0.9977962 -2.85266e-5 -0.01996762 0.9997507 2.49506e-4 -0.00449009 0.9999697 0.001591204 0.02505277 0.9976484 4.73711e-6 0.009508316 0.9999439 2.35011e-4 0.004518972 0.9999695 0.001590879 -0.02501396 0.9976483 -0.002016639 0.03432133 0.9977956 -2.48065e-5 0.02007972 0.9997495 2.09312e-6 -0.009455377 0.9999441 0.005943061 -0.1384064 0.9887006 0.002861882 -0.1604152 0.9869371 -0.008318356 0.140868 0.9878201 -0.001638619 0.1572726 0.9875214 -0.003081441 0.1874167 0.9818358 -2.53723e-4 -0.1892458 0.9815168 5.35403e-5 -0.1888656 0.9815572 0.003094763 0.1900191 0.9813356 -2.55066e-4 0.1892463 0.9815167 5.35916e-5 0.1888656 0.9815572 0.005942704 0.1384065 0.9887005 0.00285659 0.1604171 0.9869367 -0.008318009 -0.1408681 0.9878201 0.00309293 -0.1900184 0.9813358 -0.00307887 -0.1874176 0.9818356 -0.00163349 -0.1572745 0.987521 -0.00246317 -0.2440559 0.9694149 0.002572091 -0.2424848 0.9698043 -0.001799708 -0.2897345 0.9568603 0.001865053 -0.2888155 0.9571362 -0.001162731 -0.3265087 0.9450388 0.00120126 -0.3260191 0.9452075 -6.25229e-4 -0.3541261 0.9351168 6.40198e-4 -0.3539419 0.9351854 -2.33362e-4 -0.3724009 0.9280422 2.32471e-4 -0.3723643 0.9280571 -2.43596e-5 -0.3815891 0.9243287 2.70379e-5 -0.3815792 0.9243328 -2.36651e-5 -0.3815786 0.924333 2.91501e-5 -0.3815887 0.9243289 -2.32745e-4 -0.3723711 0.9280543 2.35193e-4 -0.372406 0.9280402 -6.39095e-4 -0.3539287 0.9351906 6.25071e-4 -0.3541145 0.9351211 -0.001201747 -0.3260342 0.9452019 0.001163238 -0.3265232 0.945034 -0.001868474 -0.2888065 0.9571391 0.001796684 -0.2897502 0.956856 -0.002568385 -0.242457 0.969812 0.00246647 -0.2440143 0.9694244 0.002468724 0.244015 0.9694242 -0.002565976 0.2424577 0.9698118 0.001796731 0.2897503 0.956856 -0.001867023 0.2888069 0.957139 0.001162918 0.3265232 0.945034 -0.00120215 0.3260341 0.9452019 6.24927e-4 0.3541145 0.9351211 -6.38873e-4 0.3539287 0.9351905 2.33427e-4 0.3724058 0.9280402 -2.33376e-4 0.372371 0.9280543 0.002573042 0.2424845 0.9698043 0.001867692 0.2888148 0.9571364 -0.002460344 0.244055 0.9694152 -0.001798204 0.2897341 0.9568604 0.001201263 0.3260191 0.9452075 -0.001164145 0.3265091 0.9450387 6.4026e-4 0.3539419 0.9351854 -6.25552e-4 0.3541262 0.9351168 2.32014e-4 0.3723644 0.928057 -2.34834e-4 0.372401 0.9280421 2.37569e-5 0.3815793 0.9243327 -2.92461e-5 0.3815892 0.9243287 2.43497e-5 0.3815885 0.924329 -2.7115e-5 0.3815785 0.9243331</float_array>
|
|
119
|
+
<technique_common>
|
|
120
|
+
<accessor source="#geom-wamUpperWristYawLink-map1-textangents-array" count="689" stride="3">
|
|
121
|
+
<param name="X" type="float"/>
|
|
122
|
+
<param name="Y" type="float"/>
|
|
123
|
+
<param name="Z" type="float"/>
|
|
124
|
+
</accessor>
|
|
125
|
+
</technique_common>
|
|
126
|
+
</source>
|
|
127
|
+
<source id="geom-wamUpperWristYawLink-map1-texbinormals">
|
|
128
|
+
<float_array id="geom-wamUpperWristYawLink-map1-texbinormals-array" count="2067">-0.7409661 0.5231087 0.4211015 -0.5778003 0.6336729 0.5143981 -0.6202454 0.6094305 0.4938523 0.3102569 -0.9145913 0.259352 0.398836 -0.8527978 0.3371435 0.3480185 -0.8901613 0.2941021 0.582575 -0.7711424 -0.2567989 0.5906515 -0.7667631 -0.2514062 0.614421 -0.7531375 -0.2350974 0.2974693 -0.9227652 0.2449824 0.2957946 -0.9237031 0.2434711 0.2974288 -0.9227813 0.2449709 -0.2204261 0.92383 -0.3129705 -0.238142 0.9234222 -0.3009648 -0.2381053 0.9234364 -0.3009505 -0.2026036 0.9238109 -0.3248464 -0.1652619 0.9237845 -0.3454137 -0.1457278 0.9237793 -0.3541118 -0.1054351 0.9237894 -0.3680986 -0.08467991 0.9237927 -0.3734119 -0.0426164 0.9237859 -0.3805305 0.02130833 0.9237858 -0.3823162 -0.02130811 0.9237857 -0.3823165 0.08467557 0.9237927 -0.3734128 0.04261637 0.923786 -0.3805302 0.1457382 0.9237793 -0.3541077 0.1054349 0.9237894 -0.3680987 0.1652658 0.9237846 -0.3454116 0.2026148 0.9238109 -0.3248394 0.2204169 0.92383 -0.3129769 0.2381031 0.9234378 -0.3009477 -0.3004911 -0.9238886 0.2369282 -0.3032106 -0.9223662 0.2393824 -0.3149022 -0.915625 0.249935 -0.3031831 -0.9223812 0.2393594 0.2381109 0.9234221 -0.3009897 0.4297185 -0.2458667 0.868845 0.495744 -0.2874008 0.8195357 0.3718555 -0.2227392 0.9011719 0.5242205 -0.2727392 0.8067256 0.3583674 -0.1996677 0.9119789 -0.72592 -0.4813633 0.491253 -0.5681393 -0.581979 0.5818231 -0.6126711 -0.5575893 0.5601145 0.296115 0.9149934 0.2740491 0.3722136 0.8637959 0.3395787 0.3273673 0.8949702 0.3030824 0.5717416 0.7768258 -0.263919 0.5906515 0.7667631 -0.2514062 0.6122408 0.7544346 -0.2366214 0.2832071 0.923491 0.2587627 0.283632 0.9232531 0.259146 -0.2204261 -0.92383 -0.3129705 -0.238142 -0.9234222 -0.3009648 -0.2381053 -0.9234364 -0.3009505 0.2831674 0.9235065 0.2587507 -0.1652619 -0.9237846 -0.3454137 -0.2026036 -0.9238109 -0.3248464 -0.1054351 -0.9237894 -0.3680986 -0.1457278 -0.9237793 -0.3541118 -0.0426164 -0.9237859 -0.3805305 -0.08467991 -0.9237927 -0.3734119 -0.02130811 -0.9237857 -0.3823165 0.02130832 -0.9237858 -0.3823162 0.04261637 -0.923786 -0.3805302 0.08467557 -0.9237927 -0.3734128 0.1054349 -0.9237894 -0.3680987 0.1457382 -0.9237793 -0.3541077 0.1652658 -0.9237846 -0.3454116 0.2026148 -0.9238109 -0.3248394 0.2204169 -0.92383 -0.3129769 0.2381031 -0.9234378 -0.3009477 -0.3003654 0.9238904 0.2370805 -0.3030432 0.9223916 0.2394964 -0.3030695 0.9223767 0.2395207 0.2381109 -0.9234221 -0.3009897 -0.3743269 0.8965918 0.2366485 -0.3050512 0.9237983 0.2313882 -0.3306567 0.9152812 0.2300575 -0.3147775 0.9156254 0.2500906 -0.3957773 0.8897928 0.2272203 -0.3946432 0.8960813 0.2032117 0 0.6027146 -0.7979568 0 0.6027146 -0.7979568 0 0.2737335 -0.9618056 1 0 0 1 0 0 1 0 0 0 0.2737336 -0.9618056 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -0.09229606 -0.9957316 1 0 0 1 0 0 1 0 0 0 -0.09229604 -0.9957316 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -0.4457348 -0.8951651 1 0 0 1 0 0 1 0 0 0 -0.4457348 -0.895165 1 0 0 1 0 0 1 0 0 0 -0.739038 -0.6736638 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 0 -0.7390379 -0.6736638 1 0 0 -1 0 0 1 0 0 0 0.739038 0.6736638 0 0.7390379 0.6736638 0 0.9324883 0.3612001 1 0 0 -1 0 0 1 0 0 0 0.9324883 0.3612001 -1 0 0 1 0 0 1 0 0 0 1 6.75539e-8 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 4.70465e-8 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0.9324883 -0.3612002 -1 0 0 1 0 0 1 0 0 0 0.9324883 -0.3612002 -1 0 0 1 0 0 1 0 0 0 0.7390381 -0.6736637 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0.739038 -0.6736637 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 -1.29265e-7 0 1 -9.57109e-7 0 1 -4.78554e-7 0 1 3.19036e-7 0 1 2.41114e-7 0 1 9.57109e-7 0 1 -4.3127e-9 0 1 2.7337e-7 0 1 1.27235e-7 0 1 3.43525e-7 0 1 5.06301e-8 0 1 -1.51732e-8 0 1 2.7726e-7 0 1 1.38407e-7 0 1 5.29583e-8 0 1 1.75805e-8 0 1 1.37294e-7 0 1 1.88089e-7 0 1 4.42215e-7 0 1 6.48199e-8 0 1 -3.46593e-7 0 1 2.59843e-7 0 1 5.81507e-7 0 1 1.39269e-6 0 1 3.97246e-7 0 1 -4.23876e-8 0 1 -1.01265e-6 0 1 -7.91184e-7 0 1 -1.87223e-7 0 1 2.70755e-7 0 1 8.13883e-7 0 1 -5.8291e-8 0 1 4.67197e-7 0 1 -6.03079e-7 0 1 -1.02879e-7 0 1 1.06025e-7 0 1 -3.80336e-7 0 1 -5.80195e-7 0 1 -5.3354e-7 0 1 -2.95801e-7 0 1 -1.17378e-7 0 1 1.50049e-7 0 1 1.68322e-7 0 1 7.45566e-8 0 1 -1.30142e-7 0 -1 -8.47349e-9 0 -1 -1.6947e-8 0 -1 -1.12673e-8 0 -1 5.64899e-9 0 -1 5.8477e-8 0 -1 1.6947e-8 0 -1 -1.97585e-8 0 -1 -7.37736e-8 0 -1 -1.64644e-8 0 -1 -1.14825e-7 0 -1 -4.4648e-8 0 -1 4.97434e-8 0 -1 8.55228e-8 0 -1 -7.69359e-8 0 -1 -8.2374e-8 0 -1 -6.12133e-8 0 -1 -1.29813e-7 0 -1 -2.78195e-8 0 -1 1.251e-8 0 -1 -1.74729e-8 0 -1 8.65231e-8 0 -1 -2.44852e-7 0 -1 -4.35059e-7 0 -1 -1.99955e-7 0 -1 3.81139e-7 0 -1 5.51592e-7 0 -1 1.76473e-7 0 -1 -5.82627e-7 0 -1 -1.28505e-7 0 -1 1.13527e-6 0 -1 -1.59844e-8 0 -1 4.24837e-7 0 -1 3.09173e-7 0 -1 2.89211e-7 0 -1 9.38887e-8 0 -1 -1.6662e-7 0 -1 -2.40735e-7 0 -1 6.43316e-9 0 -1 -6.32134e-8 0 -1 9.87935e-9 0 -1 2.02415e-8 0 -1 2.51581e-8 0 -1 5.54381e-8 0 -1 7.71527e-8 0 -1 1.68404e-8 -1 0 9.04346e-8 -1 0 5.24783e-8 -1 0 9.62029e-8 -1 0 1.98944e-8 -1 0 1.06631e-8 -1 0 0 -1 0 1.16711e-7 -1 0 5.56268e-8 -1 0 1.7501e-7 -1 0 2.30878e-7 -1 0 4.60747e-9 -1 0 1.26742e-7 -1 0 7.19985e-7 -1 0 1.16771e-6 -1 0 1.60546e-6 -1 0 -4.33315e-9 -1 0 0 -1 0 -1.06631e-8 -1 0 3.63974e-9 -1 0 1.20323e-8 -1 0 -5.24621e-10 -1 0 -1.93905e-8 -1 0 -2.60516e-8 -1 0 -2.48871e-8 -1 0 -2.69983e-8 -1 0 -3.21829e-8 -1 0 -2.00455e-8 -1 0 1.18132e-8 -1 0 3.35627e-8 -1 0 5.65638e-8 0 -7.71745e-8 -1 0 -2.7315e-8 -1 0 -8.39419e-8 -1 0 -1.03052e-8 -1 0 -1.5213e-7 -1 0 1.64254e-8 -1 0 1.52445e-7 -1 0 1.15594e-7 -1 0 -1.63201e-7 -1 0 -4.48274e-8 -1 0 -1.91626e-10 -1 0 5.8475e-8 -1 0 -7.34823e-8 -1 0 7.31333e-8 -1 0 6.52969e-8 -1 0 2.11079e-7 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.004090741 0.9999667 0.007064542 0 1 0 0 1 0 -0.002138391 0.9999816 0.005683505 -0.001704729 0.9999915 0.003742146 1.03251e-4 0.9999999 -5.18982e-4 1.34629e-4 0.9999999 -3.9827e-4 1.02458e-4 0.9999928 -0.00380604 3.40635e-4 0.9999969 -0.002448174 -9.26165e-4 0.9999787 -0.006453735 -1.69135e-4 0.999985 -0.005480621 8.61971e-4 0.9999963 0.00256703 -5.28338e-5 1 -2.75682e-4 0.004090741 0.9999667 0.007064542 6.2337e-4 0.9999988 0.001391404 0.001378262 0.9999911 0.003979006 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 -0.002576151 -0.9999887 0.003997462 0.001253497 -0.9999949 -0.002947979 9.03279e-4 -0.9999976 -0.001990034 0.002927705 -0.9999146 -0.01273385 0.002448159 -0.9999657 -0.007911861 2.02946e-6 -1 8.55496e-7 -0.003315289 -0.9999572 0.008633531 0.001916583 -0.9999113 -0.01318275 1.63902e-4 -0.9999983 -0.001840217 7.10813e-5 -0.9999757 -0.006975449 -1.90966e-4 -0.999997 -0.002436468 -0.002581548 -0.9999334 -0.01125154 -0.001633291 -0.999925 -0.01213523 7.16885e-4 -0.9999983 0.001699291 -0.002793808 -0.9999493 -0.009678284 -0.00161113 -0.9999905 -0.004048737 -2.84899e-4 -0.9999998 -5.71431e-4 0.002576151 -0.9999887 0.003997462 0 -1 0 -3.10893e-7 1 1.25526e-7 1.19889e-7 1 5.05446e-8 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -3.99841e-6 -1 1.61555e-6 -2.77844e-5 -0.5001915 0.8659148 -2.33064e-5 -0.4999661 0.8660449 -2.7795e-5 -0.500194 0.8659134 4.37719e-5 0.4997906 0.8661463 7.30102e-5 0.5010353 0.8654268 7.26516e-5 0.5004436 0.8657691 -1.85716e-5 -0.5000138 0.8660175 1.48579e-5 0.4999756 0.8660395 -9.31178e-6 -0.4997517 0.8661687 -1.08556e-5 0.5000747 0.8659823 -4.52462e-6 -0.5000007 0.866025 -7.26436e-6 0.4994035 0.8663695 -2.5354e-6 0.4996613 0.8662208 0 -0.4999481 0.8660554 0 -0.5556165 0.8314387 -1.20117e-6 0.4998611 0.8661056 0 -0.5556165 0.8314387 0 0.4999235 0.8660696 0 0.5556165 0.8314387 0 -0.707128 0.7070856 0 0.5556165 0.8314387 0 -0.7071279 0.7070856 0 0.7071279 -0.7070856 0 0.707128 -0.7070856 0 0.8660392 -0.499976 0 0.707128 0.7070856 0 0.8660392 -0.499976 0 0.7071279 0.7070856 0 0.9659252 -0.2588213 0 -0.8660392 -0.499976 0 -0.707128 -0.7070856 0 -0.7071279 -0.7070856 0 0.9659252 -0.2588213 0 -0.8660392 -0.499976 0 0.9927472 -0.1202208 0 -0.9659252 -0.2588213 0 0.9927472 -0.1202208 0 -0.9659252 -0.2588213 -2.00979e-4 0.969619 -0.2446199 0 -0.9927472 -0.1202208 5.04097e-4 0.9724199 -0.2332367 0 -0.9927472 -0.1202208 4.628e-4 -0.9724201 -0.2332357 -0.002595886 0.9439247 -0.3301506 -0.001179115 -0.9732989 -0.2295383 0.004266421 0.9431287 -0.3324005 -0.01412598 0.9166752 -0.3993833 0.01722809 0.9127942 -0.4080562 -0.03051918 0.894568 -0.4458885 -0.002526457 -0.9438725 -0.3303005 0.005717403 0.8769354 -0.4805743 -0.01030681 0.9103089 -0.4138012 -8.42693e-4 0.784577 -0.6200309 -0.03067076 0.7993226 -0.6001189 0.02966493 -0.7838683 0.620218 0.02630896 -0.6812091 0.731616 0.03024998 -0.7993278 0.6001333 0.003165222 -0.6815839 0.7317331 0.003281371 -0.651529 0.7586166 0.002599675 -0.7993575 0.60085 0.02145876 -0.5754918 0.817526 0.02450108 -0.6511007 0.7585958 0.01345373 -0.5502259 0.8349075 4.83374e-4 0.8592291 -0.5115907 0.0169458 0.9196778 -0.392308 -0.008944521 0.7935436 -0.6084477 -0.004320244 0.8005882 -0.5991994 -0.02036933 0.709724 -0.7041853 -0.03029516 0.6460167 -0.7627218 0.02818954 -0.6460296 0.7627917 0.02945142 -0.5897292 0.8070639 0.02678826 -0.7096713 0.7040235 0.03719163 -0.5628904 0.8256944 0.8440996 0.3602372 0.3971462 0.8339837 0.3491455 0.4272805 0.8457224 0.332196 0.4176117 -7.84201e-4 -0.7979568 -0.6027141 -0.009886169 -0.6484938 -0.7611558 -0.01453693 -0.6888572 -0.7247513 0.8550716 0.3630208 0.3702276 0.007029508 -0.9086087 -0.4175893 -0.005605842 -0.7935387 -0.608494 -0.005969081 -0.8841539 -0.4671577 -0.01544046 -0.9152267 -0.4026433 0.004448007 -0.9423201 -0.3346836 0.01729722 -0.9126484 -0.4083793 0.004517911 -0.8795921 -0.4757071 -0.005409221 -0.9078585 -0.4192418 -0.006693079 -0.7650682 -0.6439145 -0.06618637 -0.8098787 -0.5828516 0.03920624 -0.8087911 -0.5867877 -0.008887724 0.683112 0.7302595 -0.00926039 0.6488251 0.7608812 -0.007150386 0.8091891 0.5875047 -0.8353307 0.4378087 0.3324849 -0.8395611 0.3820649 0.386217 -0.8375848 0.4125481 0.3581281 -0.8445547 0.3338221 0.4186767 -0.8463141 0.3399437 0.4101107 -0.842871 0.3619157 0.398228 0.9737258 0 -0.2277236 0.9737281 0 -0.2277139 0.9737266 0 -0.2277204 0.9737251 0 -0.2277265 0.9737262 0 -0.2277221 0.9737265 0 -0.2277207 0.9737256 0 -0.2277245 0.9737259 0 -0.2277234 0.9737266 0 -0.2277204 0.9737268 0 -0.2277192 0.9737257 0 -0.2277243 0.9737261 0 -0.2277224 0.9737264 0 -0.2277212 0.9737264 0 -0.2277209 0.973726 0 -0.2277226 0.9737267 0 -0.2277199 0.9737262 0 -0.2277221 0.9737254 0 -0.2277255 0.9737263 0 -0.2277214 0.9737266 0 -0.2277204 0.9737266 0 -0.2277204 0.9737262 0 -0.2277219 0.9737259 0 -0.2277233 0.9737264 0 -0.227721 0.9737268 0 -0.2277193 0.9737263 0 -0.2277215 0.9737258 0 -0.2277238 0.973726 0 -0.2277227 0.9737262 0 -0.2277218 0.9737264 0 -0.2277209 0.9737262 0 -0.2277221 0.9737257 0 -0.2277242 0.9737255 0 -0.2277248 0.9737264 0 -0.2277211 0.9737277 0 -0.2277154 0.9737254 0 -0.2277254 0.9737234 0 -0.227734 0.9737185 0 -0.227755 -3.42536e-4 0.9999958 0.002861951 5.02119e-5 0.9999996 8.73019e-4 -1.79808e-5 0.9999999 3.20713e-4 5.54062e-4 0.999997 -0.002369015 -6.34477e-4 0.9999976 0.00210834 9.44811e-4 0.999997 -0.0022569 -0.002014281 0.9999899 0.004009365 0.002328385 0.9999907 -0.003626663 -0.005628 0.9999566 0.007427911 0.002651302 0.9999916 -0.00313222 -0.00126661 0.9999982 0.0014036 -0.308472 -0.8999004 -0.3082601 -0.3238262 -0.8984544 -0.2965068 -0.2459689 -0.8924041 -0.3783043 -0.3176412 -0.8894701 -0.3285528 -0.2164542 -0.8790983 -0.4246573 2.22365e-4 0.9999981 0.00193087 -3.7988e-4 0.9999984 -0.00172946 -7.21273e-4 0.9999963 -0.0026279 9.71377e-4 0.9999962 0.002567743 -0.001271458 0.9999953 -0.002789214 0.003992801 0.9999656 0.007265438 -0.004780598 0.9999638 -0.00703884 2.50492e-4 0.9999999 3.56957e-4 -0.001431407 0.9999973 -0.001836549 -0.001027914 0.9999986 -0.001299082 -0.3485707 0.8911222 0.2905162 -0.3105237 0.8792777 0.3611728 -0.3367128 0.8872031 0.3154284 -0.2610783 0.8722176 0.4136115 -0.2233254 0.8612521 0.4564763 -0.2491399 0.8897987 -0.3823447 -0.2164528 0.8790996 -0.4246552 -0.3174949 0.8894585 -0.3287258 -0.6213541 0.781746 0.05284156 -0.7071021 0.7065766 -0.02749778 -0.5106409 0.7990098 -0.3175361 -0.3345375 0.8018751 -0.4950565 0.5181641 -0.7918033 0.3233475 0.4172041 -0.8006522 0.4299963 0.3390287 -0.7963154 0.5009404 0.02659695 -0.9988209 -0.04061411 0.003110826 -0.9999841 -0.004695835 -0.01587243 -0.9996316 0.02201726 -0.002782729 -0.9999862 0.004454719 -6.6408e-4 -0.9999989 0.001362948 9.4352e-4 -0.999997 -0.002257473 -6.22783e-4 -0.9999977 0.00206265 6.08735e-4 -0.9999965 -0.002589922 -3.98244e-4 -0.9999945 0.003287077 -1.37549e-5 -1 2.30937e-4 7.31996e-5 -0.9999992 0.001275914 2.23408e-4 -0.9999981 0.001930783 -4.18307e-4 -0.9999982 -0.001835541 -3.1508e-4 -0.9999993 -0.001111523 2.53509e-4 -0.9999998 6.1664e-4 8.70448e-4 -0.999998 0.001810207 5.61484e-4 -0.9999995 8.82663e-4 0.004252926 -0.9999733 0.005942289 -0.001159292 -0.9999983 -0.001428242 0.005704334 -0.9999577 0.00720916 0.06350896 0.9964173 -0.05585011 0.0669255 0.9959654 -0.05978209 0.05611273 0.9964244 -0.06316435 0.03376604 0.9955257 -0.08825261 0.006818264 0.9939758 -0.1093875 -0.9866171 -0.1628773 -0.007588773 -0.9917035 -0.1285202 -0.002595181 -0.9773153 -0.2117882 -7.07123e-4 -0.9945634 -0.1040477 0.004199111 -0.9981378 -0.0609959 5.84729e-4 -0.9769935 0.213268 -7.3417e-4 -0.9945659 0.1040247 0.004194166 -0.9866093 0.1629243 -0.007598162 -0.9917063 0.1284985 -0.002605467 -0.9981373 0.06100546 5.78951e-4 -0.9278459 -0.3700874 -0.04623058 -0.9403549 -0.3362097 -0.05192018 -0.9301603 -0.3644902 0.04414529 -0.9336457 -0.3539772 0.05482515 -0.9407094 -0.3337291 0.06075116 -0.9424355 -0.3282952 -0.06354206 -0.9408162 -0.3328219 -0.06398836 -0.9408088 -0.332191 0.06729014 -0.9424355 0.3282949 -0.06354345 -0.9408162 0.3328219 -0.06398831 -0.9278459 0.3700873 -0.04623096 -0.9403549 0.3362088 -0.05192574 -0.9301603 0.3644901 0.04414565 -0.9408088 0.3321914 0.06728822 -0.9407094 0.3337285 0.06075385 -0.9336458 0.3539763 0.05483058 -0.9524629 -0.2948543 -0.07665139 -0.9524637 -0.2961384 -0.0715188 -0.96514 -0.2499933 -0.0775125 -0.9651387 -0.2510938 -0.07388682 -0.9773705 -0.1995638 -0.07015136 -0.9773702 -0.2003548 -0.06786385 -0.9878397 -0.1451794 -0.0556395 -0.9878406 -0.1456271 -0.05443959 -0.9954724 -0.08812685 -0.03561349 -0.9954715 -0.08830961 -0.03518311 -0.999489 -0.02953603 -0.01221965 -0.9994891 -0.02955261 -0.01217055 -0.9994888 0.02956212 0.0121781 -0.9994888 0.02954191 0.01222724 -0.9954746 0.08828002 0.03517169 -0.9954745 0.08810584 0.03560759 -0.9878352 0.1456599 0.05445084 -0.9878351 0.1452071 0.05564778 -0.9773757 0.2003298 0.06785831 -0.9773755 0.1995407 0.07014731 -0.9651363 0.2511039 0.07388385 -0.9651451 0.2499749 0.07750836 -0.9524564 0.2961618 0.07151923 -0.9524525 0.2948883 0.07664977 -0.9524525 -0.2948877 0.07665207 -0.9524564 -0.2961611 0.07152168 -0.9651451 -0.2499749 0.07750841 -0.9651363 -0.2511035 0.07388528 -0.9773755 -0.1995408 0.070147 -0.9773757 -0.2003299 0.06785792 -0.9878351 -0.1452072 0.05564765 -0.9878352 -0.1456599 0.05445105 -0.9954745 -0.0881065 0.03560594 -0.9954746 -0.08828025 0.03517109 -0.9524637 0.2961386 -0.07151783 -0.9651386 0.2510946 -0.0738842 -0.9524629 0.2948551 -0.07664851 -0.96514 0.2499937 -0.07751101 -0.9773702 0.2003548 -0.06786385 -0.9773705 0.1995634 -0.07015274 -0.9878406 0.1456271 -0.05443953 -0.9878397 0.1451792 -0.0556398 -0.9954715 0.08830944 -0.03518353 -0.9954724 0.0881263 -0.03561486 -0.9994891 0.02955136 -0.01217359 -0.999489 0.02953417 -0.01222417 -0.9994888 -0.02954375 0.0122228 -0.9994888 -0.02956344 0.01217491</float_array>
|
|
129
|
+
<technique_common>
|
|
130
|
+
<accessor source="#geom-wamUpperWristYawLink-map1-texbinormals-array" count="689" stride="3">
|
|
131
|
+
<param name="X" type="float"/>
|
|
132
|
+
<param name="Y" type="float"/>
|
|
133
|
+
<param name="Z" type="float"/>
|
|
134
|
+
</accessor>
|
|
135
|
+
</technique_common>
|
|
136
|
+
</source>
|
|
137
|
+
<vertices id="geom-wamUpperWristYawLink-vertices">
|
|
138
|
+
<input semantic="POSITION" source="#geom-wamUpperWristYawLink-positions"/>
|
|
139
|
+
</vertices>
|
|
140
|
+
<triangles material="wristyawM_1" count="591">
|
|
141
|
+
<input semantic="VERTEX" source="#geom-wamUpperWristYawLink-vertices" offset="0"/>
|
|
142
|
+
<input semantic="NORMAL" source="#geom-wamUpperWristYawLink-normals" offset="1"/>
|
|
143
|
+
<input semantic="TEXCOORD" source="#geom-wamUpperWristYawLink-map1" offset="2" set="1"/>
|
|
144
|
+
<input semantic="TEXTANGENT" source="#geom-wamUpperWristYawLink-map1-textangents" offset="3" set="1"/>
|
|
145
|
+
<input semantic="TEXBINORMAL" source="#geom-wamUpperWristYawLink-map1-texbinormals" offset="3" set="1"/>
|
|
146
|
+
<p>0 0 1 0 1 1 574 1 2 2 575 2 3 3 3 3 0 0 0 4 2 2 2 5 2 2 601 6 4 4 603 7 3 3 602 8 5 5 54 9 3 3 3 3 4 4 4 10 4 4 4 10 6 6 56 11 5 5 54 9 7 7 12 12 5 5 10 13 6 6 11 14 6 6 11 14 8 8 13 15 7 7 12 12 9 9 14 16 7 7 12 12 8 8 13 15 8 8 13 15 10 10 15 17 9 9 14 16 11 11 16 18 9 9 14 16 10 10 15 17 10 10 15 17 12 12 17 19 11 11 16 18 13 13 18 20 11 11 16 18 12 12 17 19 14 14 19 21 13 13 18 20 15 15 20 22 12 12 17 19 15 15 20 22 13 13 18 20 16 16 21 23 14 14 19 21 17 17 22 24 14 14 19 21 15 15 20 22 17 17 22 24 18 18 23 25 16 16 21 23 19 19 25 26 16 16 21 23 17 17 22 24 19 19 25 26 18 18 23 25 19 19 25 26 20 20 60 27 21 21 61 28 18 18 23 25 20 20 60 27 20 20 60 27 22 22 63 29 21 21 61 28 23 23 64 30 21 21 61 28 22 22 63 29 24 24 187 31 25 25 188 32 26 26 189 33 24 24 187 31 23 23 186 34 25 25 188 32 23 23 64 30 22 22 63 29 25 25 67 35 27 27 192 36 26 26 191 37 28 28 580 38 27 27 192 36 24 24 190 39 26 26 191 37 28 28 580 38 29 29 581 40 27 27 192 36 30 30 194 41 31 31 576 42 32 32 577 43 33 33 196 44 30 30 193 45 32 32 195 46 32 32 604 47 34 34 606 48 33 33 605 49 35 35 198 50 33 33 196 44 34 34 197 51 36 36 120 52 35 35 119 53 37 37 121 54 34 34 197 51 37 37 200 55 35 35 198 50 38 38 123 56 36 36 120 52 39 39 124 57 37 37 121 54 39 39 124 57 36 36 120 52 40 40 125 58 38 38 123 56 41 41 127 59 39 39 124 57 41 41 127 59 38 38 123 56 42 42 319 60 40 40 125 58 43 43 320 61 41 41 127 59 43 43 320 61 40 40 125 58 43 43 320 61 44 44 321 62 42 42 319 60 45 45 322 63 42 42 319 60 44 44 321 62 44 44 321 62 46 46 323 64 45 45 322 63 47 47 324 65 45 45 322 63 46 46 323 64 46 46 323 64 48 48 325 66 47 47 324 65 49 49 326 67 47 47 324 65 48 48 325 66 48 48 325 66 50 50 327 68 49 49 326 67 51 51 328 69 49 49 326 67 50 50 327 68 50 50 327 68 52 52 329 70 51 51 328 69 53 53 330 71 51 51 328 69 52 52 329 70 54 54 172 72 53 53 171 73 55 55 265 74 52 52 329 70 55 55 332 75 53 53 330 71 56 56 268 76 54 54 266 77 57 57 269 78 54 54 172 72 55 55 265 74 57 57 267 79 57 57 269 78 58 58 578 80 56 56 268 76 58 58 578 80 59 59 579 81 56 56 268 76 60 60 383 82 61 61 385 83 62 62 417 84 63 63 341 85 64 64 342 86 65 65 343 87 66 66 428 88 62 62 417 84 61 61 385 83 61 61 98 89 60 60 97 90 67 67 99 91 64 64 342 86 63 63 341 85 68 68 384 92 69 69 386 93 65 65 343 87 64 64 342 86 66 66 428 88 70 70 447 94 62 62 417 84 71 71 100 95 67 67 99 91 60 60 97 90 72 72 391 96 68 68 384 92 63 63 341 85 65 65 343 87 69 69 386 93 73 73 393 97 74 74 451 98 70 70 447 94 66 66 428 88 67 67 99 91 71 71 100 95 75 75 101 99 68 68 179 100 72 72 180 101 76 76 181 102 77 77 401 103 73 73 393 97 69 69 386 93 70 70 447 94 74 74 451 98 78 78 455 104 79 79 102 105 75 75 101 99 71 71 100 95 80 80 182 106 76 76 181 102 72 72 180 101 81 81 408 107 73 73 393 97 77 77 401 103 82 82 459 108 78 78 455 104 74 74 451 98 83 83 103 109 75 75 101 99 79 79 102 105 76 76 181 102 80 80 182 106 84 84 183 110 85 85 413 111 81 81 408 107 77 77 401 103 78 78 455 104 82 82 459 108 86 86 463 112 87 87 104 113 83 83 103 109 79 79 102 105 88 88 184 114 84 84 183 110 80 80 182 106 81 81 458 115 85 85 462 116 89 89 466 117 83 83 103 109 87 87 104 113 90 90 105 118 91 91 468 119 86 86 463 112 82 82 459 108 88 88 184 114 92 92 185 120 84 84 183 110 93 93 470 121 89 89 466 117 85 85 462 116 94 94 106 122 90 90 105 118 87 87 104 113 86 86 437 123 91 91 442 124 95 95 515 125 96 96 199 126 92 92 185 120 88 88 184 114 89 89 466 117 93 93 470 121 97 97 474 127 90 90 105 118 94 94 106 122 98 98 107 128 99 99 519 129 95 95 515 125 91 91 442 124 100 100 477 130 97 97 474 127 93 93 470 121 92 92 185 120 96 96 199 126 101 101 201 131 94 94 106 122 102 102 108 132 98 98 107 128 95 95 515 125 99 99 519 129 103 103 523 133 97 97 474 127 100 100 477 130 104 104 481 134 105 105 202 135 101 101 201 131 96 96 199 126 98 98 87 136 102 102 88 137 106 106 89 138 99 99 519 129 107 107 527 139 103 103 523 133 100 100 477 130 108 108 539 140 104 104 481 134 101 101 109 141 105 105 110 142 109 109 111 143 110 110 90 144 106 106 89 138 102 102 88 137 103 103 523 133 107 107 527 139 111 111 531 145 104 104 481 134 108 108 539 140 112 112 543 146 113 113 113 147 109 109 111 143 105 105 110 142 106 106 89 138 110 110 90 144 114 114 91 148 115 115 535 149 111 111 531 145 107 107 527 139 116 116 547 150 112 112 543 146 108 108 539 140 109 109 111 143 113 113 113 147 117 117 115 151 118 118 92 152 114 114 91 148 110 110 90 144 111 111 531 145 115 115 535 149 119 119 572 153 112 112 112 154 116 116 114 155 120 120 116 156 113 113 113 147 121 121 117 157 117 117 115 151 114 114 91 148 118 118 92 152 122 122 94 158 123 123 573 159 119 119 572 153 115 115 535 149 124 124 118 160 120 120 116 156 116 116 114 155 117 117 115 151 121 121 117 157 125 125 122 161 126 126 96 162 122 122 94 158 118 118 92 152 119 119 93 163 123 123 95 164 126 126 96 162 120 120 116 156 124 124 118 160 127 127 126 165 127 127 126 165 125 125 122 161 121 121 117 157 122 122 94 158 126 126 96 162 123 123 95 164 125 125 122 161 127 127 126 165 124 124 118 160 128 128 644 166 129 129 645 167 130 130 646 168 130 130 646 168 131 131 647 169 128 128 644 166 132 132 648 170 128 128 644 166 131 131 647 169 131 131 647 169 133 133 649 171 132 132 648 170 132 132 648 170 134 134 650 172 128 128 644 166 135 135 651 173 136 136 652 174 137 137 653 175 138 138 654 176 139 139 655 177 136 136 652 174 136 136 652 174 135 135 651 173 138 138 654 176 134 134 650 172 132 132 648 170 139 139 655 177 139 139 655 177 138 138 654 176 134 134 650 172 137 137 653 175 140 140 656 178 135 135 651 173 140 140 656 178 137 137 653 175 141 141 657 179 142 142 658 180 141 141 657 179 143 143 659 181 141 141 657 179 142 142 658 180 140 140 656 178 143 143 659 181 144 144 660 182 142 142 658 180 144 144 660 182 143 143 659 181 145 145 661 183 145 145 661 183 146 146 662 184 144 144 660 182 147 147 663 185 144 144 660 182 146 146 662 184 146 146 662 184 148 148 664 186 147 147 663 185 149 149 665 187 147 147 663 185 148 148 664 186 148 148 664 186 150 150 666 188 149 149 665 187 149 149 665 187 150 150 666 188 151 151 667 189 152 152 668 190 149 149 665 187 153 153 669 191 149 149 665 187 151 151 667 189 153 153 669 191 154 154 670 192 152 152 668 190 155 155 671 193 152 152 668 190 153 153 669 191 155 155 671 193 156 156 672 194 154 154 670 192 155 155 671 193 157 157 673 195 158 158 674 196 156 156 672 194 156 156 672 194 155 155 671 193 157 157 673 195 159 159 675 197 156 156 672 194 160 160 676 198 156 156 672 194 158 158 674 196 160 160 676 198 159 159 675 197 160 160 676 198 161 161 677 199 162 162 678 200 163 163 679 201 159 159 675 197 161 161 677 199 162 162 678 200 159 159 675 197 159 159 675 197 163 163 679 201 164 164 680 202 164 164 680 202 165 165 681 203 159 159 675 197 165 165 681 203 164 164 680 202 166 166 682 204 166 166 682 204 167 167 683 205 165 165 681 203 166 166 682 204 168 168 684 206 167 167 683 205 168 168 684 206 169 169 685 207 167 167 683 205 168 168 684 206 170 170 686 208 169 169 685 207 170 170 686 208 171 171 687 209 169 169 685 207 170 170 686 208 128 128 644 166 171 171 687 209 128 128 644 166 172 172 688 210 171 171 687 209 128 128 644 166 134 134 650 172 172 172 688 210 173 173 5 211 174 174 6 212 175 175 7 213 175 175 7 213 176 176 8 214 173 173 5 211 175 175 7 213 177 177 9 215 176 176 8 214 177 177 9 215 178 178 24 216 176 176 8 214 179 179 26 217 180 180 27 218 181 181 28 219 179 179 26 217 182 182 29 220 180 180 27 218 181 181 28 219 183 183 30 221 179 179 26 217 182 182 29 220 177 177 9 215 184 184 31 222 184 184 31 222 180 180 27 218 182 182 29 220 177 177 9 215 185 185 32 223 184 184 31 222 185 185 32 223 177 177 9 215 175 175 7 213 183 183 30 221 181 181 28 219 186 186 33 224 187 187 34 225 183 183 30 221 186 186 33 224 186 186 33 224 188 188 35 226 187 187 34 225 188 188 35 226 189 189 36 227 187 187 34 225 190 190 37 228 189 189 36 227 188 188 35 226 188 188 35 226 191 191 38 229 192 192 39 230 191 191 38 229 193 193 40 231 192 192 39 230 188 188 35 226 192 192 39 230 190 190 37 228 191 191 38 229 194 194 41 232 193 193 40 231 194 194 41 232 195 195 42 233 193 193 40 231 196 196 43 234 194 194 41 232 197 197 44 235 197 197 44 235 198 198 45 236 196 196 43 234 196 196 43 234 195 195 42 233 194 194 41 232 198 198 45 236 197 197 44 235 199 199 46 237 199 199 46 237 200 200 47 238 198 198 45 236 201 201 48 239 202 202 49 240 203 203 50 241 203 203 50 241 202 202 49 240 204 204 51 242 203 203 50 241 204 204 51 242 200 200 47 238 200 200 47 238 199 199 46 237 203 203 50 241 205 205 52 243 201 201 48 239 206 206 53 244 203 203 50 241 206 206 53 244 201 201 48 239 207 207 55 245 208 208 57 246 209 209 58 247 205 205 52 243 206 206 53 244 207 207 55 245 209 209 58 247 205 205 52 243 207 207 55 245 207 207 55 245 210 210 59 248 211 211 62 249 210 210 59 248 212 212 65 250 211 211 62 249 207 207 55 245 211 211 62 249 208 208 57 246 210 210 59 248 213 213 66 251 212 212 65 250 213 213 66 251 214 214 68 252 212 212 65 250 213 213 66 251 215 215 69 253 214 214 68 252 215 215 69 253 216 216 70 254 214 214 68 252 215 215 69 253 217 217 71 255 216 216 70 254 217 217 71 255 175 175 7 213 216 216 70 254 217 217 71 255 185 185 32 223 175 175 7 213 218 218 72 256 219 219 73 257 220 220 74 258 219 219 73 257 221 221 75 259 220 220 74 258 219 219 73 257 222 222 76 260 221 221 75 259 222 222 76 260 223 223 77 261 221 221 75 259 224 224 78 262 218 218 72 256 225 225 79 263 218 218 72 256 220 220 74 258 225 225 79 263 226 226 80 264 224 224 78 262 227 227 81 265 224 224 78 262 225 225 79 263 227 227 81 265 226 226 80 264 227 227 81 265 228 228 82 266 229 229 83 267 226 226 80 264 228 228 82 266 229 229 83 267 228 228 82 266 230 230 84 268 231 231 85 269 229 229 83 267 230 230 84 268 230 230 84 268 232 232 86 270 231 231 85 269 233 233 162 271 234 234 163 272 235 235 164 273 233 233 162 271 235 235 164 273 236 236 165 274 237 237 166 275 233 233 162 271 236 236 165 274 237 237 166 275 236 236 165 274 238 238 167 276 239 239 168 277 237 237 166 275 238 238 167 276 239 239 168 277 238 238 167 276 240 240 169 278 241 241 170 279 239 239 168 277 240 240 169 278 241 241 170 279 240 240 169 278 242 242 173 280 243 243 174 281 241 241 170 279 242 242 173 280 243 243 174 281 242 242 173 280 244 244 175 282 245 245 176 283 243 243 174 281 244 244 175 282 246 246 177 284 247 247 178 285 245 245 176 283 244 244 175 282 246 246 177 284 245 245 176 283 248 248 145 286 249 249 146 287 250 250 147 288 248 248 145 286 251 251 148 289 249 249 146 287 251 251 148 289 248 248 145 286 252 252 149 290 253 253 150 291 251 251 148 289 252 252 149 290 253 253 150 291 252 252 149 290 254 254 151 292 255 255 152 293 253 253 150 291 254 254 151 292 256 256 153 294 255 255 152 293 257 257 154 295 255 255 152 293 254 254 151 292 257 257 154 295 256 256 153 294 257 257 154 295 258 258 155 296 259 259 156 297 256 256 153 294 258 258 155 296 259 259 156 297 258 258 155 296 260 260 157 298 261 261 158 299 259 259 156 297 260 260 157 298 261 261 158 299 260 260 157 298 262 262 159 300 263 263 160 301 261 261 158 299 262 262 159 300 263 263 160 301 262 262 159 300 264 264 161 302 265 265 128 303 266 266 129 304 267 267 130 305 268 268 131 306 269 269 132 307 270 270 133 308 266 266 129 304 269 269 132 307 271 271 134 309 269 269 132 307 268 268 131 306 271 271 134 309 266 266 129 304 271 271 134 309 267 267 130 305 265 265 128 303 267 267 130 305 272 272 135 310 273 273 136 311 265 265 128 303 272 272 135 310 273 273 136 311 272 272 135 310 274 274 137 312 275 275 138 313 273 273 136 311 274 274 137 312 275 275 138 313 274 274 137 312 276 276 139 314 277 277 140 315 275 275 138 313 276 276 139 314 277 277 140 315 276 276 139 314 278 278 141 316 279 279 142 317 277 277 140 315 278 278 141 316 279 279 142 317 278 278 141 316 280 280 143 318 279 279 142 317 280 280 143 318 281 281 144 319 282 282 340 320 283 283 344 321 284 284 345 322 285 285 346 323 286 286 347 324 282 282 340 320 287 287 348 325 288 288 349 326 285 285 346 323 289 289 350 327 290 290 351 328 287 287 348 325 291 291 352 329 292 292 353 330 289 289 350 327 293 293 354 331 294 294 355 332 291 291 352 329 290 290 351 328 289 289 350 327 292 292 353 330 285 285 346 323 288 288 349 326 286 286 347 324 287 287 348 325 290 290 351 328 288 288 349 326 294 294 355 332 292 292 353 330 291 291 352 329 295 295 356 333 296 296 357 334 293 293 354 331 296 296 357 334 297 297 358 335 293 293 354 331 294 294 355 332 293 293 354 331 297 297 358 335 298 298 359 336 299 299 360 337 295 295 356 333 300 300 361 338 301 301 362 339 298 298 359 336 299 299 360 337 298 298 359 336 301 301 362 339 302 302 363 340 295 295 356 333 299 299 360 337 296 296 357 334 295 295 356 333 302 302 363 340 303 303 246 341 304 304 247 342 300 300 244 343 301 301 245 344 300 300 244 343 304 304 247 342 305 305 248 345 306 306 249 346 303 303 246 341 307 307 250 347 308 308 251 348 305 305 248 345 306 306 249 346 305 305 248 345 308 308 251 348 304 304 247 342 303 303 246 341 306 306 249 346 309 309 252 349 310 310 253 350 307 307 250 347 308 308 251 348 307 307 250 347 310 310 253 350 311 311 254 351 312 312 255 352 309 309 252 349 313 313 256 353 314 314 257 354 311 311 254 351 315 315 258 355 316 316 259 356 317 317 260 357 318 318 261 358 317 317 260 357 316 316 259 356 319 319 262 359 320 320 263 360 318 318 261 358 320 320 370 361 319 319 369 362 321 321 371 363 317 317 260 357 318 318 261 358 320 320 263 360 322 322 372 364 321 321 371 363 319 319 369 362 310 310 253 350 309 309 252 349 312 312 255 352 316 316 259 356 315 315 258 355 313 313 256 353 312 312 255 352 311 311 254 351 314 314 257 354 323 323 373 365 324 324 374 366 322 322 372 364 325 325 375 367 326 326 376 368 323 323 373 365 323 323 373 365 326 326 376 368 324 324 374 366 321 321 371 363 322 322 372 364 324 324 374 366 327 327 377 369 324 324 374 366 328 328 378 370 324 324 374 366 326 326 376 368 328 328 378 370 325 325 375 367 329 329 379 371 326 326 376 368 330 330 380 372 329 329 379 371 325 325 375 367 330 330 380 372 331 331 381 373 329 329 379 371 332 332 382 374 331 331 381 373 330 330 380 372 333 333 387 375 334 334 388 376 332 332 382 374 332 332 382 374 334 334 388 376 331 331 381 373 335 335 389 377 336 336 390 378 333 333 387 375 333 333 387 375 336 336 390 378 334 334 388 376 335 335 389 377 337 337 392 379 336 336 390 378 338 338 394 380 337 337 392 379 335 335 389 377 338 338 394 380 339 339 395 381 340 340 396 382 339 339 395 381 338 338 394 380 335 335 389 377 341 341 364 383 297 297 358 335 296 296 357 334 342 342 365 384 286 286 347 324 288 288 349 326 343 343 366 385 282 282 340 320 286 286 347 324 283 283 344 321 282 282 340 320 343 343 366 385 284 284 345 322 344 344 367 386 345 345 368 387 344 344 367 386 284 284 345 322 283 283 344 321 345 345 270 388 346 346 271 389 347 347 272 390 346 346 271 389 345 345 270 388 344 344 264 391 348 348 273 392 347 347 272 390 346 346 271 389 349 349 274 393 350 350 275 394 351 351 276 395 347 347 272 390 348 348 273 392 349 349 274 393 350 350 275 394 349 349 274 393 348 348 273 392 351 351 276 395 352 352 277 396 353 353 278 397 352 352 277 396 351 351 276 395 350 350 275 394 354 354 279 398 355 355 280 399 356 356 281 400 357 357 282 401 358 358 283 402 354 354 279 398 359 359 284 403 360 360 285 404 361 361 286 405 358 358 283 402 357 357 282 401 359 359 284 403 360 360 285 404 359 359 284 403 357 357 282 401 340 340 396 382 361 361 398 406 360 360 397 407 361 361 398 406 340 340 396 382 339 339 395 381 314 314 257 354 313 313 256 353 315 315 258 355 362 362 287 408 353 353 278 397 352 352 277 396 353 353 278 397 362 362 287 408 363 363 288 409 363 363 288 409 356 356 281 400 355 355 280 399 356 356 281 400 363 363 288 409 362 362 287 408 355 355 280 399 354 354 279 398 358 358 283 402 364 364 399 410 337 337 392 379 338 338 394 380 365 365 607 411 366 366 608 412 367 367 609 413 368 368 582 414 369 369 583 415 370 370 584 416 371 371 610 417 366 366 608 412 365 365 607 411 369 369 583 415 368 368 582 414 372 372 585 418 366 366 608 412 371 371 610 417 373 373 611 419 374 374 586 420 372 372 585 418 368 368 582 414 375 375 612 421 373 373 611 419 371 371 610 417 372 372 585 418 374 374 586 420 376 376 587 422 377 377 588 423 376 376 587 422 374 374 586 420 378 378 613 424 373 373 611 419 375 375 612 421 379 379 614 425 378 378 613 424 375 375 612 421 380 380 589 426 376 376 587 422 377 377 588 423 381 381 615 427 378 378 613 424 379 379 614 425 382 382 590 428 380 380 589 426 377 377 588 423 380 380 589 426 382 382 590 428 383 383 591 429 381 381 615 427 379 379 614 425 384 384 616 430 383 383 591 429 382 382 590 428 385 385 592 431 386 386 617 432 381 381 615 427 384 384 616 430 386 386 505 433 384 384 504 434 387 387 506 435 388 388 593 436 383 383 591 429 385 385 592 431 389 389 507 437 386 386 505 433 387 387 506 435 388 388 593 436 385 385 592 431 390 390 594 438 389 389 507 437 387 387 506 435 391 391 508 439 392 392 537 440 388 388 534 441 390 390 536 442 393 393 509 443 389 389 507 437 391 391 508 439 392 392 537 440 390 390 536 442 394 394 538 444 393 393 509 443 391 391 508 439 395 395 510 445 396 396 540 446 392 392 537 440 394 394 538 444 397 397 511 447 393 393 509 443 395 395 510 445 396 396 540 446 394 394 538 444 398 398 541 448 397 397 511 447 395 395 510 445 399 399 512 449 400 400 542 450 396 396 540 446 398 398 541 448 399 399 512 449 401 401 513 451 397 397 511 447 400 400 542 450 398 398 541 448 402 402 544 452 403 403 545 453 400 400 542 450 402 402 544 452 401 401 513 451 399 399 512 449 404 404 514 454 402 402 544 452 405 405 546 455 403 403 545 453 404 404 514 454 406 406 516 456 401 401 513 451 407 407 517 457 404 404 514 454 399 399 512 449 406 406 516 456 408 408 518 458 401 401 513 451 399 399 512 449 409 409 520 459 407 407 517 457 403 403 545 453 405 405 546 455 410 410 548 460 408 408 518 458 411 411 521 461 401 401 513 451 412 412 522 462 401 401 513 451 411 411 521 461 411 411 521 461 413 413 524 463 412 412 522 462 413 413 524 463 414 414 525 464 412 412 522 462 413 413 628 465 415 415 630 466 414 414 629 467 415 415 596 468 416 416 597 469 414 414 595 470 415 415 630 466 417 417 632 471 416 416 631 472 417 417 632 471 418 418 633 473 416 416 631 472 399 399 512 449 419 419 526 474 409 409 520 459 399 399 512 449 420 420 528 475 419 419 526 474 420 420 528 475 421 421 529 476 419 419 526 474 420 420 528 475 422 422 530 477 421 421 529 476 422 422 530 477 423 423 532 478 421 421 529 476 422 422 530 477 424 424 533 479 423 423 532 478 424 424 635 480 425 425 636 481 423 423 634 482 424 424 635 480 426 426 637 483 425 425 636 481 427 427 624 484 428 428 625 485 429 429 626 486 430 430 550 487 427 427 549 488 431 431 551 489 427 427 624 484 429 429 626 486 431 431 627 490 432 432 552 491 430 430 550 487 433 433 553 492 430 430 550 487 431 431 551 489 433 433 553 492 432 432 552 491 433 433 553 492 434 434 554 493 405 405 546 455 432 432 552 491 434 434 554 493 405 405 546 455 434 434 554 493 435 435 555 494 435 435 555 494 410 410 548 460 405 405 546 455 403 403 545 453 436 436 556 495 437 437 557 496 403 403 545 453 410 410 548 460 436 436 556 495 403 403 545 453 437 437 557 496 438 438 558 497 439 439 559 498 403 403 545 453 438 438 558 497 440 440 560 499 441 441 561 500 439 439 559 498 442 442 562 501 440 440 560 499 439 439 559 498 438 438 558 497 442 442 562 501 439 439 559 498 443 443 619 502 444 444 620 503 441 441 618 504 440 440 638 505 443 443 640 506 441 441 639 507 445 445 642 508 446 446 643 509 444 444 641 510 443 443 640 506 445 445 642 508 444 444 641 510 447 447 289 511 448 448 290 512 449 449 291 513 447 447 289 511 449 449 291 513 450 450 292 514 451 451 293 515 452 452 294 516 453 453 295 517 451 451 293 515 454 454 296 518 452 452 294 516 454 454 296 518 450 450 292 514 452 452 294 516 454 454 296 518 447 447 289 511 450 450 292 514 455 455 297 519 456 456 298 520 457 457 299 521 455 455 297 519 458 458 300 522 456 456 298 520 458 458 300 522 453 453 295 517 456 456 298 520 458 458 300 522 451 451 293 515 453 453 295 517 459 459 301 523 460 460 302 524 461 461 303 525 459 459 301 523 462 462 304 526 460 460 302 524 462 462 304 526 463 463 305 527 460 460 302 524 462 462 304 526 464 464 306 528 463 463 305 527 464 464 306 528 457 457 299 521 463 463 305 527 464 464 306 528 455 455 297 519 457 457 299 521 465 465 307 529 461 461 303 525 466 466 308 530 467 467 309 531 465 465 307 529 466 466 308 530 467 467 309 531 466 466 308 530 468 468 310 532 469 469 311 533 467 467 309 531 468 468 310 532 469 469 311 533 468 468 310 532 470 470 312 534 471 471 313 535 469 469 311 533 470 470 312 534 465 465 307 529 459 459 301 523 461 461 303 525 471 471 313 535 470 470 312 534 472 472 314 536 473 473 315 537 471 471 313 535 472 472 314 536 473 473 315 537 472 472 314 536 474 474 316 538 475 475 317 539 473 473 315 537 474 474 316 538 475 475 317 539 474 474 316 538 476 476 318 540 477 477 331 541 476 476 318 540 478 478 333 542 477 477 331 541 475 475 317 539 476 476 318 540 479 479 334 543 478 478 333 542 480 480 335 544 479 479 334 543 477 477 331 541 478 478 333 542 481 481 336 545 479 479 334 543 480 480 335 544 481 481 336 545 480 480 335 544 482 482 337 546 482 482 337 546 483 483 338 547 481 481 336 545 482 482 337 546 484 484 339 548 483 483 338 547 485 485 203 549 486 486 204 550 487 487 205 551 485 485 203 549 487 487 205 551 488 488 206 552 489 489 207 553 485 485 203 549 488 488 206 552 489 489 207 553 488 488 206 552 490 490 208 554 491 491 209 555 489 489 207 553 490 490 208 554 491 491 209 555 490 490 208 554 492 492 210 556 492 492 210 556 493 493 211 557 491 491 209 555 493 493 211 557 492 492 210 556 494 494 212 558 495 495 213 559 493 493 211 557 494 494 212 558 495 495 568 560 494 494 567 561 496 496 569 562 496 496 569 562 497 497 570 563 495 495 568 560 496 496 569 562 498 498 571 564 497 497 570 563 486 486 204 550 499 499 214 565 487 487 205 551 500 500 215 566 501 501 216 567 499 499 214 565 486 486 204 550 500 500 215 566 499 499 214 565 502 502 217 568 503 503 218 569 501 501 216 567 500 500 215 566 502 502 217 568 501 501 216 567 502 502 217 568 504 504 219 570 503 503 218 569 505 505 220 571 503 503 218 569 504 504 219 570 505 505 220 571 504 504 219 570 506 506 221 572 506 506 221 572 507 507 222 573 505 505 220 571 507 507 222 573 508 508 223 574 505 505 220 571 507 507 400 575 509 509 403 576 508 508 402 577 509 509 403 576 510 510 404 578 508 508 402 577 509 509 403 576 511 511 405 579 510 510 404 578 512 512 563 580 513 513 564 581 514 514 565 582 514 514 565 582 515 515 566 583 512 512 563 580 515 515 599 584 516 516 600 585 512 512 598 586 516 516 622 587 517 517 623 588 512 512 621 589 516 516 224 590 518 518 226 591 517 517 225 592 518 518 226 591 519 519 227 593 517 517 225 592 518 518 226 591 520 520 228 594 519 519 227 593 520 520 228 594 521 521 229 595 519 519 227 593 520 520 228 594 522 522 230 596 521 521 229 595 522 522 230 596 523 523 231 597 521 521 229 595 522 522 230 596 524 524 232 598 523 523 231 597 524 524 232 598 525 525 233 599 523 523 231 597 524 524 232 598 526 526 234 600 525 525 233 599 526 526 234 600 527 527 235 601 525 525 233 599 528 528 236 602 529 529 237 603 527 527 235 601 527 527 235 601 526 526 234 600 528 528 236 602 528 528 236 602 530 530 238 604 529 529 237 603 530 530 238 604 531 531 239 605 529 529 237 603 530 530 238 604 532 532 240 606 531 531 239 605 532 532 240 606 533 533 241 607 531 531 239 605 533 533 241 607 532 532 240 606 534 534 242 608 534 534 242 608 535 535 243 609 533 533 241 607 534 534 406 610 536 536 409 611 535 535 407 612 536 536 409 611 537 537 410 613 535 535 407 612 536 536 409 611 538 538 411 614 537 537 410 613 539 539 412 615 593 540 484 616 594 541 485 617 594 541 485 617 540 542 414 618 539 539 412 615 594 541 485 617 595 543 486 619 540 542 414 618 575 544 456 620 541 545 415 621 542 546 416 622 542 546 416 622 612 547 503 623 575 544 456 620 576 548 457 624 541 545 415 621 575 544 456 620 592 549 483 625 593 540 484 616 539 539 412 615 539 539 412 615 543 550 418 626 592 549 483 625 540 542 414 618 595 543 486 619 596 551 487 627 596 551 487 627 574 552 454 628 540 542 414 618 596 551 487 627 573 553 453 629 574 552 454 628 543 550 418 626 544 554 419 630 592 549 483 625 544 554 419 630 591 555 482 631 592 549 483 625 596 551 487 627 597 556 488 632 573 553 453 629 560 557 436 633 610 558 501 634 611 559 502 635 611 559 502 635 559 560 435 636 560 557 436 633 611 559 502 635 612 547 503 623 542 546 416 622 542 546 416 622 559 560 435 636 611 559 502 635 577 561 460 637 578 562 461 638 557 563 433 639 557 563 433 639 558 564 434 640 577 561 460 637 541 545 415 621 576 548 457 624 577 561 460 637 577 561 460 637 558 564 434 640 541 545 415 621 544 554 419 630 545 565 420 641 590 566 480 642 545 565 420 641 546 567 421 643 589 568 479 644 546 567 421 643 547 569 422 645 588 570 478 646 547 569 422 645 548 571 423 647 587 572 476 648 548 571 423 647 549 573 424 649 586 574 475 650 590 566 480 642 591 555 482 631 544 554 419 630 589 568 479 644 590 566 480 642 545 565 420 641 588 570 478 646 589 568 479 644 546 567 421 643 587 572 476 648 588 570 478 646 547 569 422 645 586 574 475 650 587 572 476 648 548 571 423 647 549 573 424 649 550 575 425 651 585 576 473 652 550 575 425 651 551 577 426 653 584 578 472 654 585 576 473 652 586 574 475 650 549 573 424 649 584 578 472 654 585 576 473 652 550 575 425 651 551 577 426 653 552 579 427 655 583 580 471 656 583 580 471 656 584 578 472 654 551 577 426 653 552 579 427 655 553 581 429 657 582 582 469 658 582 582 469 658 583 580 471 656 552 579 427 655 553 581 429 657 554 583 430 659 581 584 467 660 581 584 467 660 582 582 469 658 553 581 429 657 554 583 430 659 555 585 431 661 580 586 465 662 580 586 465 662 581 584 467 660 554 583 430 659 555 585 431 661 556 587 432 663 579 588 464 664 579 588 464 664 580 586 465 662 555 585 431 661 556 587 432 663 557 563 433 639 578 562 461 638 578 562 461 638 579 588 464 664 556 587 432 663 597 556 488 632 598 589 489 665 572 590 452 666 598 589 489 665 599 591 490 667 571 592 450 668 599 591 490 667 600 593 491 669 570 594 449 670 572 590 452 666 573 553 453 629 597 556 488 632 571 592 450 668 572 590 452 666 598 589 489 665 570 594 449 670 571 592 450 668 599 591 490 667 600 593 491 669 601 595 492 671 569 596 448 672 569 596 448 672 570 594 449 670 600 593 491 669 601 595 492 671 602 597 493 673 568 598 446 674 568 598 446 674 569 596 448 672 601 595 492 671 609 599 500 675 610 558 501 634 560 557 436 633 608 600 499 676 609 599 500 675 561 601 438 677 560 557 436 633 561 601 438 677 609 599 500 675 561 601 438 677 562 602 439 678 608 600 499 676 607 603 498 679 608 600 499 676 562 602 439 678 562 602 439 678 563 604 440 680 607 603 498 679 606 605 497 681 607 603 498 679 563 604 440 680 563 604 440 680 564 606 441 682 606 605 497 681 605 607 496 683 606 605 497 681 564 606 441 682 564 606 441 682 565 608 443 684 605 607 496 683 604 609 495 685 605 607 496 683 565 608 443 684 565 608 443 684 566 610 444 686 604 609 495 685 603 611 494 687 604 609 495 685 566 610 444 686 566 610 444 686 567 612 445 688 603 611 494 687 602 597 493 673 603 611 494 687 567 612 445 688 567 612 445 688 568 598 446 674 602 597 493 673</p>
|
|
147
|
+
</triangles>
|
|
148
|
+
</mesh>
|
|
149
|
+
</geometry>
|
|
150
|
+
</library_geometries>
|
|
151
|
+
<library_lights>
|
|
152
|
+
<light id="EnvironmentAmbientLight" name="EnvironmentAmbientLight">
|
|
153
|
+
<technique_common>
|
|
154
|
+
<ambient>
|
|
155
|
+
<color>0 0 0</color>
|
|
156
|
+
</ambient>
|
|
157
|
+
</technique_common>
|
|
158
|
+
</light>
|
|
159
|
+
</library_lights>
|
|
160
|
+
<library_images>
|
|
161
|
+
<image id="wrist_yaw_128x_jpg">
|
|
162
|
+
<init_from>../images/wrist_yaw_128x.jpg</init_from>
|
|
163
|
+
</image>
|
|
164
|
+
</library_images>
|
|
165
|
+
<library_visual_scenes>
|
|
166
|
+
<visual_scene id="MaxScene">
|
|
167
|
+
<node name="EnvironmentAmbientLight">
|
|
168
|
+
<instance_light url="#EnvironmentAmbientLight"/>
|
|
169
|
+
</node>
|
|
170
|
+
<node id="node-wamUpperWristYawLink" name="wamUpperWristYawLink">
|
|
171
|
+
<matrix>1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>
|
|
172
|
+
<instance_geometry url="#geom-wamUpperWristYawLink">
|
|
173
|
+
<bind_material>
|
|
174
|
+
<technique_common>
|
|
175
|
+
<instance_material symbol="wristyawM_1" target="#wristyawM-material">
|
|
176
|
+
<bind_vertex_input semantic="CHANNEL1" input_semantic="TEXCOORD" input_set="1"/>
|
|
177
|
+
</instance_material>
|
|
178
|
+
</technique_common>
|
|
179
|
+
</bind_material>
|
|
180
|
+
</instance_geometry>
|
|
181
|
+
</node>
|
|
182
|
+
</visual_scene>
|
|
183
|
+
</library_visual_scenes>
|
|
184
|
+
<scene>
|
|
185
|
+
<instance_visual_scene url="#MaxScene"/>
|
|
186
|
+
</scene>
|
|
187
|
+
</COLLADA>
|
|
Binary file
|
|
Binary file
|