dartpy 7.0.0.dev0__cp313-cp313-manylinux_2_39_x86_64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of dartpy might be problematic. Click here for more details.
- dartpy-7.0.0.dev0.dist-info/METADATA +86 -0
- dartpy-7.0.0.dev0.dist-info/RECORD +994 -0
- dartpy-7.0.0.dev0.dist-info/WHEEL +5 -0
- dartpy-7.0.0.dev0.dist-info/licenses/LICENSE +31 -0
- dartpy.cpython-313-x86_64-linux-gnu.so +0 -0
- dartpy.libs/libBulletCollision-f96eb02c.so.3.25 +0 -0
- dartpy.libs/libBulletDynamics-3cff1f18.so.3.25 +0 -0
- dartpy.libs/libBulletSoftBody-220f01bd.so.3.25 +0 -0
- dartpy.libs/libLinearMath-71568d02.so.3.25 +0 -0
- dartpy.libs/libOpenThreads-8bc434db.so.3.3.1 +0 -0
- dartpy.libs/libSDL2-2-3db87ac0.0.so.0.3200.56 +0 -0
- dartpy.libs/libassimp-44cf3e77.so.5.4.3 +0 -0
- dartpy.libs/libccd-4f119cf4.so.2.0 +0 -0
- dartpy.libs/libconsole_bridge-f26e11cc.so.1.0 +0 -0
- dartpy.libs/libfcl-0400fc28.so.0.7.0 +0 -0
- dartpy.libs/libfmt-277170bf.so.11.2.0 +0 -0
- dartpy.libs/libfontconfig-582da43c.so.1.14.0 +0 -0
- dartpy.libs/libfreetype-64806fc6.so.6.20.4 +0 -0
- dartpy.libs/libglfw-6f066845.so.3.4 +0 -0
- dartpy.libs/libimgui-ab87b07d.so +0 -0
- dartpy.libs/libnlopt-d1ae937b.so.1.0.0 +0 -0
- dartpy.libs/liboctomap-38e56f99.so.1.10.0 +0 -0
- dartpy.libs/liboctomath-bff26442.so.1.10.0 +0 -0
- dartpy.libs/libode-99b67f5b.so.8.2.0 +0 -0
- dartpy.libs/libosg-e67375e5.so.3.6.5 +0 -0
- dartpy.libs/libosgDB-bcdb6be9.so.3.6.5 +0 -0
- dartpy.libs/libosgGA-6af4078b.so.3.6.5 +0 -0
- dartpy.libs/libosgManipulator-3270f659.so.3.6.5 +0 -0
- dartpy.libs/libosgShadow-127a8d77.so.3.6.5 +0 -0
- dartpy.libs/libosgText-87d82d87.so.3.6.5 +0 -0
- dartpy.libs/libosgUtil-55896958.so.3.6.5 +0 -0
- dartpy.libs/libosgViewer-76d832e3.so.3.6.5 +0 -0
- dartpy.libs/libpng16-bd65464e.so.16.50.0 +0 -0
- dartpy.libs/libtinyxml2-8d10763c.so.11.0.0 +0 -0
- dartpy.libs/liburdfdom_model-7b26ae88.so.4.0 +0 -0
- dartpy.libs/liburdfdom_model_state-95a5ad6e.so.4.0 +0 -0
- dartpy.libs/liburdfdom_sensor-55a145ea.so.4.0 +0 -0
- dartpy.libs/liburdfdom_world-a32c7194.so.4.0 +0 -0
- dartpy.libs/libvulkan-08e1e162.so.1.4.328 +0 -0
- include/dart/collision/CollisionDetector.hpp +305 -0
- include/dart/collision/CollisionFilter.hpp +126 -0
- include/dart/collision/CollisionGroup.hpp +546 -0
- include/dart/collision/CollisionObject.hpp +90 -0
- include/dart/collision/CollisionOption.hpp +71 -0
- include/dart/collision/CollisionResult.hpp +109 -0
- include/dart/collision/Contact.hpp +103 -0
- include/dart/collision/DistanceFilter.hpp +66 -0
- include/dart/collision/DistanceOption.hpp +80 -0
- include/dart/collision/DistanceResult.hpp +123 -0
- include/dart/collision/Option.hpp +42 -0
- include/dart/collision/RaycastOption.hpp +58 -0
- include/dart/collision/RaycastResult.hpp +80 -0
- include/dart/collision/Result.hpp +42 -0
- include/dart/collision/SmartPointer.hpp +51 -0
- include/dart/collision/all.hpp +17 -0
- include/dart/collision/bullet/BulletCollisionDetector.hpp +168 -0
- include/dart/collision/bullet/BulletCollisionGroup.hpp +98 -0
- include/dart/collision/bullet/BulletCollisionObject.hpp +75 -0
- include/dart/collision/bullet/BulletCollisionShape.hpp +62 -0
- include/dart/collision/bullet/BulletInclude.hpp +47 -0
- include/dart/collision/bullet/BulletTypes.hpp +57 -0
- include/dart/collision/bullet/all.hpp +8 -0
- include/dart/collision/bullet/bullet.hpp +14 -0
- include/dart/collision/bullet/detail/BulletCollisionDispatcher.hpp +70 -0
- include/dart/collision/bullet/detail/BulletOverlapFilterCallback.hpp +72 -0
- include/dart/collision/collision.hpp +14 -0
- include/dart/collision/dart/DARTCollide.hpp +106 -0
- include/dart/collision/dart/DARTCollisionDetector.hpp +109 -0
- include/dart/collision/dart/DARTCollisionGroup.hpp +82 -0
- include/dart/collision/dart/DARTCollisionObject.hpp +63 -0
- include/dart/collision/dart/all.hpp +6 -0
- include/dart/collision/dart/dart.hpp +14 -0
- include/dart/collision/detail/CollisionDetector.hpp +66 -0
- include/dart/collision/detail/CollisionGroup.hpp +287 -0
- include/dart/collision/detail/Contact-impl.hpp +56 -0
- include/dart/collision/detail/UnorderedPairs.hpp +153 -0
- include/dart/collision/fcl/BackwardCompatibility.hpp +145 -0
- include/dart/collision/fcl/CollisionShapes.hpp +374 -0
- include/dart/collision/fcl/FCLCollisionDetector.hpp +204 -0
- include/dart/collision/fcl/FCLCollisionGroup.hpp +95 -0
- include/dart/collision/fcl/FCLCollisionObject.hpp +72 -0
- include/dart/collision/fcl/FCLTypes.hpp +62 -0
- include/dart/collision/fcl/TriTriIntersectionTest.hpp +17 -0
- include/dart/collision/fcl/all.hpp +9 -0
- include/dart/collision/fcl/fcl.hpp +14 -0
- include/dart/collision/fcl/tri_tri_intersection_test.hpp +332 -0
- include/dart/collision/ode/OdeCollisionDetector.hpp +131 -0
- include/dart/collision/ode/OdeCollisionGroup.hpp +87 -0
- include/dart/collision/ode/OdeCollisionObject.hpp +89 -0
- include/dart/collision/ode/OdeTypes.hpp +51 -0
- include/dart/collision/ode/all.hpp +6 -0
- include/dart/collision/ode/detail/OdeBox.hpp +58 -0
- include/dart/collision/ode/detail/OdeCapsule.hpp +58 -0
- include/dart/collision/ode/detail/OdeCylinder.hpp +58 -0
- include/dart/collision/ode/detail/OdeGeom.hpp +83 -0
- include/dart/collision/ode/detail/OdeHeightmap-impl.hpp +170 -0
- include/dart/collision/ode/detail/OdeHeightmap.hpp +70 -0
- include/dart/collision/ode/detail/OdeMesh.hpp +83 -0
- include/dart/collision/ode/detail/OdePlane.hpp +67 -0
- include/dart/collision/ode/detail/OdeSphere.hpp +58 -0
- include/dart/collision/ode/ode.hpp +14 -0
- include/dart/common/Aspect.hpp +215 -0
- include/dart/common/AspectWithVersion.hpp +180 -0
- include/dart/common/CAllocator.hpp +65 -0
- include/dart/common/Castable.hpp +102 -0
- include/dart/common/ClassWithVirtualBase.hpp +47 -0
- include/dart/common/Cloneable.hpp +327 -0
- include/dart/common/Composite.hpp +205 -0
- include/dart/common/CompositeJoiner.hpp +160 -0
- include/dart/common/Console.hpp +75 -0
- include/dart/common/Deprecated.hpp +126 -0
- include/dart/common/EmbeddedAspect.hpp +466 -0
- include/dart/common/Empty.hpp +55 -0
- include/dart/common/Factory.hpp +146 -0
- include/dart/common/Filesystem.hpp +112 -0
- include/dart/common/FreeListAllocator.hpp +162 -0
- include/dart/common/IncludeWindows.hpp +50 -0
- include/dart/common/LocalResource.hpp +76 -0
- include/dart/common/LocalResourceRetriever.hpp +63 -0
- include/dart/common/LockableReference.hpp +166 -0
- include/dart/common/Logging.hpp +146 -0
- include/dart/common/Macros.hpp +78 -0
- include/dart/common/Memory.hpp +215 -0
- include/dart/common/MemoryAllocator.hpp +120 -0
- include/dart/common/MemoryAllocatorDebugger.hpp +98 -0
- include/dart/common/MemoryManager.hpp +189 -0
- include/dart/common/Metaprogramming.hpp +68 -0
- include/dart/common/NameManager.hpp +184 -0
- include/dart/common/Observer.hpp +85 -0
- include/dart/common/Optional.hpp +48 -0
- include/dart/common/Platform.hpp +92 -0
- include/dart/common/PoolAllocator.hpp +141 -0
- include/dart/common/Profile.hpp +56 -0
- include/dart/common/ProxyAspect.hpp +93 -0
- include/dart/common/RequiresAspect.hpp +79 -0
- include/dart/common/Resource.hpp +96 -0
- include/dart/common/ResourceRetriever.hpp +82 -0
- include/dart/common/SharedLibrary.hpp +201 -0
- include/dart/common/Signal.hpp +250 -0
- include/dart/common/Singleton.hpp +85 -0
- include/dart/common/SmartPointer.hpp +63 -0
- include/dart/common/SpecializedForAspect.hpp +207 -0
- include/dart/common/StlAllocator.hpp +111 -0
- include/dart/common/StlHelpers.hpp +61 -0
- include/dart/common/Stopwatch.hpp +143 -0
- include/dart/common/String.hpp +71 -0
- include/dart/common/SubPtr.hpp +17 -0
- include/dart/common/Subject.hpp +84 -0
- include/dart/common/Timer.hpp +119 -0
- include/dart/common/Uri.hpp +229 -0
- include/dart/common/VersionCounter.hpp +68 -0
- include/dart/common/Virtual.hpp +51 -0
- include/dart/common/all.hpp +53 -0
- include/dart/common/common.hpp +14 -0
- include/dart/common/detail/Aspect.hpp +102 -0
- include/dart/common/detail/AspectWithVersion.hpp +455 -0
- include/dart/common/detail/Castable-impl.hpp +109 -0
- include/dart/common/detail/Cloneable.hpp +638 -0
- include/dart/common/detail/Composite.hpp +241 -0
- include/dart/common/detail/CompositeData.hpp +393 -0
- include/dart/common/detail/CompositeJoiner.hpp +128 -0
- include/dart/common/detail/ConnectionBody.hpp +157 -0
- include/dart/common/detail/EmbeddedAspect.hpp +487 -0
- include/dart/common/detail/Factory-impl.hpp +200 -0
- include/dart/common/detail/LockableReference-impl.hpp +156 -0
- include/dart/common/detail/Logging-impl.hpp +162 -0
- include/dart/common/detail/Memory-impl.hpp +66 -0
- include/dart/common/detail/MemoryAllocator-impl.hpp +97 -0
- include/dart/common/detail/MemoryAllocatorDebugger-impl.hpp +201 -0
- include/dart/common/detail/MemoryManager-impl.hpp +102 -0
- include/dart/common/detail/Metaprogramming-impl.hpp +89 -0
- include/dart/common/detail/NameManager.hpp +301 -0
- include/dart/common/detail/NoOp.hpp +57 -0
- include/dart/common/detail/ProxyAspect.hpp +172 -0
- include/dart/common/detail/RequiresAspect.hpp +51 -0
- include/dart/common/detail/SharedLibraryManager.hpp +106 -0
- include/dart/common/detail/Signal.hpp +242 -0
- include/dart/common/detail/Singleton-impl.hpp +74 -0
- include/dart/common/detail/SpecializedForAspect.hpp +331 -0
- include/dart/common/detail/StlAllocator-impl.hpp +108 -0
- include/dart/common/detail/Stopwatch-impl.hpp +242 -0
- include/dart/common/detail/SubPtr.hpp +17 -0
- include/dart/common/detail/TemplateJoinerDispatchMacro.hpp +59 -0
- include/dart/common/detail/sub_ptr.hpp +139 -0
- include/dart/common/sub_ptr.hpp +103 -0
- include/dart/config.hpp +100 -0
- include/dart/constraint/BalanceConstraint.hpp +202 -0
- include/dart/constraint/BallJointConstraint.hpp +142 -0
- include/dart/constraint/BoxedLcpConstraintSolver.hpp +182 -0
- include/dart/constraint/BoxedLcpSolver.hpp +101 -0
- include/dart/constraint/ConstrainedGroup.hpp +120 -0
- include/dart/constraint/ConstraintBase.hpp +141 -0
- include/dart/constraint/ConstraintSolver.hpp +325 -0
- include/dart/constraint/ContactConstraint.hpp +286 -0
- include/dart/constraint/ContactSurface.hpp +191 -0
- include/dart/constraint/DantzigBoxedLcpSolver.hpp +71 -0
- include/dart/constraint/DantzigLCPSolver.hpp +87 -0
- include/dart/constraint/DynamicJointConstraint.hpp +120 -0
- include/dart/constraint/JointConstraint.hpp +182 -0
- include/dart/constraint/JointCoulombFrictionConstraint.hpp +149 -0
- include/dart/constraint/JointLimitConstraint.hpp +185 -0
- include/dart/constraint/LCPSolver.hpp +71 -0
- include/dart/constraint/MimicMotorConstraint.hpp +164 -0
- include/dart/constraint/PGSLCPSolver.hpp +109 -0
- include/dart/constraint/PgsBoxedLcpSolver.hpp +106 -0
- include/dart/constraint/ServoMotorConstraint.hpp +151 -0
- include/dart/constraint/SmartPointer.hpp +69 -0
- include/dart/constraint/SoftContactConstraint.hpp +262 -0
- include/dart/constraint/WeldJointConstraint.hpp +133 -0
- include/dart/constraint/all.hpp +25 -0
- include/dart/constraint/constraint.hpp +14 -0
- include/dart/constraint/detail/ConstraintSolver-impl.hpp +78 -0
- include/dart/dart.hpp +44 -0
- include/dart/dynamics/ArrowShape.hpp +121 -0
- include/dart/dynamics/AssimpInputResourceAdaptor.hpp +129 -0
- include/dart/dynamics/BallJoint.hpp +143 -0
- include/dart/dynamics/BodyNode.hpp +1279 -0
- include/dart/dynamics/BoxShape.hpp +90 -0
- include/dart/dynamics/Branch.hpp +107 -0
- include/dart/dynamics/CapsuleShape.hpp +105 -0
- include/dart/dynamics/Chain.hpp +142 -0
- include/dart/dynamics/CompositeNode.hpp +114 -0
- include/dart/dynamics/ConeShape.hpp +107 -0
- include/dart/dynamics/CylinderShape.hpp +96 -0
- include/dart/dynamics/DegreeOfFreedom.hpp +415 -0
- include/dart/dynamics/EllipsoidShape.hpp +115 -0
- include/dart/dynamics/EndEffector.hpp +158 -0
- include/dart/dynamics/Entity.hpp +258 -0
- include/dart/dynamics/EntityNode.hpp +77 -0
- include/dart/dynamics/EulerJoint.hpp +174 -0
- include/dart/dynamics/FixedFrame.hpp +105 -0
- include/dart/dynamics/FixedJacobianNode.hpp +168 -0
- include/dart/dynamics/Frame.hpp +388 -0
- include/dart/dynamics/FreeJoint.hpp +369 -0
- include/dart/dynamics/GenericJoint.hpp +825 -0
- include/dart/dynamics/Group.hpp +270 -0
- include/dart/dynamics/HeightmapShape.hpp +195 -0
- include/dart/dynamics/HierarchicalIK.hpp +419 -0
- include/dart/dynamics/IkFast.hpp +277 -0
- include/dart/dynamics/Inertia.hpp +176 -0
- include/dart/dynamics/InvalidIndex.hpp +46 -0
- include/dart/dynamics/InverseKinematics.hpp +1401 -0
- include/dart/dynamics/JacobianNode.hpp +312 -0
- include/dart/dynamics/Joint.hpp +1128 -0
- include/dart/dynamics/LineSegmentShape.hpp +140 -0
- include/dart/dynamics/Linkage.hpp +246 -0
- include/dart/dynamics/Marker.hpp +126 -0
- include/dart/dynamics/MeshShape.hpp +225 -0
- include/dart/dynamics/MetaSkeleton.hpp +1034 -0
- include/dart/dynamics/MimicDofProperties.hpp +62 -0
- include/dart/dynamics/MultiSphereConvexHullShape.hpp +111 -0
- include/dart/dynamics/MultiSphereShape.hpp +42 -0
- include/dart/dynamics/Node.hpp +273 -0
- include/dart/dynamics/NodeManagerJoiner.hpp +190 -0
- include/dart/dynamics/PlanarJoint.hpp +161 -0
- include/dart/dynamics/PlaneShape.hpp +105 -0
- include/dart/dynamics/PointCloudShape.hpp +186 -0
- include/dart/dynamics/PointMass.hpp +709 -0
- include/dart/dynamics/PrismaticJoint.hpp +120 -0
- include/dart/dynamics/PyramidShape.hpp +122 -0
- include/dart/dynamics/ReferentialSkeleton.hpp +550 -0
- include/dart/dynamics/RevoluteJoint.hpp +120 -0
- include/dart/dynamics/ScrewJoint.hpp +126 -0
- include/dart/dynamics/Shape.hpp +231 -0
- include/dart/dynamics/ShapeFrame.hpp +291 -0
- include/dart/dynamics/ShapeNode.hpp +134 -0
- include/dart/dynamics/SharedLibraryIkFast.hpp +147 -0
- include/dart/dynamics/SimpleFrame.hpp +247 -0
- include/dart/dynamics/Skeleton.hpp +1350 -0
- include/dart/dynamics/SmartPointer.hpp +185 -0
- include/dart/dynamics/SoftBodyNode.hpp +472 -0
- include/dart/dynamics/SoftMeshShape.hpp +100 -0
- include/dart/dynamics/SpecializedNodeManager.hpp +230 -0
- include/dart/dynamics/SphereShape.hpp +89 -0
- include/dart/dynamics/TemplatedJacobianNode.hpp +128 -0
- include/dart/dynamics/TranslationalJoint.hpp +105 -0
- include/dart/dynamics/TranslationalJoint2D.hpp +156 -0
- include/dart/dynamics/UniversalJoint.hpp +128 -0
- include/dart/dynamics/VoxelGridShape.hpp +171 -0
- include/dart/dynamics/WeldJoint.hpp +116 -0
- include/dart/dynamics/ZeroDofJoint.hpp +562 -0
- include/dart/dynamics/all.hpp +69 -0
- include/dart/dynamics/detail/BasicNodeManager.hpp +539 -0
- include/dart/dynamics/detail/BodyNode.hpp +344 -0
- include/dart/dynamics/detail/BodyNodeAspect.hpp +177 -0
- include/dart/dynamics/detail/BodyNodePtr.hpp +351 -0
- include/dart/dynamics/detail/CompositeNode.hpp +93 -0
- include/dart/dynamics/detail/DegreeOfFreedomPtr.hpp +338 -0
- include/dart/dynamics/detail/EndEffectorAspect.hpp +106 -0
- include/dart/dynamics/detail/EntityNode.hpp +81 -0
- include/dart/dynamics/detail/EntityNodeAspect.hpp +101 -0
- include/dart/dynamics/detail/EulerJointAspect.hpp +93 -0
- include/dart/dynamics/detail/FixedFrameAspect.hpp +58 -0
- include/dart/dynamics/detail/FixedJacobianNode.hpp +55 -0
- include/dart/dynamics/detail/GenericJoint.hpp +2471 -0
- include/dart/dynamics/detail/GenericJointAspect.hpp +353 -0
- include/dart/dynamics/detail/HeightmapShape-impl.hpp +243 -0
- include/dart/dynamics/detail/InverseKinematics.hpp +83 -0
- include/dart/dynamics/detail/InverseKinematicsPtr.hpp +341 -0
- include/dart/dynamics/detail/JointAspect.hpp +161 -0
- include/dart/dynamics/detail/JointPtr.hpp +293 -0
- include/dart/dynamics/detail/MarkerAspect.hpp +68 -0
- include/dart/dynamics/detail/MetaSkeleton-impl.hpp +151 -0
- include/dart/dynamics/detail/Node.hpp +532 -0
- include/dart/dynamics/detail/NodeManagerJoiner.hpp +184 -0
- include/dart/dynamics/detail/NodePtr.hpp +259 -0
- include/dart/dynamics/detail/PlanarJointAspect.hpp +136 -0
- include/dart/dynamics/detail/PrismaticJointAspect.hpp +85 -0
- include/dart/dynamics/detail/RevoluteJointAspect.hpp +86 -0
- include/dart/dynamics/detail/ScrewJointAspect.hpp +90 -0
- include/dart/dynamics/detail/ShapeFrameAspect.hpp +169 -0
- include/dart/dynamics/detail/ShapeNode.hpp +51 -0
- include/dart/dynamics/detail/Skeleton.hpp +92 -0
- include/dart/dynamics/detail/SkeletonAspect.hpp +181 -0
- include/dart/dynamics/detail/SoftBodyNodeAspect.hpp +132 -0
- include/dart/dynamics/detail/SpecializedNodeManager.hpp +324 -0
- include/dart/dynamics/detail/TemplatedJacobianNode.hpp +294 -0
- include/dart/dynamics/detail/TranslationalJoint2DAspect.hpp +140 -0
- include/dart/dynamics/detail/UniversalJointAspect.hpp +86 -0
- include/dart/dynamics/dynamics.hpp +14 -0
- include/dart/dynamics/ikfast.h +345 -0
- include/dart/external/convhull_3d/convhull_3d.h +1878 -0
- include/dart/external/convhull_3d/safe_convhull_3d.h +53 -0
- include/dart/external/odelcpsolver/common.h +418 -0
- include/dart/external/odelcpsolver/error.h +62 -0
- include/dart/external/odelcpsolver/lcp.h +75 -0
- include/dart/external/odelcpsolver/matrix.h +277 -0
- include/dart/external/odelcpsolver/misc.h +82 -0
- include/dart/external/odelcpsolver/odeconfig.h +110 -0
- include/dart/gui/osg/DefaultEventHandler.hpp +237 -0
- include/dart/gui/osg/DragAndDrop.hpp +360 -0
- include/dart/gui/osg/GridVisual.hpp +218 -0
- include/dart/gui/osg/ImGuiHandler.hpp +113 -0
- include/dart/gui/osg/ImGuiViewer.hpp +83 -0
- include/dart/gui/osg/ImGuiWidget.hpp +91 -0
- include/dart/gui/osg/IncludeImGui.hpp +75 -0
- include/dart/gui/osg/InteractiveFrame.hpp +170 -0
- include/dart/gui/osg/MouseEventHandler.hpp +76 -0
- include/dart/gui/osg/RealTimeWorldNode.hpp +126 -0
- include/dart/gui/osg/ShapeFrameNode.hpp +117 -0
- include/dart/gui/osg/SupportPolygonVisual.hpp +202 -0
- include/dart/gui/osg/TrackballManipulator.hpp +97 -0
- include/dart/gui/osg/Utils.hpp +120 -0
- include/dart/gui/osg/Viewer.hpp +427 -0
- include/dart/gui/osg/WorldNode.hpp +211 -0
- include/dart/gui/osg/all.hpp +19 -0
- include/dart/gui/osg/detail/CameraModeCallback.hpp +82 -0
- include/dart/gui/osg/detail/Utils-impl.hpp +160 -0
- include/dart/gui/osg/osg.hpp +14 -0
- include/dart/gui/osg/render/BoxShapeNode.hpp +74 -0
- include/dart/gui/osg/render/CapsuleShapeNode.hpp +75 -0
- include/dart/gui/osg/render/ConeShapeNode.hpp +74 -0
- include/dart/gui/osg/render/CylinderShapeNode.hpp +75 -0
- include/dart/gui/osg/render/EllipsoidShapeNode.hpp +76 -0
- include/dart/gui/osg/render/HeightmapShapeNode.hpp +485 -0
- include/dart/gui/osg/render/LineSegmentShapeNode.hpp +75 -0
- include/dart/gui/osg/render/MeshShapeNode.hpp +86 -0
- include/dart/gui/osg/render/MultiSphereShapeNode.hpp +76 -0
- include/dart/gui/osg/render/PlaneShapeNode.hpp +75 -0
- include/dart/gui/osg/render/PointCloudShapeNode.hpp +85 -0
- include/dart/gui/osg/render/PyramidShapeNode.hpp +75 -0
- include/dart/gui/osg/render/ShapeNode.hpp +126 -0
- include/dart/gui/osg/render/SoftMeshShapeNode.hpp +75 -0
- include/dart/gui/osg/render/SphereShapeNode.hpp +76 -0
- include/dart/gui/osg/render/VoxelGridShapeNode.hpp +83 -0
- include/dart/gui/osg/render/WarningShapeNode.hpp +64 -0
- include/dart/gui/osg/render/all.hpp +19 -0
- include/dart/gui/osg/render/render.hpp +14 -0
- include/dart/integration/EulerIntegrator.hpp +64 -0
- include/dart/integration/Integrator.hpp +104 -0
- include/dart/integration/RK4Integrator.hpp +68 -0
- include/dart/integration/SemiImplicitEulerIntegrator.hpp +64 -0
- include/dart/integration/all.hpp +6 -0
- include/dart/integration/integration.hpp +14 -0
- include/dart/lcpsolver/Lemke.hpp +54 -0
- include/dart/lcpsolver/ODELCPSolver.hpp +88 -0
- include/dart/lcpsolver/all.hpp +4 -0
- include/dart/lcpsolver/lcpsolver.hpp +14 -0
- include/dart/math/ConfigurationSpace.hpp +144 -0
- include/dart/math/Constants.hpp +79 -0
- include/dart/math/Geometry.hpp +659 -0
- include/dart/math/Helpers.hpp +481 -0
- include/dart/math/Icosphere.hpp +106 -0
- include/dart/math/MathTypes.hpp +100 -0
- include/dart/math/Mesh.hpp +108 -0
- include/dart/math/Random.hpp +225 -0
- include/dart/math/TriMesh.hpp +121 -0
- include/dart/math/all.hpp +11 -0
- include/dart/math/detail/ConfigurationSpace.hpp +235 -0
- include/dart/math/detail/Geometry-impl.hpp +126 -0
- include/dart/math/detail/Icosphere-impl.hpp +214 -0
- include/dart/math/detail/Mesh-impl.hpp +151 -0
- include/dart/math/detail/Random-impl.hpp +353 -0
- include/dart/math/detail/TriMesh-impl.hpp +202 -0
- include/dart/math/math.hpp +14 -0
- include/dart/optimizer/Function.hpp +203 -0
- include/dart/optimizer/GenericMultiObjectiveProblem.hpp +174 -0
- include/dart/optimizer/GradientDescentSolver.hpp +240 -0
- include/dart/optimizer/MultiObjectiveProblem.hpp +168 -0
- include/dart/optimizer/MultiObjectiveSolver.hpp +168 -0
- include/dart/optimizer/Population.hpp +108 -0
- include/dart/optimizer/Problem.hpp +191 -0
- include/dart/optimizer/Solver.hpp +182 -0
- include/dart/optimizer/all.hpp +10 -0
- include/dart/optimizer/ipopt/BackwardCompatibility.hpp +43 -0
- include/dart/optimizer/ipopt/IpoptSolver.hpp +223 -0
- include/dart/optimizer/ipopt/all.hpp +4 -0
- include/dart/optimizer/ipopt/ipopt.hpp +14 -0
- include/dart/optimizer/nlopt/NloptSolver.hpp +212 -0
- include/dart/optimizer/nlopt/all.hpp +3 -0
- include/dart/optimizer/nlopt/nlopt.hpp +14 -0
- include/dart/optimizer/optimizer.hpp +14 -0
- include/dart/simulation/Recording.hpp +118 -0
- include/dart/simulation/SmartPointer.hpp +46 -0
- include/dart/simulation/World.hpp +405 -0
- include/dart/simulation/all.hpp +5 -0
- include/dart/simulation/detail/World-impl.hpp +129 -0
- include/dart/simulation/simulation.hpp +14 -0
- include/dart/utils/C3D.hpp +107 -0
- include/dart/utils/CompositeResourceRetriever.hpp +97 -0
- include/dart/utils/DartResourceRetriever.hpp +104 -0
- include/dart/utils/FileInfoC3D.hpp +91 -0
- include/dart/utils/FileInfoDof.hpp +109 -0
- include/dart/utils/FileInfoWorld.hpp +75 -0
- include/dart/utils/PackageResourceRetriever.hpp +118 -0
- include/dart/utils/SkelParser.hpp +70 -0
- include/dart/utils/VskParser.hpp +108 -0
- include/dart/utils/XmlHelpers.hpp +243 -0
- include/dart/utils/all.hpp +14 -0
- include/dart/utils/detail/XmlHelpers-impl.hpp +213 -0
- include/dart/utils/mjcf/MjcfParser.hpp +80 -0
- include/dart/utils/mjcf/all.hpp +3 -0
- include/dart/utils/mjcf/mjcf.hpp +14 -0
- include/dart/utils/sdf/SdfParser.hpp +98 -0
- include/dart/utils/sdf/all.hpp +3 -0
- include/dart/utils/sdf/sdf.hpp +14 -0
- include/dart/utils/urdf/BackwardCompatibility.hpp +52 -0
- include/dart/utils/urdf/DartLoader.hpp +277 -0
- include/dart/utils/urdf/IncludeUrdf.hpp +47 -0
- include/dart/utils/urdf/URDFTypes.hpp +42 -0
- include/dart/utils/urdf/all.hpp +5 -0
- include/dart/utils/urdf/urdf.hpp +14 -0
- include/dart/utils/urdf/urdf_world_parser.hpp +83 -0
- include/dart/utils/utils.hpp +14 -0
- lib64/libdart-collision-bullet.a +0 -0
- lib64/libdart-collision-ode.a +0 -0
- lib64/libdart-external-odelcpsolver.a +0 -0
- lib64/libdart-gui-osg.a +0 -0
- lib64/libdart-optimizer-ipopt.a +0 -0
- lib64/libdart-optimizer-nlopt.a +0 -0
- lib64/libdart-utils-urdf.a +0 -0
- lib64/libdart-utils.a +0 -0
- lib64/libdart.a +0 -0
- lib64/pkgconfig/dart.pc +12 -0
- share/dart/cmake/DARTConfig.cmake +194 -0
- share/dart/cmake/DARTConfigVersion.cmake +65 -0
- share/dart/cmake/DARTFindBullet.cmake +96 -0
- share/dart/cmake/DARTFindEigen3.cmake +9 -0
- share/dart/cmake/DARTFindIPOPT.cmake +20 -0
- share/dart/cmake/DARTFindNLOPT.cmake +17 -0
- share/dart/cmake/DARTFindODE.cmake +23 -0
- share/dart/cmake/DARTFindOpenSceneGraph.cmake +69 -0
- share/dart/cmake/DARTFindassimp.cmake +18 -0
- share/dart/cmake/DARTFindfcl.cmake +23 -0
- share/dart/cmake/DARTFindfmt.cmake +9 -0
- share/dart/cmake/DARTFindimgui.cmake +21 -0
- share/dart/cmake/DARTFindoctomap.cmake +17 -0
- share/dart/cmake/DARTFindspdlog.cmake +9 -0
- share/dart/cmake/DARTFindtinyxml2.cmake +27 -0
- share/dart/cmake/DARTFindurdfdom.cmake +29 -0
- share/dart/cmake/FindIPOPT.cmake +54 -0
- share/dart/cmake/FindNLOPT.cmake +54 -0
- share/dart/cmake/FindODE.cmake +54 -0
- share/dart/cmake/Findassimp.cmake +56 -0
- share/dart/cmake/Findfcl.cmake +67 -0
- share/dart/cmake/Findimgui.cmake +70 -0
- share/dart/cmake/Findtinyxml2.cmake +54 -0
- share/dart/cmake/dart_collision-bulletComponent.cmake +19 -0
- share/dart/cmake/dart_collision-bulletTargets-release.cmake +19 -0
- share/dart/cmake/dart_collision-bulletTargets.cmake +122 -0
- share/dart/cmake/dart_collision-odeComponent.cmake +19 -0
- share/dart/cmake/dart_collision-odeTargets-release.cmake +19 -0
- share/dart/cmake/dart_collision-odeTargets.cmake +122 -0
- share/dart/cmake/dart_dartComponent.cmake +19 -0
- share/dart/cmake/dart_dartTargets-release.cmake +19 -0
- share/dart/cmake/dart_dartTargets.cmake +125 -0
- share/dart/cmake/dart_external-odelcpsolverComponent.cmake +19 -0
- share/dart/cmake/dart_external-odelcpsolverTargets-release.cmake +19 -0
- share/dart/cmake/dart_external-odelcpsolverTargets.cmake +106 -0
- share/dart/cmake/dart_gui-osgComponent.cmake +19 -0
- share/dart/cmake/dart_gui-osgTargets-release.cmake +19 -0
- share/dart/cmake/dart_gui-osgTargets.cmake +122 -0
- share/dart/cmake/dart_optimizer-ipoptComponent.cmake +19 -0
- share/dart/cmake/dart_optimizer-ipoptTargets-release.cmake +19 -0
- share/dart/cmake/dart_optimizer-ipoptTargets.cmake +123 -0
- share/dart/cmake/dart_optimizer-nloptComponent.cmake +19 -0
- share/dart/cmake/dart_optimizer-nloptTargets-release.cmake +19 -0
- share/dart/cmake/dart_optimizer-nloptTargets.cmake +123 -0
- share/dart/cmake/dart_utils-urdfComponent.cmake +19 -0
- share/dart/cmake/dart_utils-urdfTargets-release.cmake +19 -0
- share/dart/cmake/dart_utils-urdfTargets.cmake +122 -0
- share/dart/cmake/dart_utilsComponent.cmake +19 -0
- share/dart/cmake/dart_utilsTargets-release.cmake +19 -0
- share/dart/cmake/dart_utilsTargets.cmake +122 -0
- share/dart/package.xml +42 -0
- share/doc/dart/data/c3d/nick_freeform_001.c3d +0 -0
- share/doc/dart/data/c3d/squat.c3d +0 -0
- share/doc/dart/data/dof/RHand.dof +205 -0
- share/doc/dart/data/dof/fixedHand.dof +205 -0
- share/doc/dart/data/dof/init_Tpose.dof +240 -0
- share/doc/dart/data/dof/same.dof +1003 -0
- share/doc/dart/data/dof/simMotion.dof +1817 -0
- share/doc/dart/data/dof/simMotion1.dof +1355 -0
- share/doc/dart/data/etc/fort.4 +43 -0
- share/doc/dart/data/humanJointLimits/neuralnets/net-larm +0 -0
- share/doc/dart/data/humanJointLimits/neuralnets/net-lleg +0 -0
- share/doc/dart/data/mjcf/openai/LICENSE.md +36 -0
- share/doc/dart/data/mjcf/openai/ant.xml +81 -0
- share/doc/dart/data/mjcf/openai/half_cheetah.xml +96 -0
- share/doc/dart/data/mjcf/openai/hopper.xml +50 -0
- share/doc/dart/data/mjcf/openai/humanoid.xml +121 -0
- share/doc/dart/data/mjcf/openai/humanoidstandup.xml +121 -0
- share/doc/dart/data/mjcf/openai/inverted_double_pendulum.xml +47 -0
- share/doc/dart/data/mjcf/openai/inverted_pendulum.xml +27 -0
- share/doc/dart/data/mjcf/openai/point.xml +31 -0
- share/doc/dart/data/mjcf/openai/pusher.xml +91 -0
- share/doc/dart/data/mjcf/openai/reacher.xml +39 -0
- share/doc/dart/data/mjcf/openai/robotics/fetch/pick_and_place.xml +35 -0
- share/doc/dart/data/mjcf/openai/robotics/fetch/push.xml +32 -0
- share/doc/dart/data/mjcf/openai/robotics/fetch/reach.xml +26 -0
- share/doc/dart/data/mjcf/openai/robotics/fetch/robot.xml +123 -0
- share/doc/dart/data/mjcf/openai/robotics/fetch/shared.xml +66 -0
- share/doc/dart/data/mjcf/openai/robotics/fetch/slide.xml +32 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/.get +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/base_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/bellows_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/elbow_flex_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/estop_link.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/forearm_roll_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/gripper_link.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/head_pan_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/head_tilt_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/l_wheel_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/laser_link.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/r_wheel_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/shoulder_lift_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/shoulder_pan_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/torso_fixed_link.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/torso_lift_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/upperarm_roll_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/wrist_flex_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/wrist_roll_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/textures/block.png +0 -0
- share/doc/dart/data/mjcf/openai/robotics/textures/block_hidden.png +0 -0
- share/doc/dart/data/mjcf/openai/striker.xml +101 -0
- share/doc/dart/data/mjcf/openai/swimmer.xml +39 -0
- share/doc/dart/data/mjcf/openai/thrower.xml +127 -0
- share/doc/dart/data/mjcf/openai/walker2d.xml +62 -0
- share/doc/dart/data/mjcf/test/default.xml +17 -0
- share/doc/dart/data/mjcf/test/include_default.xml +8 -0
- share/doc/dart/data/mjcf/test/include_main.xml +12 -0
- share/doc/dart/data/obj/Body_Hip.obj +22830 -0
- share/doc/dart/data/obj/BoxSmall.obj +23 -0
- share/doc/dart/data/obj/foot.obj +10970 -0
- share/doc/dart/data/other/torus1.path +11991 -0
- share/doc/dart/data/other/torus1.tris +5329 -0
- share/doc/dart/data/other/torus2.path +11991 -0
- share/doc/dart/data/other/torus2.tris +12961 -0
- share/doc/dart/data/screencap/.KEEP +0 -0
- share/doc/dart/data/sdf/atlas/atlas_v3.urdf +914 -0
- share/doc/dart/data/sdf/atlas/atlas_v3_no_head.sdf +1541 -0
- share/doc/dart/data/sdf/atlas/atlas_v3_no_head.urdf +914 -0
- share/doc/dart/data/sdf/atlas/atlas_v3_no_head_soft_feet.sdf +1567 -0
- share/doc/dart/data/sdf/atlas/ground.urdf +28 -0
- share/doc/dart/data/sdf/atlas/head.dae +8607 -0
- share/doc/dart/data/sdf/atlas/head.stl +0 -0
- share/doc/dart/data/sdf/atlas/head_camera.dae +2326 -0
- share/doc/dart/data/sdf/atlas/head_camera.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_clav.dae +1278 -0
- share/doc/dart/data/sdf/atlas/l_clav.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_farm.dae +1204 -0
- share/doc/dart/data/sdf/atlas/l_farm.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_foot.dae +1330 -0
- share/doc/dart/data/sdf/atlas/l_foot.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_hand.dae +964 -0
- share/doc/dart/data/sdf/atlas/l_hand.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_larm.dae +1378 -0
- share/doc/dart/data/sdf/atlas/l_larm.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_lglut.dae +897 -0
- share/doc/dart/data/sdf/atlas/l_lglut.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_lleg.dae +6660 -0
- share/doc/dart/data/sdf/atlas/l_lleg.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_scap.dae +1531 -0
- share/doc/dart/data/sdf/atlas/l_scap.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_talus.dae +374 -0
- share/doc/dart/data/sdf/atlas/l_talus.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_uarm.dae +1204 -0
- share/doc/dart/data/sdf/atlas/l_uarm.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_uglut.dae +398 -0
- share/doc/dart/data/sdf/atlas/l_uglut.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_uleg.dae +9087 -0
- share/doc/dart/data/sdf/atlas/l_uleg.stl +0 -0
- share/doc/dart/data/sdf/atlas/ltorso.dae +614 -0
- share/doc/dart/data/sdf/atlas/ltorso.stl +0 -0
- share/doc/dart/data/sdf/atlas/mtorso.dae +266 -0
- share/doc/dart/data/sdf/atlas/mtorso.stl +0 -0
- share/doc/dart/data/sdf/atlas/pelvis.dae +8727 -0
- share/doc/dart/data/sdf/atlas/pelvis.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_clav.dae +1278 -0
- share/doc/dart/data/sdf/atlas/r_clav.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_farm.dae +1204 -0
- share/doc/dart/data/sdf/atlas/r_farm.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_foot.dae +1330 -0
- share/doc/dart/data/sdf/atlas/r_foot.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_hand.dae +904 -0
- share/doc/dart/data/sdf/atlas/r_hand.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_larm.dae +1378 -0
- share/doc/dart/data/sdf/atlas/r_larm.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_lglut.dae +897 -0
- share/doc/dart/data/sdf/atlas/r_lglut.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_lleg.dae +6661 -0
- share/doc/dart/data/sdf/atlas/r_lleg.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_scap.dae +1531 -0
- share/doc/dart/data/sdf/atlas/r_scap.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_talus.dae +374 -0
- share/doc/dart/data/sdf/atlas/r_talus.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_uarm.dae +1144 -0
- share/doc/dart/data/sdf/atlas/r_uarm.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_uglut.dae +398 -0
- share/doc/dart/data/sdf/atlas/r_uglut.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_uleg.dae +9087 -0
- share/doc/dart/data/sdf/atlas/r_uleg.stl +0 -0
- share/doc/dart/data/sdf/atlas/utorso.dae +28342 -0
- share/doc/dart/data/sdf/atlas/utorso.stl +0 -0
- share/doc/dart/data/sdf/atlas/utorso_mod.dae +16508 -0
- share/doc/dart/data/sdf/atlas/utorso_mod.stl +0 -0
- share/doc/dart/data/sdf/atlas/utorso_pack.dae +8521 -0
- share/doc/dart/data/sdf/atlas/utorso_pack.stl +0 -0
- share/doc/dart/data/sdf/benchmark.world +2510 -0
- share/doc/dart/data/sdf/double_pendulum.world +168 -0
- share/doc/dart/data/sdf/double_pendulum_with_base.world +263 -0
- share/doc/dart/data/sdf/empty.world +13 -0
- share/doc/dart/data/sdf/ground.world +48 -0
- share/doc/dart/data/sdf/materials/textures/atlas_cage_and_camera_diffuse_flat.jpg +0 -0
- share/doc/dart/data/sdf/materials/textures/drc_extremities_diffuse.jpg +0 -0
- share/doc/dart/data/sdf/materials/textures/drc_labels_1.jpg +0 -0
- share/doc/dart/data/sdf/materials/textures/drc_torso_head_diffuse.jpg +0 -0
- share/doc/dart/data/sdf/materials/textures/extremities_diffuse_unplugged.jpg +0 -0
- share/doc/dart/data/sdf/materials/textures/right_leg_diffuse_unplugged.jpg +0 -0
- share/doc/dart/data/sdf/materials/textures/torso_diffuse_unplugged.jpg +0 -0
- share/doc/dart/data/sdf/quad.sdf +867 -0
- share/doc/dart/data/sdf/test/force_torque_test.world +173 -0
- share/doc/dart/data/sdf/test/force_torque_test2.world +214 -0
- share/doc/dart/data/sdf/test/issue1193_revolute_test.sdf +70 -0
- share/doc/dart/data/sdf/test/issue1193_revolute_with_offset_test.sdf +70 -0
- share/doc/dart/data/sdf/test/issue1624_cubes.sdf +5037 -0
- share/doc/dart/data/sdf/test/single_bodynode_skeleton.world +55 -0
- share/doc/dart/data/sdf/test/test_issue1583.model +45 -0
- share/doc/dart/data/sdf/test/test_issue1596.model +182 -0
- share/doc/dart/data/sdf/test/test_skeleton_joint.world +278 -0
- share/doc/dart/data/skel/biped.skel +850 -0
- share/doc/dart/data/skel/bullet_collision.skel +174 -0
- share/doc/dart/data/skel/chain.skel +212 -0
- share/doc/dart/data/skel/cube.skel +71 -0
- share/doc/dart/data/skel/cubes.skel +137 -0
- share/doc/dart/data/skel/empty.skel +10 -0
- share/doc/dart/data/skel/freeChain.skel +212 -0
- share/doc/dart/data/skel/fullbody1.skel +1177 -0
- share/doc/dart/data/skel/ground.skel +31 -0
- share/doc/dart/data/skel/joint_limit.skel +123 -0
- share/doc/dart/data/skel/kima/abdomen.dae +18933 -0
- share/doc/dart/data/skel/kima/head.dae +34634 -0
- share/doc/dart/data/skel/kima/kima_human_edited.skel +933 -0
- share/doc/dart/data/skel/kima/kima_human_left_arm.skel +323 -0
- share/doc/dart/data/skel/kima/kima_human_left_leg.skel +327 -0
- share/doc/dart/data/skel/kima/l-clavicle.dae +20111 -0
- share/doc/dart/data/skel/kima/l-foot.dae +28208 -0
- share/doc/dart/data/skel/kima/pelvis.dae +35919 -0
- share/doc/dart/data/skel/kima/r-clavicle.dae +20090 -0
- share/doc/dart/data/skel/kima/thorax.dae +47337 -0
- share/doc/dart/data/skel/mesh_collision.skel +137 -0
- share/doc/dart/data/skel/shapes.skel +378 -0
- share/doc/dart/data/skel/skateboard.skel +222 -0
- share/doc/dart/data/skel/softBodies.skel +284 -0
- share/doc/dart/data/skel/soft_cubes.skel +134 -0
- share/doc/dart/data/skel/soft_open_chain.skel +241 -0
- share/doc/dart/data/skel/sphere.skel +74 -0
- share/doc/dart/data/skel/spheres.skel +118 -0
- share/doc/dart/data/skel/test/SimplePendulum.skel +141 -0
- share/doc/dart/data/skel/test/ball_joints.skel +49 -0
- share/doc/dart/data/skel/test/box_stacking.skel +346 -0
- share/doc/dart/data/skel/test/boxes.skel +52 -0
- share/doc/dart/data/skel/test/chainwhipa.skel +193 -0
- share/doc/dart/data/skel/test/collision_of_prescribed_joints_test.skel +249 -0
- share/doc/dart/data/skel/test/dof_attribute_test.skel +206 -0
- share/doc/dart/data/skel/test/double_pendulum.skel +76 -0
- share/doc/dart/data/skel/test/double_pendulum_ball_joint.skel +76 -0
- share/doc/dart/data/skel/test/double_pendulum_euler_joint.skel +78 -0
- share/doc/dart/data/skel/test/double_pendulum_with_base.skel +1390 -0
- share/doc/dart/data/skel/test/drop.skel +116 -0
- share/doc/dart/data/skel/test/drop_BENCHMARK.skel +10 -0
- share/doc/dart/data/skel/test/drop_unrotated_box.skel +156 -0
- share/doc/dart/data/skel/test/empty.skel +10 -0
- share/doc/dart/data/skel/test/file_info_world_test.skel +1177 -0
- share/doc/dart/data/skel/test/free_joints.skel +49 -0
- share/doc/dart/data/skel/test/gazebo/drop_test.skel +161 -0
- share/doc/dart/data/skel/test/gazebo/force_torque_test.skel +138 -0
- share/doc/dart/data/skel/test/gazebo/force_torque_test2.skel +171 -0
- share/doc/dart/data/skel/test/hybrid_dynamics_test.skel +172 -0
- share/doc/dart/data/skel/test/joint_actuator_type_test.skel +185 -0
- share/doc/dart/data/skel/test/joint_dynamics_elements_test.skel +103 -0
- share/doc/dart/data/skel/test/joint_friction_test.skel +80 -0
- share/doc/dart/data/skel/test/joint_limit_test.skel +80 -0
- share/doc/dart/data/skel/test/planar_joint.skel +167 -0
- share/doc/dart/data/skel/test/serial_chain_BENCHMARK.skel +10 -0
- share/doc/dart/data/skel/test/serial_chain_ball_joint.skel +212 -0
- share/doc/dart/data/skel/test/serial_chain_ball_joint_20.skel +412 -0
- share/doc/dart/data/skel/test/serial_chain_ball_joint_40.skel +812 -0
- share/doc/dart/data/skel/test/serial_chain_eulerxyz_joint.skel +224 -0
- share/doc/dart/data/skel/test/serial_chain_revolute_joint.skel +244 -0
- share/doc/dart/data/skel/test/simple_tree_structure.skel +108 -0
- share/doc/dart/data/skel/test/simple_tree_structure_ball_joint.skel +108 -0
- share/doc/dart/data/skel/test/simple_tree_structure_euler_joint.skel +111 -0
- share/doc/dart/data/skel/test/single_pendulum.skel +55 -0
- share/doc/dart/data/skel/test/single_pendulum_ball_joint.skel +55 -0
- share/doc/dart/data/skel/test/single_pendulum_euler_joint.skel +56 -0
- share/doc/dart/data/skel/test/spheres.skel +118 -0
- share/doc/dart/data/skel/test/test_adaptive_deformable.skel +88 -0
- share/doc/dart/data/skel/test/test_articulated_bodies.skel +112 -0
- share/doc/dart/data/skel/test/test_articulated_bodies_10bodies.skel +401 -0
- share/doc/dart/data/skel/test/test_double_pendulum.skel +105 -0
- share/doc/dart/data/skel/test/test_drop_box.skel +87 -0
- share/doc/dart/data/skel/test/test_drop_box_offset.skel +87 -0
- share/doc/dart/data/skel/test/test_drop_low_stiffness.skel +86 -0
- share/doc/dart/data/skel/test/test_drop_sphere.skel +86 -0
- share/doc/dart/data/skel/test/test_shapes.skel +324 -0
- share/doc/dart/data/skel/test/test_single_body.skel +55 -0
- share/doc/dart/data/skel/test/test_single_pendulum.skel +55 -0
- share/doc/dart/data/skel/test/translational_joints.skel +49 -0
- share/doc/dart/data/skel/test/tree_structure.skel +428 -0
- share/doc/dart/data/skel/test/tree_structure_ball_joint.skel +441 -0
- share/doc/dart/data/skel/test/tree_structure_euler_joint.skel +441 -0
- share/doc/dart/data/skel/two_cubes.skel +118 -0
- share/doc/dart/data/skel/vehicle.skel +322 -0
- share/doc/dart/data/test/hello_world.txt +1 -0
- share/doc/dart/data/urdf/KR5/KR5 sixx R650.urdf +397 -0
- share/doc/dart/data/urdf/KR5/ground.urdf +28 -0
- share/doc/dart/data/urdf/KR5/meshes/base_link.STL +0 -0
- share/doc/dart/data/urdf/KR5/meshes/bicep.STL +0 -0
- share/doc/dart/data/urdf/KR5/meshes/elbow.STL +0 -0
- share/doc/dart/data/urdf/KR5/meshes/forearm.STL +0 -0
- share/doc/dart/data/urdf/KR5/meshes/palm.STL +0 -0
- share/doc/dart/data/urdf/KR5/meshes/shoulder.STL +0 -0
- share/doc/dart/data/urdf/KR5/meshes/wrist.STL +0 -0
- share/doc/dart/data/urdf/drchubo/CMakeLists.txt +5 -0
- share/doc/dart/data/urdf/drchubo/drchubo.urdf +1508 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LAP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LAR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LEP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LF1.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LF2.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LF3.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LHP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LHR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LHY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LKP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LSP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LSR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LSY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LWP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LWR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LWY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_NK1_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_NK2.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_NKY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RAP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RAR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_REP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RF1.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RF2.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RF3.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RHP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RHR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RHY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RKP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RSP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RSR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RSY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RWP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RWR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RWY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_TSY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_Torso_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/package.xml +11 -0
- share/doc/dart/data/urdf/test/invalid.urdf +1 -0
- share/doc/dart/data/urdf/test/invalid_mesh.stl +1 -0
- share/doc/dart/data/urdf/test/invalid_mesh.urdf +10 -0
- share/doc/dart/data/urdf/test/issue838.urdf +86 -0
- share/doc/dart/data/urdf/test/joint_properties.urdf +60 -0
- share/doc/dart/data/urdf/test/missing_mesh.urdf +10 -0
- share/doc/dart/data/urdf/test/missing_package.urdf +10 -0
- share/doc/dart/data/urdf/test/primitive_geometry.urdf +12 -0
- share/doc/dart/data/urdf/test/testWorld.urdf +9 -0
- share/doc/dart/data/urdf/wam/meshes/images/base_gray_128x.jpg +0 -0
- share/doc/dart/data/urdf/wam/meshes/images/forearm_256x.jpg +0 -0
- share/doc/dart/data/urdf/wam/meshes/images/lpu_128x.jpg +0 -0
- share/doc/dart/data/urdf/wam/meshes/images/shoulder_256x.jpg +0 -0
- share/doc/dart/data/urdf/wam/meshes/images/upperarm_128x.jpg +0 -0
- share/doc/dart/data/urdf/wam/meshes/images/wrist_yaw_128x.jpg +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam1.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam1.dae +187 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam1_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam2.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam2.dae +187 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam2_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam3.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam3.dae +187 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam3_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam4.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam4.dae +187 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam4_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam5.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam5.dae +187 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam5_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam6.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam6.dae +187 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam6_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam7.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam7.dae +137 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam7_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam_base.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam_base.dae +103 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam_base_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/wam.urdf +230 -0
- share/doc/dart/data/vsk/Nick01.vsk +398 -0
- share/doc/dart/data/vsk/SehoonVSK3.vsk +398 -0
- share/doc/dart/data/vsk/Yuting.vsk +398 -0
- share/doc/dart/data/vsk/test/empty.vsk +3 -0
- share/doc/dart/examples/CMakeLists.txt +44 -0
- share/doc/dart/examples/README.md +33 -0
- share/doc/dart/examples/add_delete_skels/CMakeLists.txt +19 -0
- share/doc/dart/examples/add_delete_skels/main.cpp +165 -0
- share/doc/dart/examples/atlas_puppet/CMakeLists.txt +19 -0
- share/doc/dart/examples/atlas_puppet/README.md +20 -0
- share/doc/dart/examples/atlas_puppet/main.cpp +930 -0
- share/doc/dart/examples/atlas_simbicon/AtlasSimbiconEventHandler.cpp +71 -0
- share/doc/dart/examples/atlas_simbicon/AtlasSimbiconEventHandler.hpp +56 -0
- share/doc/dart/examples/atlas_simbicon/AtlasSimbiconWidget.cpp +187 -0
- share/doc/dart/examples/atlas_simbicon/AtlasSimbiconWidget.hpp +85 -0
- share/doc/dart/examples/atlas_simbicon/AtlasSimbiconWorldNode.cpp +134 -0
- share/doc/dart/examples/atlas_simbicon/AtlasSimbiconWorldNode.hpp +75 -0
- share/doc/dart/examples/atlas_simbicon/CMakeLists.txt +19 -0
- share/doc/dart/examples/atlas_simbicon/Controller.cpp +996 -0
- share/doc/dart/examples/atlas_simbicon/Controller.hpp +203 -0
- share/doc/dart/examples/atlas_simbicon/README.md +20 -0
- share/doc/dart/examples/atlas_simbicon/State.cpp +674 -0
- share/doc/dart/examples/atlas_simbicon/State.hpp +336 -0
- share/doc/dart/examples/atlas_simbicon/StateMachine.cpp +222 -0
- share/doc/dart/examples/atlas_simbicon/StateMachine.hpp +134 -0
- share/doc/dart/examples/atlas_simbicon/TerminalCondition.cpp +111 -0
- share/doc/dart/examples/atlas_simbicon/TerminalCondition.hpp +102 -0
- share/doc/dart/examples/atlas_simbicon/main.cpp +102 -0
- share/doc/dart/examples/biped_stand/CMakeLists.txt +19 -0
- share/doc/dart/examples/biped_stand/README.md +20 -0
- share/doc/dart/examples/biped_stand/main.cpp +287 -0
- share/doc/dart/examples/box_stacking/CMakeLists.txt +19 -0
- share/doc/dart/examples/box_stacking/README.md +20 -0
- share/doc/dart/examples/box_stacking/main.cpp +417 -0
- share/doc/dart/examples/boxes/CMakeLists.txt +19 -0
- share/doc/dart/examples/boxes/README.md +20 -0
- share/doc/dart/examples/boxes/main.cpp +157 -0
- share/doc/dart/examples/drag_and_drop/CMakeLists.txt +19 -0
- share/doc/dart/examples/drag_and_drop/README.md +20 -0
- share/doc/dart/examples/drag_and_drop/main.cpp +101 -0
- share/doc/dart/examples/empty/CMakeLists.txt +19 -0
- share/doc/dart/examples/empty/README.md +20 -0
- share/doc/dart/examples/empty/main.cpp +164 -0
- share/doc/dart/examples/fetch/CMakeLists.txt +19 -0
- share/doc/dart/examples/fetch/README.md +20 -0
- share/doc/dart/examples/fetch/main.cpp +246 -0
- share/doc/dart/examples/hardcoded_design/CMakeLists.txt +19 -0
- share/doc/dart/examples/hardcoded_design/HardcodedEventHandler.cpp +71 -0
- share/doc/dart/examples/hardcoded_design/HardcodedEventHandler.hpp +56 -0
- share/doc/dart/examples/hardcoded_design/README.md +27 -0
- share/doc/dart/examples/hardcoded_design/main.cpp +186 -0
- share/doc/dart/examples/heightmap/CMakeLists.txt +19 -0
- share/doc/dart/examples/heightmap/README.md +20 -0
- share/doc/dart/examples/heightmap/main.cpp +460 -0
- share/doc/dart/examples/hello_world/CMakeLists.txt +19 -0
- share/doc/dart/examples/hello_world/README.md +20 -0
- share/doc/dart/examples/hello_world/main.cpp +114 -0
- share/doc/dart/examples/hubo_puppet/CMakeLists.txt +19 -0
- share/doc/dart/examples/hubo_puppet/README.md +20 -0
- share/doc/dart/examples/hubo_puppet/main.cpp +1464 -0
- share/doc/dart/examples/human_joint_limits/CMakeLists.txt +49 -0
- share/doc/dart/examples/human_joint_limits/HumanArmJointLimitConstraint.cpp +411 -0
- share/doc/dart/examples/human_joint_limits/HumanArmJointLimitConstraint.hpp +182 -0
- share/doc/dart/examples/human_joint_limits/HumanLegJointLimitConstraint.cpp +432 -0
- share/doc/dart/examples/human_joint_limits/HumanLegJointLimitConstraint.hpp +179 -0
- share/doc/dart/examples/human_joint_limits/main.cpp +157 -0
- share/doc/dart/examples/hybrid_dynamics/CMakeLists.txt +19 -0
- share/doc/dart/examples/hybrid_dynamics/README.md +17 -0
- share/doc/dart/examples/hybrid_dynamics/main.cpp +187 -0
- share/doc/dart/examples/imgui/CMakeLists.txt +19 -0
- share/doc/dart/examples/imgui/README.md +20 -0
- share/doc/dart/examples/imgui/main.cpp +289 -0
- share/doc/dart/examples/joint_constraints/CMakeLists.txt +19 -0
- share/doc/dart/examples/joint_constraints/Controller.cpp +110 -0
- share/doc/dart/examples/joint_constraints/Controller.hpp +105 -0
- share/doc/dart/examples/joint_constraints/README.md +22 -0
- share/doc/dart/examples/joint_constraints/main.cpp +242 -0
- share/doc/dart/examples/mixed_chain/CMakeLists.txt +19 -0
- share/doc/dart/examples/mixed_chain/README.md +35 -0
- share/doc/dart/examples/mixed_chain/main.cpp +188 -0
- share/doc/dart/examples/operational_space_control/CMakeLists.txt +19 -0
- share/doc/dart/examples/operational_space_control/README.md +20 -0
- share/doc/dart/examples/operational_space_control/main.cpp +338 -0
- share/doc/dart/examples/point_cloud/CMakeLists.txt +19 -0
- share/doc/dart/examples/point_cloud/README.md +20 -0
- share/doc/dart/examples/point_cloud/main.cpp +740 -0
- share/doc/dart/examples/rerun/CMakeLists.txt +19 -0
- share/doc/dart/examples/rigid_chain/CMakeLists.txt +19 -0
- share/doc/dart/examples/rigid_chain/README.md +19 -0
- share/doc/dart/examples/rigid_chain/main.cpp +110 -0
- share/doc/dart/examples/rigid_cubes/CMakeLists.txt +19 -0
- share/doc/dart/examples/rigid_cubes/README.md +91 -0
- share/doc/dart/examples/rigid_cubes/main.cpp +201 -0
- share/doc/dart/examples/rigid_loop/CMakeLists.txt +19 -0
- share/doc/dart/examples/rigid_loop/README.md +34 -0
- share/doc/dart/examples/rigid_loop/main.cpp +127 -0
- share/doc/dart/examples/rigid_shapes/CMakeLists.txt +19 -0
- share/doc/dart/examples/rigid_shapes/README.md +19 -0
- share/doc/dart/examples/rigid_shapes/main.cpp +250 -0
- share/doc/dart/examples/simple_frames/CMakeLists.txt +19 -0
- share/doc/dart/examples/simple_frames/README.md +27 -0
- share/doc/dart/examples/simple_frames/main.cpp +124 -0
- share/doc/dart/examples/simulation_event_handler/CMakeLists.txt +19 -0
- share/doc/dart/examples/simulation_event_handler/README.md +189 -0
- share/doc/dart/examples/simulation_event_handler/SimulationEventHandler.cpp +572 -0
- share/doc/dart/examples/simulation_event_handler/SimulationEventHandler.hpp +211 -0
- share/doc/dart/examples/simulation_event_handler/main.cpp +277 -0
- share/doc/dart/examples/soft_bodies/CMakeLists.txt +19 -0
- share/doc/dart/examples/soft_bodies/README.md +20 -0
- share/doc/dart/examples/soft_bodies/main.cpp +219 -0
- share/doc/dart/examples/speed_test/CMakeLists.txt +19 -0
- share/doc/dart/examples/speed_test/README.md +20 -0
- share/doc/dart/examples/speed_test/main.cpp +250 -0
- share/doc/dart/examples/tinkertoy/CMakeLists.txt +19 -0
- share/doc/dart/examples/tinkertoy/README.md +20 -0
- share/doc/dart/examples/tinkertoy/TinkertoyWidget.cpp +208 -0
- share/doc/dart/examples/tinkertoy/TinkertoyWidget.hpp +70 -0
- share/doc/dart/examples/tinkertoy/TinkertoyWorldNode.cpp +35 -0
- share/doc/dart/examples/tinkertoy/TinkertoyWorldNode.hpp +470 -0
- share/doc/dart/examples/tinkertoy/main.cpp +186 -0
- share/doc/dart/examples/vehicle/CMakeLists.txt +19 -0
- share/doc/dart/examples/vehicle/README.md +22 -0
- share/doc/dart/examples/vehicle/main.cpp +195 -0
- share/doc/dart/examples/wam_ikfast/CMakeLists.txt +22 -0
- share/doc/dart/examples/wam_ikfast/Helpers.cpp +148 -0
- share/doc/dart/examples/wam_ikfast/Helpers.hpp +46 -0
- share/doc/dart/examples/wam_ikfast/InputHandler.cpp +110 -0
- share/doc/dart/examples/wam_ikfast/InputHandler.hpp +73 -0
- share/doc/dart/examples/wam_ikfast/README.md +20 -0
- share/doc/dart/examples/wam_ikfast/WamWorld.cpp +46 -0
- share/doc/dart/examples/wam_ikfast/WamWorld.hpp +53 -0
- share/doc/dart/examples/wam_ikfast/ikfast/CMakeLists.txt +11 -0
- share/doc/dart/examples/wam_ikfast/ikfast/ikfast71.Transform6D.4_6_9_10_11_12_f8.cpp +14930 -0
- share/doc/dart/examples/wam_ikfast/osgWamIkFast.cpp +96 -0
- share/doc/dart/tutorials/CMakeLists.txt +12 -0
- share/doc/dart/tutorials/README.md +45 -0
- share/doc/dart/tutorials/tutorial_biped/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_biped/README +18 -0
- share/doc/dart/tutorials/tutorial_biped/main.cpp +374 -0
- share/doc/dart/tutorials/tutorial_biped_finished/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_biped_finished/README +18 -0
- share/doc/dart/tutorials/tutorial_biped_finished/main.cpp +532 -0
- share/doc/dart/tutorials/tutorial_collisions/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_collisions/README +18 -0
- share/doc/dart/tutorials/tutorial_collisions/main.cpp +506 -0
- share/doc/dart/tutorials/tutorial_collisions_finished/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_collisions_finished/README +18 -0
- share/doc/dart/tutorials/tutorial_collisions_finished/main.cpp +679 -0
- share/doc/dart/tutorials/tutorial_dominoes/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_dominoes/README +18 -0
- share/doc/dart/tutorials/tutorial_dominoes/main.cpp +394 -0
- share/doc/dart/tutorials/tutorial_dominoes_finished/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_dominoes_finished/README +18 -0
- share/doc/dart/tutorials/tutorial_dominoes_finished/main.cpp +559 -0
- share/doc/dart/tutorials/tutorial_multi_pendulum/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_multi_pendulum/README +18 -0
- share/doc/dart/tutorials/tutorial_multi_pendulum/main.cpp +443 -0
- share/doc/dart/tutorials/tutorial_multi_pendulum_finished/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_multi_pendulum_finished/README +18 -0
- share/doc/dart/tutorials/tutorial_multi_pendulum_finished/main.cpp +512 -0
|
@@ -0,0 +1,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:23:29</created>
|
|
10
|
+
<modified>2011-02-01T18:23:29</modified>
|
|
11
|
+
<unit name="meter" meter="1.0"/>
|
|
12
|
+
<up_axis>Y_UP</up_axis>
|
|
13
|
+
</asset>
|
|
14
|
+
<library_effects>
|
|
15
|
+
<effect id="baseM">
|
|
16
|
+
<profile_COMMON>
|
|
17
|
+
<newparam sid="base_gray_128x_jpg-surface">
|
|
18
|
+
<surface type="2D">
|
|
19
|
+
<init_from>base_gray_128x_jpg</init_from>
|
|
20
|
+
</surface>
|
|
21
|
+
</newparam>
|
|
22
|
+
<newparam sid="base_gray_128x_jpg-sampler">
|
|
23
|
+
<sampler2D>
|
|
24
|
+
<source>base_gray_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="base_gray_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="baseM-material" name="baseM">
|
|
81
|
+
<instance_effect url="#baseM"/>
|
|
82
|
+
</material>
|
|
83
|
+
</library_materials>
|
|
84
|
+
<library_geometries>
|
|
85
|
+
<geometry id="geom-wamUpperArmInShoulderLink" name="wamUpperArmInShoulderLink">
|
|
86
|
+
<mesh>
|
|
87
|
+
<source id="geom-wamUpperArmInShoulderLink-positions">
|
|
88
|
+
<float_array id="geom-wamUpperArmInShoulderLink-positions-array" count="522">-0.048541 -0.109 -0.035267 -0.057063 -0.109 -0.018541 -0.050402 -0.038625 -0.032552 -0.057171 -0.027636 -0.018208 -0.06 -0.109 -2.42028619368e-17 -0.0595 -0.022182 -0.007734 -0.06 -0.020791 1.1e-05 -0.059497 -0.022187 0.00775 -0.057063 -0.109 0.018541 -0.057165 -0.027648 0.018226 -0.050392 -0.038637 0.032568 -0.048541 -0.109 0.035267 -0.039036 -0.050085 0.045566 -0.035267 -0.109 0.048541 -0.026219 -0.057834 0.053968 -0.018541 -0.109 0.057063 -0.013092 -0.062136 0.058554 0.0 -0.109 0.06 0.0 -0.0635 0.06 0.013094 -0.062135 0.058554 0.018541 -0.109 0.057063 0.026224 -0.057832 0.053966 0.039042 -0.050079 0.04556 0.035267 -0.109 0.048541 0.050399 -0.038629 0.032557 0.048541 -0.109 0.035267 0.057169 -0.02764 0.018213 0.057063 -0.109 0.018541 0.059499 -0.022184 0.007739 0.06 -0.109 -2.42028619368e-17 0.06 -0.020791 -4.616529381e-18 0.059499 -0.022184 -0.007739 0.057063 -0.109 -0.018541 0.057169 -0.02764 -0.018213 0.048541 -0.109 -0.035267 0.050399 -0.038628 -0.032557 0.035267 -0.109 -0.048541 0.039042 -0.050079 -0.04556 0.026224 -0.057832 -0.053966 0.018541 -0.109 -0.057063 0.013094 -0.062135 -0.058554 0.0 -0.109 -0.06 0.0 -0.0635 -0.06 -0.013095 -0.062135 -0.058554 -0.018541 -0.109 -0.057063 -0.026227 -0.057831 -0.053965 -0.035267 -0.109 -0.048541 -0.039045 -0.050077 -0.045557 -0.06 -0.020791 1.1e-05 -0.0595 -0.022182 -0.007734 -0.057171 -0.027636 -0.018208 -0.050402 -0.038625 -0.032552 -0.039045 -0.050077 -0.045557 -0.026227 -0.057831 -0.053965 -0.013095 -0.062135 -0.058554 0.013094 -0.062135 -0.058554 0.026224 -0.057832 -0.053966 0.039042 -0.050079 -0.04556 0.050399 -0.038628 -0.032557 0.057169 -0.02764 -0.018213 0.059499 -0.022184 -0.007739 0.06 -0.020791 -4.616529381e-18 0.059499 -0.022184 0.007739 0.057169 -0.02764 0.018213 0.050399 -0.038629 0.032557 0.039042 -0.050079 0.04556 0.026224 -0.057832 0.053966 0.013094 -0.062135 0.058554 -0.059497 -0.022187 0.00775 -0.057165 -0.027648 0.018226 -0.050392 -0.038637 0.032568 -0.039036 -0.050085 0.045566 -0.026219 -0.057834 0.053968 -0.013092 -0.062136 0.058554 0.019635 -0.060388 -0.06 -0.019634 -0.060388 -0.06 0.060388 -0.019634 -0.06 0.062717 -0.009943 -0.06 0.0635 1.33226762955e-17 -0.06 0.062718 0.009935 -0.06 0.060389 0.019631 -0.06 0.051379 0.037314 -0.06 0.044903 0.044899 -0.06 0.037322 0.051374 -0.06 0.019637 0.060387 -0.06 2.3e-05 0.0635 -0.06 -0.019591 0.060402 -0.06 -0.037282 0.051403 -0.06 -0.051335 0.037375 -0.06 -0.056544 0.028896 -0.06 -0.060374 0.019678 -0.06 -0.062714 0.009957 -0.06 -0.0635 1.33226762955e-17 -0.06 -0.062717 -0.009943 -0.06 -0.060388 -0.019635 -0.06 -0.051368 -0.037329 -0.06 -0.037329 -0.051369 -0.06 -0.009943 -0.062717 -0.06 0.0 -0.0635 -0.06 0.009943 -0.062717 -0.06 0.037329 -0.051368 -0.06 0.051369 -0.037329 -0.06 0.0418 -0.109 -0.015263 0.043819 -0.109 -0.007757 0.0445 -0.109 -2.42028619368e-17 0.041821 -0.109 0.015205 0.034109 -0.109 0.028578 0.028586 -0.109 0.034103 0.022189 -0.109 0.038572 0.015128 -0.109 0.041849 0.007622 -0.109 0.043842 -0.007806 -0.109 0.04381 -0.022279 -0.109 0.038521 -0.034103 -0.109 0.028585 -0.0418 -0.109 0.015263 -0.043819 -0.109 0.007757 -0.0445 -0.109 -2.42028619368e-17 -0.041821 -0.109 -0.015205 -0.034109 -0.109 -0.028578 -0.028586 -0.109 -0.034103 -0.022189 -0.109 -0.038572 -0.015128 -0.109 -0.041849 -0.007622 -0.109 -0.043842 0.007806 -0.109 -0.04381 0.022279 -0.109 -0.038521 0.034103 -0.109 -0.028585 -0.035267 -0.109 -0.048541 -0.048541 -0.109 -0.035267 -0.057063 -0.109 -0.018541 -0.06 -0.109 -2.42028619368e-17 -0.057063 -0.109 0.018541 -0.048541 -0.109 0.035267 -0.035267 -0.109 0.048541 -0.018541 -0.109 0.057063 0.0 -0.109 0.06 0.018541 -0.109 0.057063 0.035267 -0.109 0.048541 0.048541 -0.109 0.035267 0.057063 -0.109 0.018541 0.06 -0.109 -2.42028619368e-17 0.057063 -0.109 -0.018541 0.048541 -0.109 -0.035267 0.035267 -0.109 -0.048541 0.018541 -0.109 -0.057063 0.0 -0.109 -0.06 -0.018541 -0.109 -0.057063 0.019591 0.060402 0.06 -2.3e-05 0.0635 0.06 -0.019637 0.060387 0.06 -0.037322 0.051374 0.06 -0.044903 0.044899 0.06 -0.051379 0.037314 0.06 -0.060389 0.019631 0.06 -0.062718 0.009935 0.06 -0.0635 -1.33226762955e-17 0.06 -0.062717 -0.009943 0.06 -0.060388 -0.019634 0.06 -0.051369 -0.037329 0.06 -0.037329 -0.051368 0.06 -0.019635 -0.060388 0.06 -0.009943 -0.062717 0.06 0.0 -0.0635 0.06 0.009943 -0.062717 0.06 0.019634 -0.060388 0.06 0.037329 -0.051369 0.06 0.051368 -0.037329 0.06 0.060388 -0.019635 0.06 0.062717 -0.009943 0.06 0.0635 -1.33226762955e-17 0.06 0.062714 0.009957 0.06 0.060374 0.019678 0.06 0.056544 0.028896 0.06 0.051335 0.037375 0.06 0.037282 0.051403 0.06</float_array>
|
|
89
|
+
<technique_common>
|
|
90
|
+
<accessor source="#geom-wamUpperArmInShoulderLink-positions-array" count="174" 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-wamUpperArmInShoulderLink-normals">
|
|
98
|
+
<float_array id="geom-wamUpperArmInShoulderLink-normals-array" count="522">-0.8096051 -0.006566366 -0.5869382 -0.9515691 -0.002937479 -0.3074208 -0.8644636 0.001520225 -0.5026932 -0.9607369 -0.007863757 -0.2773495 -0.9999857 -0.004794546 -0.002350109 -0.9920482 -0.005487832 -0.1257388 -1.0 -2.54972e-08 0.000204905 -0.992266 -0.000760881 0.1241274 -0.9508112 -0.006439382 0.3097039 -0.9582792 -9.47554000001e-05 0.2858339 -0.8643396 0.001495829 0.5029062 -0.8096096 -0.006558748 0.5869322 -0.6872231 0.004761545 0.7264308 -0.5888916 -0.01015191 0.8081483 -0.4649204 0.005304691 0.8853367 -0.3087231 -0.01191946 0.9510772 -0.2307995 0.002662209 0.9729977 -1.95202e-06 -0.01105032 0.999939 -6.36294e-06 -2.22044604925e-16 1.0 0.2308324 0.002658409 0.9729899 0.3171925 -0.001788906 0.9483595 0.4875131 -0.0203694 0.8728781 0.6952267 -0.01721529 0.7185844 0.5856571 0.01088251 0.810486 0.8666246 -0.008192584 0.4988935 0.8075102 0.004294183 0.5898381 0.9580826 -0.002108685 0.2864845 0.9501726 -0.003512967 0.3117042 0.9922895 -0.000761146 0.1239392 0.9999691 -0.007871515 -1.74782743834e-18 1.0 0.0 0.0 0.9922895 -0.000761146 -0.1239392 0.9501726 -0.003512967 -0.3117042 0.958082 -0.002108731 -0.2864867 0.8108428 -0.003767489 -0.5852517 0.8676881 -0.003766283 -0.4970948 0.5888941 -0.01015405 -0.8081464 0.687333 0.004779212 -0.7263266 0.4650352 0.00531018 -0.8852763 0.3087225 -0.01192668 -0.9510774 0.2308324 0.002658409 -0.9729899 1.02637e-06 -0.01105415 -0.9999389 4.4195e-06 2.22044604925e-16 -1.0 -0.2308423 0.002655792 -0.9729875 -0.3087208 -0.01193239 -0.9510779 -0.4650989 0.005311163 -0.8852429 -0.5888965 -0.0101573 -0.8081446 -0.6873916 0.00478797 -0.7262712 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -0.9999999 -2.22044582721e-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 -0.9999999 -2.22044582721e-16 0.0 -1.0 -2.22044604925e-16 0.0 -0.9999999 -2.22044582721e-16 0.0 -1.0 -2.22044604925e-16 0.0 -0.9999999 -2.22044582721e-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 -0.9999999 -2.22044582721e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -1.0 -2.22044604925e-16 0.0 -0.9999999 -2.22044582721e-16 0.0 -1.0 -2.22044604925e-16 0.0 -0.9999999 -2.22044582721e-16 0.0 -1.0 -2.22044604925e-16 0.0 -0.9999999 -2.22044582721e-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.3092143 0.9509924 5.56223000002e-05 0.000411146 0.9999999 1.57607000222e-07 -0.000333268 0.9999999 -1.04287999778e-07 0.308494 0.9512263 -5.80551999998e-05 0.5556075 0.8314447 4.13633000002e-05 0.5854579 0.8106969 0.00308754 -0.3084931 0.9512266 -5.53524999998e-05 -0.3092133 0.9509927 5.77787000002e-05 -0.5854902 0.8106734 -0.003144973 -0.5556407 0.8314225 1.57304000002e-05 0.707153 0.7070606 0.000334237 0.7859615 0.6182675 0.003126601 0.8303711 0.557202 -0.003127125 -0.707153 0.7070606 -0.000334237 -0.7859615 0.6182675 -0.003126601 -0.8303711 0.557202 0.003127125 0.8905162 0.4549514 -0.000337108 0.9388827 0.3442235 -0.003085709 0.9507922 0.3098293 -2.16897999999e-05 -0.8905162 0.4549514 0.000337108 -0.9388782 0.3442355 0.003105042 -0.9507881 0.3098415 2.49260000007e-06 -0.9876232 0.1568453 -2.33228e-05 -0.9876789 0.1564937 4.74824000003e-06 -1.0 8.85137e-05 -8.90752e-06 -1.0 -1.84272e-05 -4.09166034387e-21 -0.9876682 -0.1565617 -3.47636808229e-17 -0.9876664 -0.1565727 9.25347999965e-07 0.9876779 0.1565005 2.34318e-05 0.9876221 0.1568521 -4.79494999997e-06 1.0 -1.24585e-05 8.92623e-06 1.0 9.44468e-05 2.09714023924e-20 0.9876664 -0.1565733 -3.47662565403e-17 0.9876681 -0.1565623 -9.25262000035e-07 -0.937628 -0.3476371 -0.001481193 -0.9376221 -0.3476533 0.001449605 -0.94732 -0.3202887 3.59158999993e-06 0.9376285 -0.3476357 -0.001463142 0.9376258 -0.3476431 0.001474867 0.947327 -0.3202679 -2.63921000007e-06 0.2262234 -0.9727998 -0.04983583 0.09852619 -0.9788525 0.1792773 0.316466 -0.947866 0.03740913 2.9952e-06 -0.9743723 0.2249417 0.4501731 -0.8913007 -0.05410258 -0.09852442 -0.9788636 0.1792175 -0.2262532 -0.9727832 -0.05002273 -0.3164806 -0.9478648 0.03731433 -0.4501626 -0.8913041 -0.05413432 -0.2262129 -0.9727862 0.05014529 -0.09854609 -0.9789499 -0.1787336 -0.3165055 -0.9478564 -0.03731614 -6.13563e-06 -0.9744284 -0.2246978 -0.450124 -0.8913244 0.05412114 0.09852947 -0.9788534 -0.1792706 0.2262441 -0.9727924 0.04988415 0.316466 -0.9478679 -0.03735597 0.4501342 -0.8913209 0.05409441 -0.9384896 -0.3453064 0.00086839 -0.9080603 -0.4187134 0.01026697 -0.8338097 -0.5518313 0.01561295 -0.8140368 -0.5808116 0.001393075 -0.6598977 -0.7513368 0.005299924 -0.5966852 -0.8022372 0.01955306 0.9386376 -0.3449042 0.000855559 0.8338736 -0.5517347 0.01560874 0.9080814 -0.4186682 0.01025025 0.8140073 -0.5808529 0.001457664 0.6599854 -0.7512601 0.005238194 0.5966929 -0.8022335 0.01946758 0.9386457 -0.3448818 -0.000860927 0.9080826 -0.4186652 -0.01025962 0.8338748 -0.5517333 -0.01559258 0.8140185 -0.5808372 -0.001424614 0.659974 -0.7512701 -0.005246509 0.5966888 -0.8022354 -0.01951185 -0.9386886 -0.3447654 -0.000852655 -0.814006 -0.5808547 -0.001478903 -0.8339067 -0.5516851 -0.01559769 -0.6600333 -0.751218 -0.005241809 -0.596694 -0.8022318 -0.01949964 -0.9080976 -0.4186334 -0.01024445</float_array>
|
|
99
|
+
<technique_common>
|
|
100
|
+
<accessor source="#geom-wamUpperArmInShoulderLink-normals-array" count="174" 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-wamUpperArmInShoulderLink-map1">
|
|
108
|
+
<float_array id="geom-wamUpperArmInShoulderLink-map1-array" count="642">0.8904277 0.1791129 0 0.2631541 0.7580146 0 0.2631541 0.806017 0 0.06118242 0.7658064 0 0.0296447 0.8069728 0 0.2631541 0.8592286 0 0.01399208 0.8370325 0 0.01 0.8592601 0 0.01400643 0.8814706 0 0.2631541 0.9124401 0 0.02967915 0.911536 0 0.8880785 0.540347 0 0.06121686 0.9526966 0 0.2631541 0.9604425 0 0.09407188 0.99 0 0.09404891 0.7284829 0 0.5278985 0.7433484 0 0.3587991 0.7325143 0 0.3810497 0.7693011 0 0.5278985 0.7913508 0 0.393399 0.8069834 0 0.5278985 0.8445624 0 0.3973165 0.8445624 0 0.393399 0.8821441 0 0.5278985 0.8977738 0 0.3810468 0.9198321 0 0.5278985 0.9457763 0 0.3587933 0.9566188 0 0.6482561 0.3712571 0 0.8173383 0.3820739 0 0.6704953 0.4080411 0 0.8173383 0.4300765 0 0.6828417 0.4457147 0 0.8173383 0.4832879 0 0.6867563 0.4832879 0 0.6828389 0.5208668 0 0.8173383 0.5364994 0 0.6704895 0.5585491 0 0.6482389 0.595336 0 0.8173383 0.5845019 0 0.02845942 0.3587933 0 0.0502164 0.3587933 0 0.1009712 0.3587933 0 0.1572621 0.3587933 0 0.213553 0.3587933 0 0.264325 0.3587933 0 0.3046562 0.3587933 0 0.1011032 0.7031855 0 0.8478892 0.3712571 0 0.8342034 0.540347 0 0.1573941 0.7031855 0 0.213685 0.7031855 0 0.2644398 0.7031855 0 0.2861968 0.7031855 0 0.01 0.7031855 0 0.05033119 0.7031855 0 0.06830411 0.2417731 0 0.05929114 0.2213675 0 0.05396327 0.1996642 0 0.0549045 0.1553647 0 0.07092316 0.1140577 0 0.08416922 0.09596873 0 0.1003566 0.08049228 0 0.1189492 0.06810602 0 0.1393661 0.05916678 0 0.1831392 0.05250258 0 0.2265053 0.06116717 0 0.2643925 0.08417205 0 0.2920567 0.1185877 0 0.3010696 0.1389933 0 0.3063976 0.1606966 0 0.3054563 0.2049962 0 0.2894377 0.2463031 0 0.2761916 0.2643921 0 0.2600042 0.2798685 0 0.2414117 0.2922548 0 0.2209947 0.301194 0 0.1772216 0.3078583 0 0.1338555 0.2991937 0 0.7881916 0.708174 0 0.3319574 0.9399688 0 0.3247491 0.7284829 0 0.09596829 0.2761888 0 0.3014627 0.302418 0 0.3333004 0.2589565 0 0.3501484 0.2077847 0 0.3503608 0.1539101 0 0.3339125 0.1026075 0 0.302418 0.05889812 0 0.2589565 0.0270604 0 0.2077847 0.01021239 0 0.1539101 0.01 0 0.1026075 0.02644829 0 0.05889812 0.05794285 0 0.0270604 0.1014043 0 0.01021239 0.1525762 0 0.01 0.2064507 0 0.02644829 0.2577533 0 0.05794285 0.3014627 0 0.1014043 0.3333004 0 0.1525762 0.3501484 0 0.2064507 0.3503608 0 0.2577533 0.3339125 0 0.631374 0.6742075 0 0.5985104 0.6368897 0 0.5669755 0.5957234 0 0.5513172 0.5656636 0 0.5473194 0.5434532 0 0.5513172 0.5212429 0 0.5669755 0.4911831 0 0.5985132 0.4500168 0 0.631374 0.412699 0 0.5439988 0.7156493 0 0.5161863 0.7156493 0 0.4876505 0.7156493 0 0.4591377 0.7156493 0 0.4313108 0.7156493 0 0.3805617 0.7156493 0 0.3587933 0.7156493 0 0.5947823 0.7156493 0 0.5947823 0.3712571 0 0.5440017 0.3712571 0 0.5161863 0.3712571 0 0.4876505 0.3712571 0 0.4590746 0.3712571 0 0.4311759 0.3712571 0 0.4047209 0.3712571 0 0.3803867 0.3712571 0 0.5473193 0.1822277 0 0.5513114 0.16 0 0.566964 0.1299403 0 0.5985017 0.08877397 0 0.6313683 0.05145047 0 0.5513257 0.2044381 0 0.1984221 0.2341107 0 0.1881775 0.1913253 0 0.1885505 0.1514041 0 0.6869998 0.863834 0 0.6881911 0.8239353 0 0.6998866 0.9159937 0 0.5669985 0.2345036 0 0.5985362 0.2756642 0 0.6313912 0.3129676 0 0.3803867 0.01 0 0.4047209 0.01 0 0.4311759 0.01 0 0.4590746 0.01 0 0.4876505 0.01 0 0.5161862 0.01 0 0.5440016 0.01 0 0.5947823 0.01 0 0.3587933 0.3543922 0 0.3805617 0.3543922 0 0.4313108 0.3543922 0 0.4591377 0.3543922 0 0.4876505 0.3543922 0 0.5161862 0.3543922 0 0.5439988 0.3543922 0 0.2068546 0.114638 0 0.2170939 0.1574215 0 0.21672 0.1973363 0 0.5947823 0.3543922 0 0.1526571 0.114638 0 0.1407585 0.156981 0 0.7884402 0.6537201 0 0.280019 0.9256531 0 0.6482562 0.2121098 0 0.6484023 0.01 0 0.6881545 0.2452372 0 0.6963679 0.01188189 0 0.7175772 0.262062 0 0.7495385 0.01396798 0 0.13957 0.1968698 0 0.114638 0.1318005 0 0.7396138 0.2669275 0 0.761964 0.2638035 0 0.5986386 0.9016213 0 0.802709 0.01605408 0 0.5447634 0.9016213 0 0.5584736 0.7325143 0 0.1299508 0.1802173 0 0.1383385 0.2067379 0 0.1469434 0.2339454 0 0.7642593 0.8757898 0 0.7578448 0.6687847 0 0.1782897 0.1676559 0 0.1610895 0.2154379 0 0.1877097 0.1414872 0 0.1973746 0.114638 0 0.7000998 0.7815861 0 0.6773823 0.847187 0 0.6943749 0.9009151 0 0.68577 0.8737077 0 0.6620695 0.7987702 0 0.2078969 0.2340997 0 0.2175618 0.2072505 0 0.2269818 0.1810818 0 0.2441819 0.1332998 0 0.9443028 0.1791129 0 0.9305804 0.01 0 0.7928162 0.9151443 0 0.7368817 0.613147 0 0.7938558 0.6122008 0 0.7425968 0.9574176 0 0.799571 0.9564714 0 0.7047242 0.6545861 0 0.7052113 0.9575145 0 0.648239 0.9564602 0 0.7115842 0.6132551 0 0.6546118 0.6122008 0 0.7926144 0.2493356 0 0.8506746 0.01793596 0 0.8349854 0.2194389 0 0.8735628 0.1880635 0</float_array>
|
|
109
|
+
<technique_common>
|
|
110
|
+
<accessor source="#geom-wamUpperArmInShoulderLink-map1-array" count="214" 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-wamUpperArmInShoulderLink-map1-textangents">
|
|
118
|
+
<float_array id="geom-wamUpperArmInShoulderLink-map1-textangents-array" count="642">0.005193153 -0.00402342 -0.9999294 0.003011272 -2.34259e-4 -0.9999899 -0.001425335 5.73006e-4 -0.9999811 0.007901099 -9.82238e-4 -0.999942 0.004794486 -7.74582e-7 -0.9999735 0.005550221 1.46865e-4 -0.9999613 2.54661e-8 1.51937e-7 -1 7.9991e-4 -2.64646e-4 -0.99999 0.006480598 8.95512e-4 -0.9999669 8.32289e-5 5.24741e-5 -0.9999999 -0.001400091 -5.67992e-4 -0.9999814 0.005190197 0.004014528 -0.9999298 -0.007207721 2.64157e-4 -0.9999739 -0.5796283 0.7995232 0.001032719 -0.7984073 0.5818131 -0.001573931 -0.7261593 0.6869672 1.32009e-4 0.00429736 0.009428506 -0.9998424 -0.002271434 -0.004798355 -0.9999064 0.001172686 -0.0076639 -0.9999685 0.001635747 0.01199977 -0.9998525 -9.82397e-4 -0.002502915 -0.9999468 -9.38983e-8 0.01104996 -0.999907 0 0 -1 9.82394e-4 -0.002498997 -0.9999468 0.001589361 0.002417372 -0.9997198 -0.002857236 0.02172676 -0.9994278 -0.006029659 0.01810764 -0.9993353 -0.002146203 -0.01497636 -0.9998788 -0.7797064 -0.5614802 0.1441542 -0.4842603 -0.8435906 0.1452473 -0.7058068 -0.6864181 0.1483324 -0.7734329 -0.5553373 0.2640344 -0.5625798 -0.7682535 0.2663512 -0.462262 -0.8073213 0.2636198 0.5802362 0.7941137 -0.03448561 0.2834244 0.9481143 -0.03607541 0.4964533 0.8629812 -0.0362605 0.3082998 0.9402168 -0.03743129 0.1235381 0.9893159 -0.03868849 -3.0638e-4 0.9920457 -0.03892144 0 0.9971471 -0.03912343 -0.1235956 0.9893008 -0.03872202 -0.3085605 0.9401705 -0.03718773 -0.2835665 0.9480483 -0.03642733 -0.5783375 0.801051 -0.03299968 -0.491044 0.8568786 -0.03271092 0.5777636 -0.8004644 6.00978e-4 0.7984058 -0.581816 -0.00157423 0.7260584 -0.68708 1.31775e-4 -0.004300605 -0.009428788 -0.9998421 0.002274311 0.004803074 -0.9999063 -0.001169342 0.007686333 -0.9999683 -0.722886 0.6842737 -0.02988086 -0.00163566 -0.01200739 -0.9998524 9.82667e-4 0.002498933 -0.9999468 1.56703e-7 -0.01105379 -0.999907 0 0 -1 -9.82365e-4 0.002496311 -0.9999468 0.001636107 -0.01201324 -0.9998523 -0.002275508 0.004803574 -0.9999062 0.004302566 -0.009431393 -0.999842 0.001167657 0.007697476 -0.9999683 0.7984045 0.5818187 0.001574705 0.5796351 0.7995198 -0.001033869 0.7260046 0.6871401 -1.31631e-4 -0.007247741 -2.67382e-4 -0.9999736 -0.9882942 0.15256 0 -0.9882942 0.1525603 0 -0.9882942 0.1525602 0 -0.9882941 0.1525605 0 -0.9882942 0.1525602 0 -0.9882942 0.1525603 0 -0.9882942 0.1525603 0 -0.9882942 0.15256 0 -0.9882942 0.1525599 0 -0.9882942 0.1525602 0 -0.9882941 0.1525604 0 -0.9882942 0.1525601 0 -0.9882942 0.1525598 0 -0.9882942 0.1525599 0 -0.9882942 0.1525601 0 -0.9882942 0.1525601 0 -0.9882942 0.15256 0 -0.9882942 0.1525598 0 -0.9882942 0.1525598 0 -0.9882942 0.1525601 0 -0.9882941 0.1525604 0 -0.9882941 0.1525607 0 -0.9882942 0.1525603 0 -0.9882942 0.1525601 0 -0.9882941 0.1525604 0 -0.9882942 0.1525603 0 -0.9882942 0.1525604 0 -0.9882942 0.15256 0 -0.9882942 0.1525602 0 -0.9882942 0.1525602 0 -0.9882942 0.1525602 0 -0.9882942 0.1525603 0 -0.9882942 0.1525602 0 -0.9882942 0.1525601 0 -0.9882942 0.15256 0 -0.9882942 0.1525602 0 -0.9882942 0.1525602 0 -0.9882942 0.1525602 0 -0.9882942 0.1525602 0 -0.9882942 0.1525602 0 -0.9882942 0.1525602 0 -0.9882942 0.1525602 0 -0.9882942 0.1525601 0 -0.9882942 0.1525601 0 -0.939264 -2.91204e-6 0.3054008 -0.9876964 -5.94134e-12 4.06088e-4 -0.9876963 -3.43281e-11 -3.29168e-4 -0.9394956 -3.03955e-6 0.3046896 -0.8256605 -1.63017e-6 0.5517422 -0.8031592 8.79546e-5 0.5800148 -0.9395709 -2.87042e-6 -0.304713 -0.9393393 -2.9961e-6 -0.3054242 -0.8026189 -5.36255e-5 -0.5796728 -0.8256632 4.80861e-10 -0.5517917 -0.7059693 -1.32798e-5 0.7060615 -0.6138439 -3.73508e-4 0.7803362 0.6159564 -1.17631e-4 -0.7830241 0.5544832 4.60496e-5 -0.8263198 0.7048753 -2.62581e-5 -0.7049673 -0.7059693 -1.32798e-5 -0.7060615 -0.6138439 -3.73508e-4 -0.7803362 -0.6159564 1.17631e-4 -0.7830241 -0.5544832 -4.60496e-5 -0.8263198 -0.7048753 2.62581e-5 -0.7049673 0.454016 1.15096e-7 -0.8886853 0.3425326 -4.78132e-5 -0.9342703 0.3088643 5.72685e-7 -0.9478306 -0.454016 -1.15096e-7 -0.8886853 -0.3423971 -5.31755e-5 -0.9338645 -0.3088805 -5.1209e-11 -0.947839 -0.1563615 -6.07695e-7 -0.9845769 -0.1560116 -1.23892e-7 -0.9846361 -8.82401e-5 -2.32763e-7 -0.996912 1.83704e-5 0 -0.9969151 0.156078 0 -0.9846172 0.156089 -2.42227e-8 -0.9846152 0.1560154 6.1693e-7 -0.9846166 0.1563654 1.2607e-7 -0.9845574 -1.242e-5 2.3415e-7 -0.9969093 9.41549e-5 0 -0.9969062 -0.1560894 0 -0.9846145 -0.1560786 2.42301e-8 -0.9846165 0.3458449 9.29721e-6 -0.9327942 0.3459728 -3.85102e-5 -0.9330897 0.3202563 4.14771e-7 -0.9472243 -0.3458434 8.76251e-6 -0.9327944 -0.345963 -4.18417e-5 -0.9330941 -0.3202362 -4.19933e-6 -0.9472331 -0.2704687 -0.9359438 -0.1108449 -0.3094087 -0.9121448 0.1359163 -0.3216176 -0.9331121 -0.0705523 -0.2958958 -0.9304779 0.2148074 -0.2691002 -0.9342882 -0.1926275 0.3458748 -0.8996104 0.1298943 0.3327162 -0.9185216 0.2120491 0.3072016 -0.9234618 -0.1189365 0.3571402 -0.9190335 -0.08306548 0.304387 -0.9193957 -0.2095744 0.270478 0.9359213 -0.1111423 0.3094066 0.9122559 0.1354103 0.3216231 0.9331036 -0.07066013 0.2959266 0.9305157 0.2145699 0.269123 0.9342896 -0.1926387 0.3458696 -0.8996226 -0.1299454 0.3327081 -0.9185847 -0.2118227 0.3072135 -0.9234885 0.1188051 0.357131 -0.9190464 0.08301576 0.3043957 -0.9194053 0.2095245 0.3451223 -1.61891e-5 -0.937989 0.4177945 -2.7894e-4 -0.9060607 0.5470218 -6.37492e-5 -0.8265408 0.5741292 -4.70449e-6 -0.8046712 0.749227 3.97844e-4 -0.6580475 0.7497471 -0.01625988 -0.6583868 0.793962 -0.01376038 -0.5901949 0.5727632 -0.01683116 -0.8027162 0.2434146 0.9409491 -0.2204281 0.2811093 0.9292729 -0.2317319 -0.3447167 -2.16929e-5 -0.9381272 -0.5469271 -6.50319e-5 -0.8266057 -0.4177513 -2.77831e-4 -0.906086 -0.5741751 -4.62488e-6 -0.804649 -0.7491544 3.9332e-4 -0.6581383 -0.572796 -0.01873986 -0.8026694 -0.7939492 -0.01566989 -0.5901509 -0.7496553 -0.01816241 -0.658449 0.3125099 -0.9131308 0.2546003 0.2739596 -0.9251073 0.2471251 -0.3446942 1.5133e-5 -0.9381351 -0.4177479 2.77615e-4 -0.9060862 -0.5469244 6.43979e-5 -0.8266051 -0.5741567 4.20039e-6 -0.8046561 -0.7491635 -3.94614e-4 -0.6581261 -0.7495025 -0.01885392 -0.6585529 -0.7934391 -0.02134908 -0.5906656 -0.5728018 -0.01827956 -0.8028021 -0.2433827 -0.9409651 -0.2203775 -0.2811222 -0.9292747 -0.2316955 0.3445769 1.44815e-5 -0.9381755 0.5741797 4.9342e-6 -0.8046518 0.5468794 6.52399e-5 -0.8266406 0.7491124 -3.93017e-4 -0.6581861 0.5728447 -0.01637309 -0.8028226 0.7934811 -0.019451 -0.5906581 0.7494844 -0.01695582 -0.6586286 0.3125082 -0.9131204 -0.2546362 0.2739474 -0.9251032 -0.2471501 0.4177168 2.7821e-4 -0.9061025</float_array>
|
|
119
|
+
<technique_common>
|
|
120
|
+
<accessor source="#geom-wamUpperArmInShoulderLink-map1-textangents-array" count="214" 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-wamUpperArmInShoulderLink-map1-texbinormals">
|
|
128
|
+
<float_array id="geom-wamUpperArmInShoulderLink-map1-texbinormals-array" count="642">0.586952 0.8096217 -2.09331e-4 0.3074201 0.9515736 7.02818e-4 0.5026935 0.8644647 -2.21167e-4 0.2773485 0.9607686 0.001247727 0.002350086 0.9999972 1.04932e-5 0.1257361 0.9920634 8.43595e-4 -2.04905e-4 1 1.51932e-7 -0.1241271 0.9922663 -3.61894e-4 -0.3097031 0.9508326 -0.001155618 -0.2858339 0.9582792 2.64952e-5 -0.5029065 0.8643408 2.1318e-4 -0.5869458 0.8096262 2.03917e-4 -0.7264106 0.6872396 0.005417445 -0.004696318 -0.004696318 0.9999779 -0.007266346 -0.007266346 0.9999472 0.003368216 0.003368216 0.9999887 -0.8082006 0.5889036 0.00207968 -0.8853496 0.4649259 -2.19887e-4 -0.7264454 0.6871969 -0.006118694 -0.9511505 0.30872 0.002149045 -0.9730008 0.2308013 3.78217e-4 -1 1.95086e-6 1.15466e-7 -1 6.36294e-6 0 -0.972993 -0.2308342 -3.79029e-4 -0.9483599 -0.3171883 -0.002274686 -0.873111 -0.4874542 -0.008100748 -0.7187652 -0.6952038 -0.008260085 -0.8105561 -0.5855666 0.01051055 0.1139626 0.0956271 0.9888721 0.0807067 0.1239542 0.9890004 0.1189225 0.09137065 0.9886905 0.2104603 0.1650166 0.9635746 0.155553 0.2199689 0.9630249 0.1428568 0.2323568 0.9620822 -0.01720417 -0.03082888 -0.9993766 -0.01245604 -0.03430075 -0.9993339 -0.02525484 -0.02745994 -0.9993038 -0.0151189 -0.03482511 -0.9992791 -0.005560547 -0.03838253 -0.9992476 -0.007865463 -0.03920457 -0.9992002 0 -0.0392052 -0.9992312 0.004055325 -0.03860466 -0.9992463 0.008370747 -0.03677885 -0.9992884 0.008520105 -0.03584899 -0.9993209 0.01648379 -0.02927137 -0.9994356 0.01318951 -0.03059491 -0.9994448 0.002698572 0.002698572 0.9999927 0.00726787 0.00726787 0.9999472 -0.003380699 -0.003380699 0.9999886 0.8081987 -0.5889062 0.002077256 0.8852893 -0.4650407 -2.20222e-4 0.7263414 -0.6873067 -0.006132404 0.025078 -0.01715472 -0.9995383 0.9511508 -0.3087193 0.00215147 0.972993 -0.2308342 3.7931e-4 1 -1.02457e-6 1.68044e-7 1 -4.4195e-6 0 0.9729907 0.230844 -3.79594e-4 0.9511513 0.3087176 -0.002152831 0.8852558 0.4651044 2.19777e-4 0.808197 0.5889086 -0.002077236 0.7262861 0.6873652 0.006139225 -0.007270198 0.007270198 0.9999471 -0.004701767 0.004701767 0.9999779 0.003386886 -0.003386886 0.9999885 0.7262508 0.6874082 -0.005447622 -0.15256 -0.9882942 0 -0.1525603 -0.9882942 0 -0.1525602 -0.9882942 0 -0.1525605 -0.9882941 0 -0.1525602 -0.9882942 0 -0.1525603 -0.9882942 0 -0.1525603 -0.9882942 0 -0.15256 -0.9882942 0 -0.1525599 -0.9882942 0 -0.1525602 -0.9882942 0 -0.1525604 -0.9882941 0 -0.1525601 -0.9882942 0 -0.1525598 -0.9882942 0 -0.1525599 -0.9882942 0 -0.1525601 -0.9882942 0 -0.1525601 -0.9882942 0 -0.15256 -0.9882942 0 -0.1525598 -0.9882942 0 -0.1525598 -0.9882942 0 -0.1525601 -0.9882942 0 -0.1525604 -0.9882941 0 -0.1525607 -0.9882941 0 -0.1525603 -0.9882942 0 -0.1525601 -0.9882942 0 -0.1525604 -0.9882941 0 -0.1525603 -0.9882942 0 -0.1525604 -0.9882942 0 -0.15256 -0.9882942 0 -0.1525602 -0.9882942 0 -0.1525602 -0.9882942 0 -0.1525602 -0.9882942 0 -0.1525603 -0.9882942 0 -0.1525602 -0.9882942 0 -0.1525601 -0.9882942 0 -0.15256 -0.9882942 0 -0.1525602 -0.9882942 0 -0.1525602 -0.9882942 0 -0.1525602 -0.9882942 0 -0.1525602 -0.9882942 0 -0.1525602 -0.9882942 0 -0.1525602 -0.9882942 0 -0.1525602 -0.9882942 0 -0.1525601 -0.9882942 0 -0.1525601 -0.9882942 0 1.43953e-5 1 5.38081e-5 5.87844e-11 1 1.57607e-7 0 1 -1.04288e-7 -2.08371e-5 1 -5.42743e-5 2.16169e-5 1 3.53034e-5 0.001879608 0.9999952 0.002451093 1.43116e-5 1 -5.35492e-5 -2.07506e-5 1 5.40092e-5 0.00179745 0.9999951 -0.002581271 -8.74002e-6 1 1.30788e-5 2.26952e-4 0.9999999 2.45731e-4 0.002224804 0.999995 0.002228768 -0.002530401 -0.9999951 -0.001840284 0.002622472 -0.9999951 0.001704022 -2.5498e-4 -0.9999999 -2.177e-4 2.26952e-4 0.9999999 -2.45731e-4 0.002224804 0.999995 -0.002228768 0.002530401 0.9999951 -0.001840284 -0.002622472 0.9999951 0.001704022 2.5498e-4 0.9999999 -2.177e-4 3.00253e-4 -0.9999999 1.53265e-4 0.002880593 -0.9999952 0.001107292 2.08005e-5 -1 6.17394e-6 -3.00253e-4 0.9999999 1.53265e-4 -0.002933673 0.9999952 0.001018677 -2.36995e-6 1 7.72261e-7 2.29386e-5 1 -4.26011e-6 -4.70919e-6 1 6.20326e-7 8.9075e-6 1 -2.34272e-7 0 1 0 0 1 0 -9.10131e-7 1 -1.68882e-7 -2.30462e-5 -1 -4.27832e-6 4.75543e-6 -1 6.272e-7 -8.92623e-6 -1 -2.34765e-7 0 -1 0 0 -1 0 9.10046e-7 -1 -1.68867e-7 0.001385561 0.9999989 5.23681e-4 -0.00134573 0.9999989 -5.40244e-4 -3.53525e-6 1 -7.57386e-7 0.001368824 -0.9999989 -5.169e-4 -0.001368258 -0.9999989 5.52151e-4 3.84524e-6 -1 3.13328e-6 0.9342029 -0.2939113 0.2021909 0.9429301 -0.2975876 0.1494138 0.8911817 -0.330649 0.3105903 0.9551966 -0.2883862 0.06657921 0.8506662 -0.3294748 0.4096503 0.9294128 0.3349705 -0.154876 0.9429886 0.324296 -0.07486344 0.9223001 0.3322426 -0.197427 0.8772482 0.3686877 -0.3074166 0.8384453 0.3690059 -0.4010538 -0.9342038 0.2939798 0.2020868 -0.9429324 0.2976549 0.1492653 -0.8911658 0.330688 0.3105944 -0.9551865 0.2884341 0.06651733 -0.8506857 0.329494 0.4095944 0.9294166 0.3349502 0.1548972 0.9429923 0.3243051 0.07477704 0.9222996 0.3322215 0.1974648 0.877258 0.3686612 0.3074205 0.8384575 0.3689899 0.401043 -8.09382e-4 0.9999996 -3.15062e-4 -0.009206444 0.9999473 -0.004553036 -0.01298431 0.9998781 -0.008670407 -0.001131252 0.999999 -8.12989e-4 -0.003797225 0.9999859 -0.003718797 0.008745375 0.9998532 -0.014734 -5.06399e-4 0.9997121 -0.0239895 0.008778166 0.9998534 -0.01470119 -0.7105492 0.3294644 0.62175 -0.751431 0.3644677 0.5500135 -7.95574e-4 -0.9999996 3.15459e-4 -0.0129811 -0.9998782 0.00866766 -0.009191957 -0.9999474 0.004544566 -0.001183833 -0.9999989 8.50498e-4 -0.003753507 -0.9999862 0.003674975 0.009850343 -0.9998184 0.01631334 0.001093709 -0.999685 0.02507258 0.01021674 -0.9998206 0.01594675 0.7388719 0.4033727 0.5397766 0.6991109 0.3704082 0.6115895 8.02884e-4 -0.9999996 -3.11131e-4 0.009200575 -0.9999473 -0.004548266 0.01296798 -0.9998784 -0.008658182 0.001157195 -0.999999 -8.30928e-4 0.003759914 -0.9999862 -0.003680422 0.01765659 -0.9998077 0.008528745 0.0289593 -0.9995767 -0.002772133 0.01192364 -0.9998273 0.01425821 0.710489 -0.3294087 0.6218483 0.7514229 -0.3644577 0.5500311 7.95383e-4 0.9999996 3.07567e-4 0.001200938 0.9999989 8.63092e-4 0.01297227 0.9998783 0.00866096 0.003755899 0.9999862 0.003677651 0.01084541 0.9998611 -0.01265296 0.02741304 0.9996166 0.003907814 0.01622398 0.9998419 -0.007278027 0.7388715 0.403393 -0.5397619 0.6990704 0.3704162 -0.6116309 0.009186701 0.9999475 0.004542129</float_array>
|
|
129
|
+
<technique_common>
|
|
130
|
+
<accessor source="#geom-wamUpperArmInShoulderLink-map1-texbinormals-array" count="214" 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-wamUpperArmInShoulderLink-vertices">
|
|
138
|
+
<input semantic="POSITION" source="#geom-wamUpperArmInShoulderLink-positions"/>
|
|
139
|
+
</vertices>
|
|
140
|
+
<triangles material="baseM_1" count="174">
|
|
141
|
+
<input semantic="VERTEX" source="#geom-wamUpperArmInShoulderLink-vertices" offset="0"/>
|
|
142
|
+
<input semantic="NORMAL" source="#geom-wamUpperArmInShoulderLink-normals" offset="1"/>
|
|
143
|
+
<input semantic="TEXCOORD" source="#geom-wamUpperArmInShoulderLink-map1" offset="2" set="1"/>
|
|
144
|
+
<input semantic="TEXTANGENT" source="#geom-wamUpperArmInShoulderLink-map1-textangents" offset="3" set="1"/>
|
|
145
|
+
<input semantic="TEXBINORMAL" source="#geom-wamUpperArmInShoulderLink-map1-texbinormals" offset="3" set="1"/>
|
|
146
|
+
<p>0 0 1 0 1 1 2 1 2 2 3 2 1 1 2 1 3 3 4 3 2 2 3 2 1 1 2 1 4 4 5 4 3 3 4 3 4 4 5 4 5 5 6 5 3 3 4 3 4 4 5 4 6 6 7 6 5 5 6 5 4 4 5 4 7 7 8 7 6 6 7 6 4 4 5 4 8 8 9 8 7 7 8 7 8 8 9 8 9 9 10 9 7 7 8 7 8 8 9 8 10 10 12 10 9 9 10 9 8 8 9 8 11 11 13 11 10 10 12 10 11 11 13 11 12 12 14 12 10 10 12 10 11 11 11 13 13 13 49 14 12 12 48 15 13 13 29 16 14 14 30 17 12 12 28 18 13 13 29 16 15 15 31 19 14 14 30 17 15 15 31 19 16 16 32 20 14 14 30 17 15 15 31 19 17 17 33 21 16 16 32 20 17 17 33 21 18 18 34 22 16 16 32 20 17 17 33 21 19 19 35 23 18 18 34 22 17 17 33 21 20 20 36 24 19 19 35 23 20 20 36 24 21 21 37 25 19 19 35 23 20 20 36 24 22 22 38 26 21 21 37 25 20 20 36 24 23 23 39 27 22 22 38 26 23 23 183 28 24 24 184 29 22 22 79 30 23 23 80 31 25 25 165 32 24 24 81 33 25 25 167 34 26 26 168 35 24 24 166 36 25 25 167 34 27 27 169 37 26 26 168 35 27 27 169 37 28 28 170 38 26 26 168 35 27 27 169 37 29 29 171 39 28 28 170 38 29 29 171 39 30 30 174 40 28 28 170 38 29 29 171 39 31 31 175 41 30 30 174 40 29 29 171 39 32 32 177 42 31 31 175 41 32 32 177 42 33 33 210 43 31 31 175 41 32 32 177 42 34 34 211 44 33 33 210 43 34 34 211 44 35 35 212 45 33 33 210 43 34 34 176 46 36 36 178 47 37 37 179 48 36 36 16 49 38 38 18 50 37 37 17 51 37 37 213 52 35 35 212 45 34 34 211 44 36 36 16 49 39 39 19 53 38 38 18 50 39 39 19 53 40 40 20 54 38 38 18 50 39 39 19 53 41 41 21 55 40 40 20 54 42 42 22 56 40 40 20 54 41 41 21 55 43 43 23 57 42 42 22 56 41 41 21 55 41 41 21 55 44 44 24 58 43 43 23 57 44 44 24 58 45 45 25 59 43 43 23 57 44 44 24 58 46 46 26 60 45 45 25 59 46 46 26 60 47 47 27 61 45 45 25 59 46 46 198 62 0 0 0 63 47 47 199 64 0 0 1 0 2 2 3 2 47 47 15 65 129 48 86 66 128 49 85 67 118 50 72 68 128 49 85 67 119 51 73 69 118 50 72 68 128 49 85 67 127 52 84 70 119 51 73 69 127 52 84 70 120 53 74 71 119 51 73 69 127 52 84 70 126 54 83 72 120 53 74 71 126 54 83 72 121 55 75 73 120 53 74 71 145 56 102 74 122 57 76 75 121 55 75 73 126 54 83 72 145 56 102 74 121 55 75 73 144 58 101 76 123 59 77 77 122 57 76 75 145 56 102 74 144 58 101 76 122 57 76 75 143 60 100 78 124 61 78 79 123 59 77 77 143 60 100 78 142 62 99 80 124 61 78 79 142 62 99 80 125 63 82 81 124 61 78 79 142 62 99 80 141 64 98 82 125 63 82 81 141 64 98 82 102 65 56 83 125 63 82 81 141 64 98 82 140 66 97 84 102 65 56 83 140 66 97 84 103 67 57 85 102 65 56 83 140 66 97 84 139 68 96 86 103 67 57 85 139 68 96 86 104 69 58 87 103 67 57 85 139 68 96 86 105 70 59 88 104 69 58 87 139 68 96 86 138 71 95 89 105 70 59 88 118 50 72 68 117 72 71 90 129 48 86 66 117 72 71 90 130 73 87 91 129 48 86 66 117 72 71 90 116 74 70 92 130 73 87 91 116 74 70 92 115 75 69 93 130 73 87 91 115 75 69 93 114 76 68 94 130 73 87 91 114 76 68 94 131 77 88 95 130 73 87 91 114 76 68 94 113 78 67 96 131 77 88 95 113 78 67 96 132 79 89 97 131 77 88 95 113 78 67 96 112 80 66 98 132 79 89 97 112 80 66 98 133 81 90 99 132 79 89 97 112 80 66 98 111 82 65 100 133 81 90 99 111 82 65 100 134 83 91 101 133 81 90 99 111 82 65 100 110 84 64 102 134 83 91 101 135 85 92 103 134 83 91 101 110 84 64 102 110 84 64 102 109 86 63 104 135 85 92 103 108 87 62 105 107 88 61 106 136 89 93 107 136 89 93 107 135 85 92 103 109 86 63 104 109 86 63 104 108 87 62 105 136 89 93 107 137 90 94 108 136 89 93 107 107 88 61 106 107 88 61 106 106 91 60 109 137 90 94 108 138 71 95 89 137 90 94 108 106 91 60 109 106 91 60 109 105 70 59 88 138 71 95 89 144 58 101 76 143 60 100 78 123 59 77 77 84 92 42 110 85 93 43 111 147 94 50 112 147 94 50 112 146 95 47 113 84 92 42 110 146 95 47 113 83 96 41 114 84 92 42 110 146 95 47 113 173 97 55 115 83 96 41 114 147 94 50 112 85 93 43 111 86 98 44 116 86 98 44 116 148 99 51 117 147 94 50 112 148 99 51 117 86 98 44 116 87 100 45 118 87 100 45 118 149 101 52 119 148 99 51 117 82 102 40 120 83 96 41 114 173 97 55 115 82 102 40 120 173 97 55 115 172 103 54 121 172 103 127 122 81 104 117 123 82 102 118 124 150 105 53 125 149 101 52 119 87 100 45 118 150 105 53 125 87 100 45 118 88 106 46 126 88 106 143 127 151 107 152 128 150 105 151 129 81 104 117 123 172 103 127 122 171 108 126 130 80 109 116 131 81 104 117 123 171 108 126 130 171 108 126 130 170 110 125 132 80 109 116 131 151 107 152 128 88 106 143 127 89 111 144 133 152 112 153 134 151 107 152 128 89 111 144 133 89 111 144 133 90 113 145 135 152 112 153 134 152 112 153 134 90 113 145 135 91 114 146 136 153 115 154 137 152 112 153 134 91 114 146 136 153 115 154 137 91 114 146 136 92 116 147 138 154 117 155 139 153 115 154 137 92 116 147 138 92 116 147 138 93 118 148 140 154 117 155 139 93 118 148 140 155 119 156 141 154 117 155 139 79 120 115 142 80 109 116 131 170 110 125 132 79 120 115 142 170 110 125 132 169 121 124 143 78 122 114 144 79 120 115 142 169 121 124 143 78 122 114 144 169 121 124 143 168 123 123 145 77 124 113 146 78 122 114 144 168 123 123 145 168 123 123 145 167 125 122 147 77 124 113 146 155 119 156 141 93 118 148 140 94 126 149 148 94 126 149 148 156 127 157 149 155 119 156 141 94 126 149 148 48 128 128 150 156 127 157 149 76 129 112 151 167 125 122 147 166 130 121 152 166 130 121 152 61 131 107 153 76 129 112 151 76 129 112 151 77 124 113 146 167 125 122 147 55 132 137 154 99 133 192 155 74 134 190 156 55 132 137 154 98 135 191 157 99 133 192 155 74 134 190 156 56 136 138 158 55 132 137 154 97 137 187 159 98 135 188 160 54 138 136 161 75 139 185 162 97 137 187 159 54 138 136 161 54 138 136 161 53 140 135 163 75 139 185 162 73 141 172 164 160 142 181 165 159 143 180 166 73 141 172 164 161 144 182 167 160 142 181 165 159 143 180 166 72 145 163 168 73 141 172 164 162 146 195 169 161 144 194 170 67 147 160 171 163 148 196 172 162 146 195 169 67 147 160 171 67 147 160 171 66 149 159 173 163 148 196 172 156 127 157 149 48 128 128 150 68 150 133 174 156 127 157 149 68 150 133 174 69 151 140 175 70 152 141 176 157 153 161 177 156 127 157 149 70 152 141 176 71 154 142 178 157 153 161 177 71 154 200 179 158 155 204 180 157 153 203 181 69 151 140 175 70 152 141 176 156 127 157 149 71 154 162 182 72 145 163 168 158 155 173 183 72 145 163 168 159 143 180 166 158 155 173 183 62 156 108 184 61 131 107 153 166 130 121 152 166 130 121 152 64 157 110 185 63 158 109 186 166 130 121 152 165 159 120 187 64 157 110 185 165 159 120 187 65 160 111 188 64 157 110 185 165 159 209 189 164 161 208 190 65 160 205 191 164 161 197 192 66 149 159 173 65 160 158 193 164 161 197 192 163 148 196 172 66 149 159 173 166 130 121 152 63 158 109 186 62 156 108 184 76 129 112 151 61 131 107 153 60 162 106 194 76 129 112 151 60 162 106 194 59 163 105 195 58 164 104 196 101 165 119 197 76 129 112 151 58 164 104 196 57 166 103 198 101 165 119 197 57 166 139 199 100 167 206 200 101 165 207 201 57 166 189 202 56 136 138 158 100 167 193 203 56 136 138 158 74 134 190 156 100 167 193 203 59 163 105 195 58 164 104 196 76 129 112 151 49 168 129 204 48 128 128 150 94 126 149 148 94 126 149 148 95 169 150 205 51 170 131 206 95 169 150 205 52 171 132 207 51 170 131 206 95 169 201 208 96 172 202 209 52 171 164 210 96 172 186 211 53 140 135 163 52 171 134 212 96 172 186 211 75 139 185 162 53 140 135 163 94 126 149 148 50 173 130 213 49 168 129 204 51 170 131 206 50 173 130 213 94 126 149 148</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="base_gray_128x_jpg">
|
|
162
|
+
<init_from>../images/base_gray_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-wamUpperArmInShoulderLink" name="wamUpperArmInShoulderLink">
|
|
171
|
+
<matrix>1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>
|
|
172
|
+
<instance_geometry url="#geom-wamUpperArmInShoulderLink">
|
|
173
|
+
<bind_material>
|
|
174
|
+
<technique_common>
|
|
175
|
+
<instance_material symbol="baseM_1" target="#baseM-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
|