dartpy 7.0.0.dev0__cp312-cp312-manylinux_2_39_x86_64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of dartpy might be problematic. Click here for more details.
- dartpy-7.0.0.dev0.dist-info/METADATA +86 -0
- dartpy-7.0.0.dev0.dist-info/RECORD +994 -0
- dartpy-7.0.0.dev0.dist-info/WHEEL +5 -0
- dartpy-7.0.0.dev0.dist-info/licenses/LICENSE +31 -0
- dartpy.cpython-312-x86_64-linux-gnu.so +0 -0
- dartpy.libs/libBulletCollision-f96eb02c.so.3.25 +0 -0
- dartpy.libs/libBulletDynamics-3cff1f18.so.3.25 +0 -0
- dartpy.libs/libBulletSoftBody-220f01bd.so.3.25 +0 -0
- dartpy.libs/libLinearMath-71568d02.so.3.25 +0 -0
- dartpy.libs/libOpenThreads-8bc434db.so.3.3.1 +0 -0
- dartpy.libs/libSDL2-2-3db87ac0.0.so.0.3200.56 +0 -0
- dartpy.libs/libassimp-44cf3e77.so.5.4.3 +0 -0
- dartpy.libs/libccd-4f119cf4.so.2.0 +0 -0
- dartpy.libs/libconsole_bridge-f26e11cc.so.1.0 +0 -0
- dartpy.libs/libfcl-2607815a.so.0.7.0 +0 -0
- dartpy.libs/libfmt-277170bf.so.11.2.0 +0 -0
- dartpy.libs/libfontconfig-559ff509.so.1.14.0 +0 -0
- dartpy.libs/libfreetype-64806fc6.so.6.20.4 +0 -0
- dartpy.libs/libglfw-6f066845.so.3.4 +0 -0
- dartpy.libs/libimgui-ab87b07d.so +0 -0
- dartpy.libs/libnlopt-78f9bc34.so.1.0.0 +0 -0
- dartpy.libs/liboctomap-38e56f99.so.1.10.0 +0 -0
- dartpy.libs/liboctomath-bff26442.so.1.10.0 +0 -0
- dartpy.libs/libode-caca20fc.so.8.2.0 +0 -0
- dartpy.libs/libosg-e67375e5.so.3.6.5 +0 -0
- dartpy.libs/libosgDB-22ae780f.so.3.6.5 +0 -0
- dartpy.libs/libosgGA-6af4078b.so.3.6.5 +0 -0
- dartpy.libs/libosgManipulator-3270f659.so.3.6.5 +0 -0
- dartpy.libs/libosgShadow-127a8d77.so.3.6.5 +0 -0
- dartpy.libs/libosgText-87d82d87.so.3.6.5 +0 -0
- dartpy.libs/libosgUtil-55896958.so.3.6.5 +0 -0
- dartpy.libs/libosgViewer-76d832e3.so.3.6.5 +0 -0
- dartpy.libs/libpng16-bd65464e.so.16.50.0 +0 -0
- dartpy.libs/libtinyxml2-8d10763c.so.11.0.0 +0 -0
- dartpy.libs/liburdfdom_model-7b26ae88.so.4.0 +0 -0
- dartpy.libs/liburdfdom_model_state-95a5ad6e.so.4.0 +0 -0
- dartpy.libs/liburdfdom_sensor-55a145ea.so.4.0 +0 -0
- dartpy.libs/liburdfdom_world-a32c7194.so.4.0 +0 -0
- dartpy.libs/libvulkan-8caf1954.so.1.4.328 +0 -0
- include/dart/collision/CollisionDetector.hpp +305 -0
- include/dart/collision/CollisionFilter.hpp +126 -0
- include/dart/collision/CollisionGroup.hpp +546 -0
- include/dart/collision/CollisionObject.hpp +90 -0
- include/dart/collision/CollisionOption.hpp +71 -0
- include/dart/collision/CollisionResult.hpp +109 -0
- include/dart/collision/Contact.hpp +103 -0
- include/dart/collision/DistanceFilter.hpp +66 -0
- include/dart/collision/DistanceOption.hpp +80 -0
- include/dart/collision/DistanceResult.hpp +123 -0
- include/dart/collision/Option.hpp +42 -0
- include/dart/collision/RaycastOption.hpp +58 -0
- include/dart/collision/RaycastResult.hpp +80 -0
- include/dart/collision/Result.hpp +42 -0
- include/dart/collision/SmartPointer.hpp +51 -0
- include/dart/collision/all.hpp +17 -0
- include/dart/collision/bullet/BulletCollisionDetector.hpp +168 -0
- include/dart/collision/bullet/BulletCollisionGroup.hpp +98 -0
- include/dart/collision/bullet/BulletCollisionObject.hpp +75 -0
- include/dart/collision/bullet/BulletCollisionShape.hpp +62 -0
- include/dart/collision/bullet/BulletInclude.hpp +47 -0
- include/dart/collision/bullet/BulletTypes.hpp +57 -0
- include/dart/collision/bullet/all.hpp +8 -0
- include/dart/collision/bullet/bullet.hpp +14 -0
- include/dart/collision/bullet/detail/BulletCollisionDispatcher.hpp +70 -0
- include/dart/collision/bullet/detail/BulletOverlapFilterCallback.hpp +72 -0
- include/dart/collision/collision.hpp +14 -0
- include/dart/collision/dart/DARTCollide.hpp +106 -0
- include/dart/collision/dart/DARTCollisionDetector.hpp +109 -0
- include/dart/collision/dart/DARTCollisionGroup.hpp +82 -0
- include/dart/collision/dart/DARTCollisionObject.hpp +63 -0
- include/dart/collision/dart/all.hpp +6 -0
- include/dart/collision/dart/dart.hpp +14 -0
- include/dart/collision/detail/CollisionDetector.hpp +66 -0
- include/dart/collision/detail/CollisionGroup.hpp +287 -0
- include/dart/collision/detail/Contact-impl.hpp +56 -0
- include/dart/collision/detail/UnorderedPairs.hpp +153 -0
- include/dart/collision/fcl/BackwardCompatibility.hpp +145 -0
- include/dart/collision/fcl/CollisionShapes.hpp +374 -0
- include/dart/collision/fcl/FCLCollisionDetector.hpp +204 -0
- include/dart/collision/fcl/FCLCollisionGroup.hpp +95 -0
- include/dart/collision/fcl/FCLCollisionObject.hpp +72 -0
- include/dart/collision/fcl/FCLTypes.hpp +62 -0
- include/dart/collision/fcl/TriTriIntersectionTest.hpp +17 -0
- include/dart/collision/fcl/all.hpp +9 -0
- include/dart/collision/fcl/fcl.hpp +14 -0
- include/dart/collision/fcl/tri_tri_intersection_test.hpp +332 -0
- include/dart/collision/ode/OdeCollisionDetector.hpp +131 -0
- include/dart/collision/ode/OdeCollisionGroup.hpp +87 -0
- include/dart/collision/ode/OdeCollisionObject.hpp +89 -0
- include/dart/collision/ode/OdeTypes.hpp +51 -0
- include/dart/collision/ode/all.hpp +6 -0
- include/dart/collision/ode/detail/OdeBox.hpp +58 -0
- include/dart/collision/ode/detail/OdeCapsule.hpp +58 -0
- include/dart/collision/ode/detail/OdeCylinder.hpp +58 -0
- include/dart/collision/ode/detail/OdeGeom.hpp +83 -0
- include/dart/collision/ode/detail/OdeHeightmap-impl.hpp +170 -0
- include/dart/collision/ode/detail/OdeHeightmap.hpp +70 -0
- include/dart/collision/ode/detail/OdeMesh.hpp +83 -0
- include/dart/collision/ode/detail/OdePlane.hpp +67 -0
- include/dart/collision/ode/detail/OdeSphere.hpp +58 -0
- include/dart/collision/ode/ode.hpp +14 -0
- include/dart/common/Aspect.hpp +215 -0
- include/dart/common/AspectWithVersion.hpp +180 -0
- include/dart/common/CAllocator.hpp +65 -0
- include/dart/common/Castable.hpp +102 -0
- include/dart/common/ClassWithVirtualBase.hpp +47 -0
- include/dart/common/Cloneable.hpp +327 -0
- include/dart/common/Composite.hpp +205 -0
- include/dart/common/CompositeJoiner.hpp +160 -0
- include/dart/common/Console.hpp +75 -0
- include/dart/common/Deprecated.hpp +126 -0
- include/dart/common/EmbeddedAspect.hpp +466 -0
- include/dart/common/Empty.hpp +55 -0
- include/dart/common/Factory.hpp +146 -0
- include/dart/common/Filesystem.hpp +112 -0
- include/dart/common/FreeListAllocator.hpp +162 -0
- include/dart/common/IncludeWindows.hpp +50 -0
- include/dart/common/LocalResource.hpp +76 -0
- include/dart/common/LocalResourceRetriever.hpp +63 -0
- include/dart/common/LockableReference.hpp +166 -0
- include/dart/common/Logging.hpp +146 -0
- include/dart/common/Macros.hpp +78 -0
- include/dart/common/Memory.hpp +215 -0
- include/dart/common/MemoryAllocator.hpp +120 -0
- include/dart/common/MemoryAllocatorDebugger.hpp +98 -0
- include/dart/common/MemoryManager.hpp +189 -0
- include/dart/common/Metaprogramming.hpp +68 -0
- include/dart/common/NameManager.hpp +184 -0
- include/dart/common/Observer.hpp +85 -0
- include/dart/common/Optional.hpp +48 -0
- include/dart/common/Platform.hpp +92 -0
- include/dart/common/PoolAllocator.hpp +141 -0
- include/dart/common/Profile.hpp +56 -0
- include/dart/common/ProxyAspect.hpp +93 -0
- include/dart/common/RequiresAspect.hpp +79 -0
- include/dart/common/Resource.hpp +96 -0
- include/dart/common/ResourceRetriever.hpp +82 -0
- include/dart/common/SharedLibrary.hpp +201 -0
- include/dart/common/Signal.hpp +250 -0
- include/dart/common/Singleton.hpp +85 -0
- include/dart/common/SmartPointer.hpp +63 -0
- include/dart/common/SpecializedForAspect.hpp +207 -0
- include/dart/common/StlAllocator.hpp +111 -0
- include/dart/common/StlHelpers.hpp +61 -0
- include/dart/common/Stopwatch.hpp +143 -0
- include/dart/common/String.hpp +71 -0
- include/dart/common/SubPtr.hpp +17 -0
- include/dart/common/Subject.hpp +84 -0
- include/dart/common/Timer.hpp +119 -0
- include/dart/common/Uri.hpp +229 -0
- include/dart/common/VersionCounter.hpp +68 -0
- include/dart/common/Virtual.hpp +51 -0
- include/dart/common/all.hpp +53 -0
- include/dart/common/common.hpp +14 -0
- include/dart/common/detail/Aspect.hpp +102 -0
- include/dart/common/detail/AspectWithVersion.hpp +455 -0
- include/dart/common/detail/Castable-impl.hpp +109 -0
- include/dart/common/detail/Cloneable.hpp +638 -0
- include/dart/common/detail/Composite.hpp +241 -0
- include/dart/common/detail/CompositeData.hpp +393 -0
- include/dart/common/detail/CompositeJoiner.hpp +128 -0
- include/dart/common/detail/ConnectionBody.hpp +157 -0
- include/dart/common/detail/EmbeddedAspect.hpp +487 -0
- include/dart/common/detail/Factory-impl.hpp +200 -0
- include/dart/common/detail/LockableReference-impl.hpp +156 -0
- include/dart/common/detail/Logging-impl.hpp +162 -0
- include/dart/common/detail/Memory-impl.hpp +66 -0
- include/dart/common/detail/MemoryAllocator-impl.hpp +97 -0
- include/dart/common/detail/MemoryAllocatorDebugger-impl.hpp +201 -0
- include/dart/common/detail/MemoryManager-impl.hpp +102 -0
- include/dart/common/detail/Metaprogramming-impl.hpp +89 -0
- include/dart/common/detail/NameManager.hpp +301 -0
- include/dart/common/detail/NoOp.hpp +57 -0
- include/dart/common/detail/ProxyAspect.hpp +172 -0
- include/dart/common/detail/RequiresAspect.hpp +51 -0
- include/dart/common/detail/SharedLibraryManager.hpp +106 -0
- include/dart/common/detail/Signal.hpp +242 -0
- include/dart/common/detail/Singleton-impl.hpp +74 -0
- include/dart/common/detail/SpecializedForAspect.hpp +331 -0
- include/dart/common/detail/StlAllocator-impl.hpp +108 -0
- include/dart/common/detail/Stopwatch-impl.hpp +242 -0
- include/dart/common/detail/SubPtr.hpp +17 -0
- include/dart/common/detail/TemplateJoinerDispatchMacro.hpp +59 -0
- include/dart/common/detail/sub_ptr.hpp +139 -0
- include/dart/common/sub_ptr.hpp +103 -0
- include/dart/config.hpp +100 -0
- include/dart/constraint/BalanceConstraint.hpp +202 -0
- include/dart/constraint/BallJointConstraint.hpp +142 -0
- include/dart/constraint/BoxedLcpConstraintSolver.hpp +182 -0
- include/dart/constraint/BoxedLcpSolver.hpp +101 -0
- include/dart/constraint/ConstrainedGroup.hpp +120 -0
- include/dart/constraint/ConstraintBase.hpp +141 -0
- include/dart/constraint/ConstraintSolver.hpp +325 -0
- include/dart/constraint/ContactConstraint.hpp +286 -0
- include/dart/constraint/ContactSurface.hpp +191 -0
- include/dart/constraint/DantzigBoxedLcpSolver.hpp +71 -0
- include/dart/constraint/DantzigLCPSolver.hpp +87 -0
- include/dart/constraint/DynamicJointConstraint.hpp +120 -0
- include/dart/constraint/JointConstraint.hpp +182 -0
- include/dart/constraint/JointCoulombFrictionConstraint.hpp +149 -0
- include/dart/constraint/JointLimitConstraint.hpp +185 -0
- include/dart/constraint/LCPSolver.hpp +71 -0
- include/dart/constraint/MimicMotorConstraint.hpp +164 -0
- include/dart/constraint/PGSLCPSolver.hpp +109 -0
- include/dart/constraint/PgsBoxedLcpSolver.hpp +106 -0
- include/dart/constraint/ServoMotorConstraint.hpp +151 -0
- include/dart/constraint/SmartPointer.hpp +69 -0
- include/dart/constraint/SoftContactConstraint.hpp +262 -0
- include/dart/constraint/WeldJointConstraint.hpp +133 -0
- include/dart/constraint/all.hpp +25 -0
- include/dart/constraint/constraint.hpp +14 -0
- include/dart/constraint/detail/ConstraintSolver-impl.hpp +78 -0
- include/dart/dart.hpp +44 -0
- include/dart/dynamics/ArrowShape.hpp +121 -0
- include/dart/dynamics/AssimpInputResourceAdaptor.hpp +129 -0
- include/dart/dynamics/BallJoint.hpp +143 -0
- include/dart/dynamics/BodyNode.hpp +1279 -0
- include/dart/dynamics/BoxShape.hpp +90 -0
- include/dart/dynamics/Branch.hpp +107 -0
- include/dart/dynamics/CapsuleShape.hpp +105 -0
- include/dart/dynamics/Chain.hpp +142 -0
- include/dart/dynamics/CompositeNode.hpp +114 -0
- include/dart/dynamics/ConeShape.hpp +107 -0
- include/dart/dynamics/CylinderShape.hpp +96 -0
- include/dart/dynamics/DegreeOfFreedom.hpp +415 -0
- include/dart/dynamics/EllipsoidShape.hpp +115 -0
- include/dart/dynamics/EndEffector.hpp +158 -0
- include/dart/dynamics/Entity.hpp +258 -0
- include/dart/dynamics/EntityNode.hpp +77 -0
- include/dart/dynamics/EulerJoint.hpp +174 -0
- include/dart/dynamics/FixedFrame.hpp +105 -0
- include/dart/dynamics/FixedJacobianNode.hpp +168 -0
- include/dart/dynamics/Frame.hpp +388 -0
- include/dart/dynamics/FreeJoint.hpp +369 -0
- include/dart/dynamics/GenericJoint.hpp +825 -0
- include/dart/dynamics/Group.hpp +270 -0
- include/dart/dynamics/HeightmapShape.hpp +195 -0
- include/dart/dynamics/HierarchicalIK.hpp +419 -0
- include/dart/dynamics/IkFast.hpp +277 -0
- include/dart/dynamics/Inertia.hpp +176 -0
- include/dart/dynamics/InvalidIndex.hpp +46 -0
- include/dart/dynamics/InverseKinematics.hpp +1401 -0
- include/dart/dynamics/JacobianNode.hpp +312 -0
- include/dart/dynamics/Joint.hpp +1128 -0
- include/dart/dynamics/LineSegmentShape.hpp +140 -0
- include/dart/dynamics/Linkage.hpp +246 -0
- include/dart/dynamics/Marker.hpp +126 -0
- include/dart/dynamics/MeshShape.hpp +225 -0
- include/dart/dynamics/MetaSkeleton.hpp +1034 -0
- include/dart/dynamics/MimicDofProperties.hpp +62 -0
- include/dart/dynamics/MultiSphereConvexHullShape.hpp +111 -0
- include/dart/dynamics/MultiSphereShape.hpp +42 -0
- include/dart/dynamics/Node.hpp +273 -0
- include/dart/dynamics/NodeManagerJoiner.hpp +190 -0
- include/dart/dynamics/PlanarJoint.hpp +161 -0
- include/dart/dynamics/PlaneShape.hpp +105 -0
- include/dart/dynamics/PointCloudShape.hpp +186 -0
- include/dart/dynamics/PointMass.hpp +709 -0
- include/dart/dynamics/PrismaticJoint.hpp +120 -0
- include/dart/dynamics/PyramidShape.hpp +122 -0
- include/dart/dynamics/ReferentialSkeleton.hpp +550 -0
- include/dart/dynamics/RevoluteJoint.hpp +120 -0
- include/dart/dynamics/ScrewJoint.hpp +126 -0
- include/dart/dynamics/Shape.hpp +231 -0
- include/dart/dynamics/ShapeFrame.hpp +291 -0
- include/dart/dynamics/ShapeNode.hpp +134 -0
- include/dart/dynamics/SharedLibraryIkFast.hpp +147 -0
- include/dart/dynamics/SimpleFrame.hpp +247 -0
- include/dart/dynamics/Skeleton.hpp +1350 -0
- include/dart/dynamics/SmartPointer.hpp +185 -0
- include/dart/dynamics/SoftBodyNode.hpp +472 -0
- include/dart/dynamics/SoftMeshShape.hpp +100 -0
- include/dart/dynamics/SpecializedNodeManager.hpp +230 -0
- include/dart/dynamics/SphereShape.hpp +89 -0
- include/dart/dynamics/TemplatedJacobianNode.hpp +128 -0
- include/dart/dynamics/TranslationalJoint.hpp +105 -0
- include/dart/dynamics/TranslationalJoint2D.hpp +156 -0
- include/dart/dynamics/UniversalJoint.hpp +128 -0
- include/dart/dynamics/VoxelGridShape.hpp +171 -0
- include/dart/dynamics/WeldJoint.hpp +116 -0
- include/dart/dynamics/ZeroDofJoint.hpp +562 -0
- include/dart/dynamics/all.hpp +69 -0
- include/dart/dynamics/detail/BasicNodeManager.hpp +539 -0
- include/dart/dynamics/detail/BodyNode.hpp +344 -0
- include/dart/dynamics/detail/BodyNodeAspect.hpp +177 -0
- include/dart/dynamics/detail/BodyNodePtr.hpp +351 -0
- include/dart/dynamics/detail/CompositeNode.hpp +93 -0
- include/dart/dynamics/detail/DegreeOfFreedomPtr.hpp +338 -0
- include/dart/dynamics/detail/EndEffectorAspect.hpp +106 -0
- include/dart/dynamics/detail/EntityNode.hpp +81 -0
- include/dart/dynamics/detail/EntityNodeAspect.hpp +101 -0
- include/dart/dynamics/detail/EulerJointAspect.hpp +93 -0
- include/dart/dynamics/detail/FixedFrameAspect.hpp +58 -0
- include/dart/dynamics/detail/FixedJacobianNode.hpp +55 -0
- include/dart/dynamics/detail/GenericJoint.hpp +2471 -0
- include/dart/dynamics/detail/GenericJointAspect.hpp +353 -0
- include/dart/dynamics/detail/HeightmapShape-impl.hpp +243 -0
- include/dart/dynamics/detail/InverseKinematics.hpp +83 -0
- include/dart/dynamics/detail/InverseKinematicsPtr.hpp +341 -0
- include/dart/dynamics/detail/JointAspect.hpp +161 -0
- include/dart/dynamics/detail/JointPtr.hpp +293 -0
- include/dart/dynamics/detail/MarkerAspect.hpp +68 -0
- include/dart/dynamics/detail/MetaSkeleton-impl.hpp +151 -0
- include/dart/dynamics/detail/Node.hpp +532 -0
- include/dart/dynamics/detail/NodeManagerJoiner.hpp +184 -0
- include/dart/dynamics/detail/NodePtr.hpp +259 -0
- include/dart/dynamics/detail/PlanarJointAspect.hpp +136 -0
- include/dart/dynamics/detail/PrismaticJointAspect.hpp +85 -0
- include/dart/dynamics/detail/RevoluteJointAspect.hpp +86 -0
- include/dart/dynamics/detail/ScrewJointAspect.hpp +90 -0
- include/dart/dynamics/detail/ShapeFrameAspect.hpp +169 -0
- include/dart/dynamics/detail/ShapeNode.hpp +51 -0
- include/dart/dynamics/detail/Skeleton.hpp +92 -0
- include/dart/dynamics/detail/SkeletonAspect.hpp +181 -0
- include/dart/dynamics/detail/SoftBodyNodeAspect.hpp +132 -0
- include/dart/dynamics/detail/SpecializedNodeManager.hpp +324 -0
- include/dart/dynamics/detail/TemplatedJacobianNode.hpp +294 -0
- include/dart/dynamics/detail/TranslationalJoint2DAspect.hpp +140 -0
- include/dart/dynamics/detail/UniversalJointAspect.hpp +86 -0
- include/dart/dynamics/dynamics.hpp +14 -0
- include/dart/dynamics/ikfast.h +345 -0
- include/dart/external/convhull_3d/convhull_3d.h +1878 -0
- include/dart/external/convhull_3d/safe_convhull_3d.h +53 -0
- include/dart/external/odelcpsolver/common.h +418 -0
- include/dart/external/odelcpsolver/error.h +62 -0
- include/dart/external/odelcpsolver/lcp.h +75 -0
- include/dart/external/odelcpsolver/matrix.h +277 -0
- include/dart/external/odelcpsolver/misc.h +82 -0
- include/dart/external/odelcpsolver/odeconfig.h +110 -0
- include/dart/gui/osg/DefaultEventHandler.hpp +237 -0
- include/dart/gui/osg/DragAndDrop.hpp +360 -0
- include/dart/gui/osg/GridVisual.hpp +218 -0
- include/dart/gui/osg/ImGuiHandler.hpp +113 -0
- include/dart/gui/osg/ImGuiViewer.hpp +83 -0
- include/dart/gui/osg/ImGuiWidget.hpp +91 -0
- include/dart/gui/osg/IncludeImGui.hpp +75 -0
- include/dart/gui/osg/InteractiveFrame.hpp +170 -0
- include/dart/gui/osg/MouseEventHandler.hpp +76 -0
- include/dart/gui/osg/RealTimeWorldNode.hpp +126 -0
- include/dart/gui/osg/ShapeFrameNode.hpp +117 -0
- include/dart/gui/osg/SupportPolygonVisual.hpp +202 -0
- include/dart/gui/osg/TrackballManipulator.hpp +97 -0
- include/dart/gui/osg/Utils.hpp +120 -0
- include/dart/gui/osg/Viewer.hpp +427 -0
- include/dart/gui/osg/WorldNode.hpp +211 -0
- include/dart/gui/osg/all.hpp +19 -0
- include/dart/gui/osg/detail/CameraModeCallback.hpp +82 -0
- include/dart/gui/osg/detail/Utils-impl.hpp +160 -0
- include/dart/gui/osg/osg.hpp +14 -0
- include/dart/gui/osg/render/BoxShapeNode.hpp +74 -0
- include/dart/gui/osg/render/CapsuleShapeNode.hpp +75 -0
- include/dart/gui/osg/render/ConeShapeNode.hpp +74 -0
- include/dart/gui/osg/render/CylinderShapeNode.hpp +75 -0
- include/dart/gui/osg/render/EllipsoidShapeNode.hpp +76 -0
- include/dart/gui/osg/render/HeightmapShapeNode.hpp +485 -0
- include/dart/gui/osg/render/LineSegmentShapeNode.hpp +75 -0
- include/dart/gui/osg/render/MeshShapeNode.hpp +86 -0
- include/dart/gui/osg/render/MultiSphereShapeNode.hpp +76 -0
- include/dart/gui/osg/render/PlaneShapeNode.hpp +75 -0
- include/dart/gui/osg/render/PointCloudShapeNode.hpp +85 -0
- include/dart/gui/osg/render/PyramidShapeNode.hpp +75 -0
- include/dart/gui/osg/render/ShapeNode.hpp +126 -0
- include/dart/gui/osg/render/SoftMeshShapeNode.hpp +75 -0
- include/dart/gui/osg/render/SphereShapeNode.hpp +76 -0
- include/dart/gui/osg/render/VoxelGridShapeNode.hpp +83 -0
- include/dart/gui/osg/render/WarningShapeNode.hpp +64 -0
- include/dart/gui/osg/render/all.hpp +19 -0
- include/dart/gui/osg/render/render.hpp +14 -0
- include/dart/integration/EulerIntegrator.hpp +64 -0
- include/dart/integration/Integrator.hpp +104 -0
- include/dart/integration/RK4Integrator.hpp +68 -0
- include/dart/integration/SemiImplicitEulerIntegrator.hpp +64 -0
- include/dart/integration/all.hpp +6 -0
- include/dart/integration/integration.hpp +14 -0
- include/dart/lcpsolver/Lemke.hpp +54 -0
- include/dart/lcpsolver/ODELCPSolver.hpp +88 -0
- include/dart/lcpsolver/all.hpp +4 -0
- include/dart/lcpsolver/lcpsolver.hpp +14 -0
- include/dart/math/ConfigurationSpace.hpp +144 -0
- include/dart/math/Constants.hpp +79 -0
- include/dart/math/Geometry.hpp +659 -0
- include/dart/math/Helpers.hpp +481 -0
- include/dart/math/Icosphere.hpp +106 -0
- include/dart/math/MathTypes.hpp +100 -0
- include/dart/math/Mesh.hpp +108 -0
- include/dart/math/Random.hpp +225 -0
- include/dart/math/TriMesh.hpp +121 -0
- include/dart/math/all.hpp +11 -0
- include/dart/math/detail/ConfigurationSpace.hpp +235 -0
- include/dart/math/detail/Geometry-impl.hpp +126 -0
- include/dart/math/detail/Icosphere-impl.hpp +214 -0
- include/dart/math/detail/Mesh-impl.hpp +151 -0
- include/dart/math/detail/Random-impl.hpp +353 -0
- include/dart/math/detail/TriMesh-impl.hpp +202 -0
- include/dart/math/math.hpp +14 -0
- include/dart/optimizer/Function.hpp +203 -0
- include/dart/optimizer/GenericMultiObjectiveProblem.hpp +174 -0
- include/dart/optimizer/GradientDescentSolver.hpp +240 -0
- include/dart/optimizer/MultiObjectiveProblem.hpp +168 -0
- include/dart/optimizer/MultiObjectiveSolver.hpp +168 -0
- include/dart/optimizer/Population.hpp +108 -0
- include/dart/optimizer/Problem.hpp +191 -0
- include/dart/optimizer/Solver.hpp +182 -0
- include/dart/optimizer/all.hpp +10 -0
- include/dart/optimizer/ipopt/BackwardCompatibility.hpp +43 -0
- include/dart/optimizer/ipopt/IpoptSolver.hpp +223 -0
- include/dart/optimizer/ipopt/all.hpp +4 -0
- include/dart/optimizer/ipopt/ipopt.hpp +14 -0
- include/dart/optimizer/nlopt/NloptSolver.hpp +212 -0
- include/dart/optimizer/nlopt/all.hpp +3 -0
- include/dart/optimizer/nlopt/nlopt.hpp +14 -0
- include/dart/optimizer/optimizer.hpp +14 -0
- include/dart/simulation/Recording.hpp +118 -0
- include/dart/simulation/SmartPointer.hpp +46 -0
- include/dart/simulation/World.hpp +405 -0
- include/dart/simulation/all.hpp +5 -0
- include/dart/simulation/detail/World-impl.hpp +129 -0
- include/dart/simulation/simulation.hpp +14 -0
- include/dart/utils/C3D.hpp +107 -0
- include/dart/utils/CompositeResourceRetriever.hpp +97 -0
- include/dart/utils/DartResourceRetriever.hpp +104 -0
- include/dart/utils/FileInfoC3D.hpp +91 -0
- include/dart/utils/FileInfoDof.hpp +109 -0
- include/dart/utils/FileInfoWorld.hpp +75 -0
- include/dart/utils/PackageResourceRetriever.hpp +118 -0
- include/dart/utils/SkelParser.hpp +70 -0
- include/dart/utils/VskParser.hpp +108 -0
- include/dart/utils/XmlHelpers.hpp +243 -0
- include/dart/utils/all.hpp +14 -0
- include/dart/utils/detail/XmlHelpers-impl.hpp +213 -0
- include/dart/utils/mjcf/MjcfParser.hpp +80 -0
- include/dart/utils/mjcf/all.hpp +3 -0
- include/dart/utils/mjcf/mjcf.hpp +14 -0
- include/dart/utils/sdf/SdfParser.hpp +98 -0
- include/dart/utils/sdf/all.hpp +3 -0
- include/dart/utils/sdf/sdf.hpp +14 -0
- include/dart/utils/urdf/BackwardCompatibility.hpp +52 -0
- include/dart/utils/urdf/DartLoader.hpp +277 -0
- include/dart/utils/urdf/IncludeUrdf.hpp +47 -0
- include/dart/utils/urdf/URDFTypes.hpp +42 -0
- include/dart/utils/urdf/all.hpp +5 -0
- include/dart/utils/urdf/urdf.hpp +14 -0
- include/dart/utils/urdf/urdf_world_parser.hpp +83 -0
- include/dart/utils/utils.hpp +14 -0
- lib64/libdart-collision-bullet.a +0 -0
- lib64/libdart-collision-ode.a +0 -0
- lib64/libdart-external-odelcpsolver.a +0 -0
- lib64/libdart-gui-osg.a +0 -0
- lib64/libdart-optimizer-ipopt.a +0 -0
- lib64/libdart-optimizer-nlopt.a +0 -0
- lib64/libdart-utils-urdf.a +0 -0
- lib64/libdart-utils.a +0 -0
- lib64/libdart.a +0 -0
- lib64/pkgconfig/dart.pc +12 -0
- share/dart/cmake/DARTConfig.cmake +194 -0
- share/dart/cmake/DARTConfigVersion.cmake +65 -0
- share/dart/cmake/DARTFindBullet.cmake +96 -0
- share/dart/cmake/DARTFindEigen3.cmake +9 -0
- share/dart/cmake/DARTFindIPOPT.cmake +20 -0
- share/dart/cmake/DARTFindNLOPT.cmake +17 -0
- share/dart/cmake/DARTFindODE.cmake +23 -0
- share/dart/cmake/DARTFindOpenSceneGraph.cmake +69 -0
- share/dart/cmake/DARTFindassimp.cmake +18 -0
- share/dart/cmake/DARTFindfcl.cmake +23 -0
- share/dart/cmake/DARTFindfmt.cmake +9 -0
- share/dart/cmake/DARTFindimgui.cmake +21 -0
- share/dart/cmake/DARTFindoctomap.cmake +17 -0
- share/dart/cmake/DARTFindspdlog.cmake +9 -0
- share/dart/cmake/DARTFindtinyxml2.cmake +27 -0
- share/dart/cmake/DARTFindurdfdom.cmake +29 -0
- share/dart/cmake/FindIPOPT.cmake +54 -0
- share/dart/cmake/FindNLOPT.cmake +54 -0
- share/dart/cmake/FindODE.cmake +54 -0
- share/dart/cmake/Findassimp.cmake +56 -0
- share/dart/cmake/Findfcl.cmake +67 -0
- share/dart/cmake/Findimgui.cmake +70 -0
- share/dart/cmake/Findtinyxml2.cmake +54 -0
- share/dart/cmake/dart_collision-bulletComponent.cmake +19 -0
- share/dart/cmake/dart_collision-bulletTargets-release.cmake +19 -0
- share/dart/cmake/dart_collision-bulletTargets.cmake +122 -0
- share/dart/cmake/dart_collision-odeComponent.cmake +19 -0
- share/dart/cmake/dart_collision-odeTargets-release.cmake +19 -0
- share/dart/cmake/dart_collision-odeTargets.cmake +122 -0
- share/dart/cmake/dart_dartComponent.cmake +19 -0
- share/dart/cmake/dart_dartTargets-release.cmake +19 -0
- share/dart/cmake/dart_dartTargets.cmake +125 -0
- share/dart/cmake/dart_external-odelcpsolverComponent.cmake +19 -0
- share/dart/cmake/dart_external-odelcpsolverTargets-release.cmake +19 -0
- share/dart/cmake/dart_external-odelcpsolverTargets.cmake +106 -0
- share/dart/cmake/dart_gui-osgComponent.cmake +19 -0
- share/dart/cmake/dart_gui-osgTargets-release.cmake +19 -0
- share/dart/cmake/dart_gui-osgTargets.cmake +122 -0
- share/dart/cmake/dart_optimizer-ipoptComponent.cmake +19 -0
- share/dart/cmake/dart_optimizer-ipoptTargets-release.cmake +19 -0
- share/dart/cmake/dart_optimizer-ipoptTargets.cmake +123 -0
- share/dart/cmake/dart_optimizer-nloptComponent.cmake +19 -0
- share/dart/cmake/dart_optimizer-nloptTargets-release.cmake +19 -0
- share/dart/cmake/dart_optimizer-nloptTargets.cmake +123 -0
- share/dart/cmake/dart_utils-urdfComponent.cmake +19 -0
- share/dart/cmake/dart_utils-urdfTargets-release.cmake +19 -0
- share/dart/cmake/dart_utils-urdfTargets.cmake +122 -0
- share/dart/cmake/dart_utilsComponent.cmake +19 -0
- share/dart/cmake/dart_utilsTargets-release.cmake +19 -0
- share/dart/cmake/dart_utilsTargets.cmake +122 -0
- share/dart/package.xml +42 -0
- share/doc/dart/data/c3d/nick_freeform_001.c3d +0 -0
- share/doc/dart/data/c3d/squat.c3d +0 -0
- share/doc/dart/data/dof/RHand.dof +205 -0
- share/doc/dart/data/dof/fixedHand.dof +205 -0
- share/doc/dart/data/dof/init_Tpose.dof +240 -0
- share/doc/dart/data/dof/same.dof +1003 -0
- share/doc/dart/data/dof/simMotion.dof +1817 -0
- share/doc/dart/data/dof/simMotion1.dof +1355 -0
- share/doc/dart/data/etc/fort.4 +43 -0
- share/doc/dart/data/humanJointLimits/neuralnets/net-larm +0 -0
- share/doc/dart/data/humanJointLimits/neuralnets/net-lleg +0 -0
- share/doc/dart/data/mjcf/openai/LICENSE.md +36 -0
- share/doc/dart/data/mjcf/openai/ant.xml +81 -0
- share/doc/dart/data/mjcf/openai/half_cheetah.xml +96 -0
- share/doc/dart/data/mjcf/openai/hopper.xml +50 -0
- share/doc/dart/data/mjcf/openai/humanoid.xml +121 -0
- share/doc/dart/data/mjcf/openai/humanoidstandup.xml +121 -0
- share/doc/dart/data/mjcf/openai/inverted_double_pendulum.xml +47 -0
- share/doc/dart/data/mjcf/openai/inverted_pendulum.xml +27 -0
- share/doc/dart/data/mjcf/openai/point.xml +31 -0
- share/doc/dart/data/mjcf/openai/pusher.xml +91 -0
- share/doc/dart/data/mjcf/openai/reacher.xml +39 -0
- share/doc/dart/data/mjcf/openai/robotics/fetch/pick_and_place.xml +35 -0
- share/doc/dart/data/mjcf/openai/robotics/fetch/push.xml +32 -0
- share/doc/dart/data/mjcf/openai/robotics/fetch/reach.xml +26 -0
- share/doc/dart/data/mjcf/openai/robotics/fetch/robot.xml +123 -0
- share/doc/dart/data/mjcf/openai/robotics/fetch/shared.xml +66 -0
- share/doc/dart/data/mjcf/openai/robotics/fetch/slide.xml +32 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/.get +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/base_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/bellows_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/elbow_flex_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/estop_link.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/forearm_roll_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/gripper_link.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/head_pan_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/head_tilt_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/l_wheel_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/laser_link.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/r_wheel_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/shoulder_lift_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/shoulder_pan_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/torso_fixed_link.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/torso_lift_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/upperarm_roll_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/wrist_flex_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/stls/fetch/wrist_roll_link_collision.stl +0 -0
- share/doc/dart/data/mjcf/openai/robotics/textures/block.png +0 -0
- share/doc/dart/data/mjcf/openai/robotics/textures/block_hidden.png +0 -0
- share/doc/dart/data/mjcf/openai/striker.xml +101 -0
- share/doc/dart/data/mjcf/openai/swimmer.xml +39 -0
- share/doc/dart/data/mjcf/openai/thrower.xml +127 -0
- share/doc/dart/data/mjcf/openai/walker2d.xml +62 -0
- share/doc/dart/data/mjcf/test/default.xml +17 -0
- share/doc/dart/data/mjcf/test/include_default.xml +8 -0
- share/doc/dart/data/mjcf/test/include_main.xml +12 -0
- share/doc/dart/data/obj/Body_Hip.obj +22830 -0
- share/doc/dart/data/obj/BoxSmall.obj +23 -0
- share/doc/dart/data/obj/foot.obj +10970 -0
- share/doc/dart/data/other/torus1.path +11991 -0
- share/doc/dart/data/other/torus1.tris +5329 -0
- share/doc/dart/data/other/torus2.path +11991 -0
- share/doc/dart/data/other/torus2.tris +12961 -0
- share/doc/dart/data/screencap/.KEEP +0 -0
- share/doc/dart/data/sdf/atlas/atlas_v3.urdf +914 -0
- share/doc/dart/data/sdf/atlas/atlas_v3_no_head.sdf +1541 -0
- share/doc/dart/data/sdf/atlas/atlas_v3_no_head.urdf +914 -0
- share/doc/dart/data/sdf/atlas/atlas_v3_no_head_soft_feet.sdf +1567 -0
- share/doc/dart/data/sdf/atlas/ground.urdf +28 -0
- share/doc/dart/data/sdf/atlas/head.dae +8607 -0
- share/doc/dart/data/sdf/atlas/head.stl +0 -0
- share/doc/dart/data/sdf/atlas/head_camera.dae +2326 -0
- share/doc/dart/data/sdf/atlas/head_camera.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_clav.dae +1278 -0
- share/doc/dart/data/sdf/atlas/l_clav.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_farm.dae +1204 -0
- share/doc/dart/data/sdf/atlas/l_farm.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_foot.dae +1330 -0
- share/doc/dart/data/sdf/atlas/l_foot.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_hand.dae +964 -0
- share/doc/dart/data/sdf/atlas/l_hand.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_larm.dae +1378 -0
- share/doc/dart/data/sdf/atlas/l_larm.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_lglut.dae +897 -0
- share/doc/dart/data/sdf/atlas/l_lglut.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_lleg.dae +6660 -0
- share/doc/dart/data/sdf/atlas/l_lleg.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_scap.dae +1531 -0
- share/doc/dart/data/sdf/atlas/l_scap.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_talus.dae +374 -0
- share/doc/dart/data/sdf/atlas/l_talus.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_uarm.dae +1204 -0
- share/doc/dart/data/sdf/atlas/l_uarm.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_uglut.dae +398 -0
- share/doc/dart/data/sdf/atlas/l_uglut.stl +0 -0
- share/doc/dart/data/sdf/atlas/l_uleg.dae +9087 -0
- share/doc/dart/data/sdf/atlas/l_uleg.stl +0 -0
- share/doc/dart/data/sdf/atlas/ltorso.dae +614 -0
- share/doc/dart/data/sdf/atlas/ltorso.stl +0 -0
- share/doc/dart/data/sdf/atlas/mtorso.dae +266 -0
- share/doc/dart/data/sdf/atlas/mtorso.stl +0 -0
- share/doc/dart/data/sdf/atlas/pelvis.dae +8727 -0
- share/doc/dart/data/sdf/atlas/pelvis.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_clav.dae +1278 -0
- share/doc/dart/data/sdf/atlas/r_clav.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_farm.dae +1204 -0
- share/doc/dart/data/sdf/atlas/r_farm.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_foot.dae +1330 -0
- share/doc/dart/data/sdf/atlas/r_foot.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_hand.dae +904 -0
- share/doc/dart/data/sdf/atlas/r_hand.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_larm.dae +1378 -0
- share/doc/dart/data/sdf/atlas/r_larm.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_lglut.dae +897 -0
- share/doc/dart/data/sdf/atlas/r_lglut.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_lleg.dae +6661 -0
- share/doc/dart/data/sdf/atlas/r_lleg.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_scap.dae +1531 -0
- share/doc/dart/data/sdf/atlas/r_scap.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_talus.dae +374 -0
- share/doc/dart/data/sdf/atlas/r_talus.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_uarm.dae +1144 -0
- share/doc/dart/data/sdf/atlas/r_uarm.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_uglut.dae +398 -0
- share/doc/dart/data/sdf/atlas/r_uglut.stl +0 -0
- share/doc/dart/data/sdf/atlas/r_uleg.dae +9087 -0
- share/doc/dart/data/sdf/atlas/r_uleg.stl +0 -0
- share/doc/dart/data/sdf/atlas/utorso.dae +28342 -0
- share/doc/dart/data/sdf/atlas/utorso.stl +0 -0
- share/doc/dart/data/sdf/atlas/utorso_mod.dae +16508 -0
- share/doc/dart/data/sdf/atlas/utorso_mod.stl +0 -0
- share/doc/dart/data/sdf/atlas/utorso_pack.dae +8521 -0
- share/doc/dart/data/sdf/atlas/utorso_pack.stl +0 -0
- share/doc/dart/data/sdf/benchmark.world +2510 -0
- share/doc/dart/data/sdf/double_pendulum.world +168 -0
- share/doc/dart/data/sdf/double_pendulum_with_base.world +263 -0
- share/doc/dart/data/sdf/empty.world +13 -0
- share/doc/dart/data/sdf/ground.world +48 -0
- share/doc/dart/data/sdf/materials/textures/atlas_cage_and_camera_diffuse_flat.jpg +0 -0
- share/doc/dart/data/sdf/materials/textures/drc_extremities_diffuse.jpg +0 -0
- share/doc/dart/data/sdf/materials/textures/drc_labels_1.jpg +0 -0
- share/doc/dart/data/sdf/materials/textures/drc_torso_head_diffuse.jpg +0 -0
- share/doc/dart/data/sdf/materials/textures/extremities_diffuse_unplugged.jpg +0 -0
- share/doc/dart/data/sdf/materials/textures/right_leg_diffuse_unplugged.jpg +0 -0
- share/doc/dart/data/sdf/materials/textures/torso_diffuse_unplugged.jpg +0 -0
- share/doc/dart/data/sdf/quad.sdf +867 -0
- share/doc/dart/data/sdf/test/force_torque_test.world +173 -0
- share/doc/dart/data/sdf/test/force_torque_test2.world +214 -0
- share/doc/dart/data/sdf/test/issue1193_revolute_test.sdf +70 -0
- share/doc/dart/data/sdf/test/issue1193_revolute_with_offset_test.sdf +70 -0
- share/doc/dart/data/sdf/test/issue1624_cubes.sdf +5037 -0
- share/doc/dart/data/sdf/test/single_bodynode_skeleton.world +55 -0
- share/doc/dart/data/sdf/test/test_issue1583.model +45 -0
- share/doc/dart/data/sdf/test/test_issue1596.model +182 -0
- share/doc/dart/data/sdf/test/test_skeleton_joint.world +278 -0
- share/doc/dart/data/skel/biped.skel +850 -0
- share/doc/dart/data/skel/bullet_collision.skel +174 -0
- share/doc/dart/data/skel/chain.skel +212 -0
- share/doc/dart/data/skel/cube.skel +71 -0
- share/doc/dart/data/skel/cubes.skel +137 -0
- share/doc/dart/data/skel/empty.skel +10 -0
- share/doc/dart/data/skel/freeChain.skel +212 -0
- share/doc/dart/data/skel/fullbody1.skel +1177 -0
- share/doc/dart/data/skel/ground.skel +31 -0
- share/doc/dart/data/skel/joint_limit.skel +123 -0
- share/doc/dart/data/skel/kima/abdomen.dae +18933 -0
- share/doc/dart/data/skel/kima/head.dae +34634 -0
- share/doc/dart/data/skel/kima/kima_human_edited.skel +933 -0
- share/doc/dart/data/skel/kima/kima_human_left_arm.skel +323 -0
- share/doc/dart/data/skel/kima/kima_human_left_leg.skel +327 -0
- share/doc/dart/data/skel/kima/l-clavicle.dae +20111 -0
- share/doc/dart/data/skel/kima/l-foot.dae +28208 -0
- share/doc/dart/data/skel/kima/pelvis.dae +35919 -0
- share/doc/dart/data/skel/kima/r-clavicle.dae +20090 -0
- share/doc/dart/data/skel/kima/thorax.dae +47337 -0
- share/doc/dart/data/skel/mesh_collision.skel +137 -0
- share/doc/dart/data/skel/shapes.skel +378 -0
- share/doc/dart/data/skel/skateboard.skel +222 -0
- share/doc/dart/data/skel/softBodies.skel +284 -0
- share/doc/dart/data/skel/soft_cubes.skel +134 -0
- share/doc/dart/data/skel/soft_open_chain.skel +241 -0
- share/doc/dart/data/skel/sphere.skel +74 -0
- share/doc/dart/data/skel/spheres.skel +118 -0
- share/doc/dart/data/skel/test/SimplePendulum.skel +141 -0
- share/doc/dart/data/skel/test/ball_joints.skel +49 -0
- share/doc/dart/data/skel/test/box_stacking.skel +346 -0
- share/doc/dart/data/skel/test/boxes.skel +52 -0
- share/doc/dart/data/skel/test/chainwhipa.skel +193 -0
- share/doc/dart/data/skel/test/collision_of_prescribed_joints_test.skel +249 -0
- share/doc/dart/data/skel/test/dof_attribute_test.skel +206 -0
- share/doc/dart/data/skel/test/double_pendulum.skel +76 -0
- share/doc/dart/data/skel/test/double_pendulum_ball_joint.skel +76 -0
- share/doc/dart/data/skel/test/double_pendulum_euler_joint.skel +78 -0
- share/doc/dart/data/skel/test/double_pendulum_with_base.skel +1390 -0
- share/doc/dart/data/skel/test/drop.skel +116 -0
- share/doc/dart/data/skel/test/drop_BENCHMARK.skel +10 -0
- share/doc/dart/data/skel/test/drop_unrotated_box.skel +156 -0
- share/doc/dart/data/skel/test/empty.skel +10 -0
- share/doc/dart/data/skel/test/file_info_world_test.skel +1177 -0
- share/doc/dart/data/skel/test/free_joints.skel +49 -0
- share/doc/dart/data/skel/test/gazebo/drop_test.skel +161 -0
- share/doc/dart/data/skel/test/gazebo/force_torque_test.skel +138 -0
- share/doc/dart/data/skel/test/gazebo/force_torque_test2.skel +171 -0
- share/doc/dart/data/skel/test/hybrid_dynamics_test.skel +172 -0
- share/doc/dart/data/skel/test/joint_actuator_type_test.skel +185 -0
- share/doc/dart/data/skel/test/joint_dynamics_elements_test.skel +103 -0
- share/doc/dart/data/skel/test/joint_friction_test.skel +80 -0
- share/doc/dart/data/skel/test/joint_limit_test.skel +80 -0
- share/doc/dart/data/skel/test/planar_joint.skel +167 -0
- share/doc/dart/data/skel/test/serial_chain_BENCHMARK.skel +10 -0
- share/doc/dart/data/skel/test/serial_chain_ball_joint.skel +212 -0
- share/doc/dart/data/skel/test/serial_chain_ball_joint_20.skel +412 -0
- share/doc/dart/data/skel/test/serial_chain_ball_joint_40.skel +812 -0
- share/doc/dart/data/skel/test/serial_chain_eulerxyz_joint.skel +224 -0
- share/doc/dart/data/skel/test/serial_chain_revolute_joint.skel +244 -0
- share/doc/dart/data/skel/test/simple_tree_structure.skel +108 -0
- share/doc/dart/data/skel/test/simple_tree_structure_ball_joint.skel +108 -0
- share/doc/dart/data/skel/test/simple_tree_structure_euler_joint.skel +111 -0
- share/doc/dart/data/skel/test/single_pendulum.skel +55 -0
- share/doc/dart/data/skel/test/single_pendulum_ball_joint.skel +55 -0
- share/doc/dart/data/skel/test/single_pendulum_euler_joint.skel +56 -0
- share/doc/dart/data/skel/test/spheres.skel +118 -0
- share/doc/dart/data/skel/test/test_adaptive_deformable.skel +88 -0
- share/doc/dart/data/skel/test/test_articulated_bodies.skel +112 -0
- share/doc/dart/data/skel/test/test_articulated_bodies_10bodies.skel +401 -0
- share/doc/dart/data/skel/test/test_double_pendulum.skel +105 -0
- share/doc/dart/data/skel/test/test_drop_box.skel +87 -0
- share/doc/dart/data/skel/test/test_drop_box_offset.skel +87 -0
- share/doc/dart/data/skel/test/test_drop_low_stiffness.skel +86 -0
- share/doc/dart/data/skel/test/test_drop_sphere.skel +86 -0
- share/doc/dart/data/skel/test/test_shapes.skel +324 -0
- share/doc/dart/data/skel/test/test_single_body.skel +55 -0
- share/doc/dart/data/skel/test/test_single_pendulum.skel +55 -0
- share/doc/dart/data/skel/test/translational_joints.skel +49 -0
- share/doc/dart/data/skel/test/tree_structure.skel +428 -0
- share/doc/dart/data/skel/test/tree_structure_ball_joint.skel +441 -0
- share/doc/dart/data/skel/test/tree_structure_euler_joint.skel +441 -0
- share/doc/dart/data/skel/two_cubes.skel +118 -0
- share/doc/dart/data/skel/vehicle.skel +322 -0
- share/doc/dart/data/test/hello_world.txt +1 -0
- share/doc/dart/data/urdf/KR5/KR5 sixx R650.urdf +397 -0
- share/doc/dart/data/urdf/KR5/ground.urdf +28 -0
- share/doc/dart/data/urdf/KR5/meshes/base_link.STL +0 -0
- share/doc/dart/data/urdf/KR5/meshes/bicep.STL +0 -0
- share/doc/dart/data/urdf/KR5/meshes/elbow.STL +0 -0
- share/doc/dart/data/urdf/KR5/meshes/forearm.STL +0 -0
- share/doc/dart/data/urdf/KR5/meshes/palm.STL +0 -0
- share/doc/dart/data/urdf/KR5/meshes/shoulder.STL +0 -0
- share/doc/dart/data/urdf/KR5/meshes/wrist.STL +0 -0
- share/doc/dart/data/urdf/drchubo/CMakeLists.txt +5 -0
- share/doc/dart/data/urdf/drchubo/drchubo.urdf +1508 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LAP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LAR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LEP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LF1.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LF2.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LF3.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LHP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LHR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LHY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LKP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LSP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LSR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LSY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LWP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LWR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_LWY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_NK1_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_NK2.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_NKY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RAP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RAR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_REP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RF1.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RF2.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RF3.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RHP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RHR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RHY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RKP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RSP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RSR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RSY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RWP_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RWR_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_RWY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_TSY_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/meshes/convhull_Torso_merged.stl +0 -0
- share/doc/dart/data/urdf/drchubo/package.xml +11 -0
- share/doc/dart/data/urdf/test/invalid.urdf +1 -0
- share/doc/dart/data/urdf/test/invalid_mesh.stl +1 -0
- share/doc/dart/data/urdf/test/invalid_mesh.urdf +10 -0
- share/doc/dart/data/urdf/test/issue838.urdf +86 -0
- share/doc/dart/data/urdf/test/joint_properties.urdf +60 -0
- share/doc/dart/data/urdf/test/missing_mesh.urdf +10 -0
- share/doc/dart/data/urdf/test/missing_package.urdf +10 -0
- share/doc/dart/data/urdf/test/primitive_geometry.urdf +12 -0
- share/doc/dart/data/urdf/test/testWorld.urdf +9 -0
- share/doc/dart/data/urdf/wam/meshes/images/base_gray_128x.jpg +0 -0
- share/doc/dart/data/urdf/wam/meshes/images/forearm_256x.jpg +0 -0
- share/doc/dart/data/urdf/wam/meshes/images/lpu_128x.jpg +0 -0
- share/doc/dart/data/urdf/wam/meshes/images/shoulder_256x.jpg +0 -0
- share/doc/dart/data/urdf/wam/meshes/images/upperarm_128x.jpg +0 -0
- share/doc/dart/data/urdf/wam/meshes/images/wrist_yaw_128x.jpg +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam1.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam1.dae +187 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam1_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam2.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam2.dae +187 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam2_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam3.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam3.dae +187 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam3_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam4.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam4.dae +187 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam4_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam5.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam5.dae +187 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam5_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam6.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam6.dae +187 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam6_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam7.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam7.dae +137 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam7_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam_base.STL +0 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam_base.dae +103 -0
- share/doc/dart/data/urdf/wam/meshes/wam/wam_base_collision.STL +0 -0
- share/doc/dart/data/urdf/wam/wam.urdf +230 -0
- share/doc/dart/data/vsk/Nick01.vsk +398 -0
- share/doc/dart/data/vsk/SehoonVSK3.vsk +398 -0
- share/doc/dart/data/vsk/Yuting.vsk +398 -0
- share/doc/dart/data/vsk/test/empty.vsk +3 -0
- share/doc/dart/examples/CMakeLists.txt +44 -0
- share/doc/dart/examples/README.md +33 -0
- share/doc/dart/examples/add_delete_skels/CMakeLists.txt +19 -0
- share/doc/dart/examples/add_delete_skels/main.cpp +165 -0
- share/doc/dart/examples/atlas_puppet/CMakeLists.txt +19 -0
- share/doc/dart/examples/atlas_puppet/README.md +20 -0
- share/doc/dart/examples/atlas_puppet/main.cpp +930 -0
- share/doc/dart/examples/atlas_simbicon/AtlasSimbiconEventHandler.cpp +71 -0
- share/doc/dart/examples/atlas_simbicon/AtlasSimbiconEventHandler.hpp +56 -0
- share/doc/dart/examples/atlas_simbicon/AtlasSimbiconWidget.cpp +187 -0
- share/doc/dart/examples/atlas_simbicon/AtlasSimbiconWidget.hpp +85 -0
- share/doc/dart/examples/atlas_simbicon/AtlasSimbiconWorldNode.cpp +134 -0
- share/doc/dart/examples/atlas_simbicon/AtlasSimbiconWorldNode.hpp +75 -0
- share/doc/dart/examples/atlas_simbicon/CMakeLists.txt +19 -0
- share/doc/dart/examples/atlas_simbicon/Controller.cpp +996 -0
- share/doc/dart/examples/atlas_simbicon/Controller.hpp +203 -0
- share/doc/dart/examples/atlas_simbicon/README.md +20 -0
- share/doc/dart/examples/atlas_simbicon/State.cpp +674 -0
- share/doc/dart/examples/atlas_simbicon/State.hpp +336 -0
- share/doc/dart/examples/atlas_simbicon/StateMachine.cpp +222 -0
- share/doc/dart/examples/atlas_simbicon/StateMachine.hpp +134 -0
- share/doc/dart/examples/atlas_simbicon/TerminalCondition.cpp +111 -0
- share/doc/dart/examples/atlas_simbicon/TerminalCondition.hpp +102 -0
- share/doc/dart/examples/atlas_simbicon/main.cpp +102 -0
- share/doc/dart/examples/biped_stand/CMakeLists.txt +19 -0
- share/doc/dart/examples/biped_stand/README.md +20 -0
- share/doc/dart/examples/biped_stand/main.cpp +287 -0
- share/doc/dart/examples/box_stacking/CMakeLists.txt +19 -0
- share/doc/dart/examples/box_stacking/README.md +20 -0
- share/doc/dart/examples/box_stacking/main.cpp +417 -0
- share/doc/dart/examples/boxes/CMakeLists.txt +19 -0
- share/doc/dart/examples/boxes/README.md +20 -0
- share/doc/dart/examples/boxes/main.cpp +157 -0
- share/doc/dart/examples/drag_and_drop/CMakeLists.txt +19 -0
- share/doc/dart/examples/drag_and_drop/README.md +20 -0
- share/doc/dart/examples/drag_and_drop/main.cpp +101 -0
- share/doc/dart/examples/empty/CMakeLists.txt +19 -0
- share/doc/dart/examples/empty/README.md +20 -0
- share/doc/dart/examples/empty/main.cpp +164 -0
- share/doc/dart/examples/fetch/CMakeLists.txt +19 -0
- share/doc/dart/examples/fetch/README.md +20 -0
- share/doc/dart/examples/fetch/main.cpp +246 -0
- share/doc/dart/examples/hardcoded_design/CMakeLists.txt +19 -0
- share/doc/dart/examples/hardcoded_design/HardcodedEventHandler.cpp +71 -0
- share/doc/dart/examples/hardcoded_design/HardcodedEventHandler.hpp +56 -0
- share/doc/dart/examples/hardcoded_design/README.md +27 -0
- share/doc/dart/examples/hardcoded_design/main.cpp +186 -0
- share/doc/dart/examples/heightmap/CMakeLists.txt +19 -0
- share/doc/dart/examples/heightmap/README.md +20 -0
- share/doc/dart/examples/heightmap/main.cpp +460 -0
- share/doc/dart/examples/hello_world/CMakeLists.txt +19 -0
- share/doc/dart/examples/hello_world/README.md +20 -0
- share/doc/dart/examples/hello_world/main.cpp +114 -0
- share/doc/dart/examples/hubo_puppet/CMakeLists.txt +19 -0
- share/doc/dart/examples/hubo_puppet/README.md +20 -0
- share/doc/dart/examples/hubo_puppet/main.cpp +1464 -0
- share/doc/dart/examples/human_joint_limits/CMakeLists.txt +49 -0
- share/doc/dart/examples/human_joint_limits/HumanArmJointLimitConstraint.cpp +411 -0
- share/doc/dart/examples/human_joint_limits/HumanArmJointLimitConstraint.hpp +182 -0
- share/doc/dart/examples/human_joint_limits/HumanLegJointLimitConstraint.cpp +432 -0
- share/doc/dart/examples/human_joint_limits/HumanLegJointLimitConstraint.hpp +179 -0
- share/doc/dart/examples/human_joint_limits/main.cpp +157 -0
- share/doc/dart/examples/hybrid_dynamics/CMakeLists.txt +19 -0
- share/doc/dart/examples/hybrid_dynamics/README.md +17 -0
- share/doc/dart/examples/hybrid_dynamics/main.cpp +187 -0
- share/doc/dart/examples/imgui/CMakeLists.txt +19 -0
- share/doc/dart/examples/imgui/README.md +20 -0
- share/doc/dart/examples/imgui/main.cpp +289 -0
- share/doc/dart/examples/joint_constraints/CMakeLists.txt +19 -0
- share/doc/dart/examples/joint_constraints/Controller.cpp +110 -0
- share/doc/dart/examples/joint_constraints/Controller.hpp +105 -0
- share/doc/dart/examples/joint_constraints/README.md +22 -0
- share/doc/dart/examples/joint_constraints/main.cpp +242 -0
- share/doc/dart/examples/mixed_chain/CMakeLists.txt +19 -0
- share/doc/dart/examples/mixed_chain/README.md +35 -0
- share/doc/dart/examples/mixed_chain/main.cpp +188 -0
- share/doc/dart/examples/operational_space_control/CMakeLists.txt +19 -0
- share/doc/dart/examples/operational_space_control/README.md +20 -0
- share/doc/dart/examples/operational_space_control/main.cpp +338 -0
- share/doc/dart/examples/point_cloud/CMakeLists.txt +19 -0
- share/doc/dart/examples/point_cloud/README.md +20 -0
- share/doc/dart/examples/point_cloud/main.cpp +740 -0
- share/doc/dart/examples/rerun/CMakeLists.txt +19 -0
- share/doc/dart/examples/rigid_chain/CMakeLists.txt +19 -0
- share/doc/dart/examples/rigid_chain/README.md +19 -0
- share/doc/dart/examples/rigid_chain/main.cpp +110 -0
- share/doc/dart/examples/rigid_cubes/CMakeLists.txt +19 -0
- share/doc/dart/examples/rigid_cubes/README.md +91 -0
- share/doc/dart/examples/rigid_cubes/main.cpp +201 -0
- share/doc/dart/examples/rigid_loop/CMakeLists.txt +19 -0
- share/doc/dart/examples/rigid_loop/README.md +34 -0
- share/doc/dart/examples/rigid_loop/main.cpp +127 -0
- share/doc/dart/examples/rigid_shapes/CMakeLists.txt +19 -0
- share/doc/dart/examples/rigid_shapes/README.md +19 -0
- share/doc/dart/examples/rigid_shapes/main.cpp +250 -0
- share/doc/dart/examples/simple_frames/CMakeLists.txt +19 -0
- share/doc/dart/examples/simple_frames/README.md +27 -0
- share/doc/dart/examples/simple_frames/main.cpp +124 -0
- share/doc/dart/examples/simulation_event_handler/CMakeLists.txt +19 -0
- share/doc/dart/examples/simulation_event_handler/README.md +189 -0
- share/doc/dart/examples/simulation_event_handler/SimulationEventHandler.cpp +572 -0
- share/doc/dart/examples/simulation_event_handler/SimulationEventHandler.hpp +211 -0
- share/doc/dart/examples/simulation_event_handler/main.cpp +277 -0
- share/doc/dart/examples/soft_bodies/CMakeLists.txt +19 -0
- share/doc/dart/examples/soft_bodies/README.md +20 -0
- share/doc/dart/examples/soft_bodies/main.cpp +219 -0
- share/doc/dart/examples/speed_test/CMakeLists.txt +19 -0
- share/doc/dart/examples/speed_test/README.md +20 -0
- share/doc/dart/examples/speed_test/main.cpp +250 -0
- share/doc/dart/examples/tinkertoy/CMakeLists.txt +19 -0
- share/doc/dart/examples/tinkertoy/README.md +20 -0
- share/doc/dart/examples/tinkertoy/TinkertoyWidget.cpp +208 -0
- share/doc/dart/examples/tinkertoy/TinkertoyWidget.hpp +70 -0
- share/doc/dart/examples/tinkertoy/TinkertoyWorldNode.cpp +35 -0
- share/doc/dart/examples/tinkertoy/TinkertoyWorldNode.hpp +470 -0
- share/doc/dart/examples/tinkertoy/main.cpp +186 -0
- share/doc/dart/examples/vehicle/CMakeLists.txt +19 -0
- share/doc/dart/examples/vehicle/README.md +22 -0
- share/doc/dart/examples/vehicle/main.cpp +195 -0
- share/doc/dart/examples/wam_ikfast/CMakeLists.txt +22 -0
- share/doc/dart/examples/wam_ikfast/Helpers.cpp +148 -0
- share/doc/dart/examples/wam_ikfast/Helpers.hpp +46 -0
- share/doc/dart/examples/wam_ikfast/InputHandler.cpp +110 -0
- share/doc/dart/examples/wam_ikfast/InputHandler.hpp +73 -0
- share/doc/dart/examples/wam_ikfast/README.md +20 -0
- share/doc/dart/examples/wam_ikfast/WamWorld.cpp +46 -0
- share/doc/dart/examples/wam_ikfast/WamWorld.hpp +53 -0
- share/doc/dart/examples/wam_ikfast/ikfast/CMakeLists.txt +11 -0
- share/doc/dart/examples/wam_ikfast/ikfast/ikfast71.Transform6D.4_6_9_10_11_12_f8.cpp +14930 -0
- share/doc/dart/examples/wam_ikfast/osgWamIkFast.cpp +96 -0
- share/doc/dart/tutorials/CMakeLists.txt +12 -0
- share/doc/dart/tutorials/README.md +45 -0
- share/doc/dart/tutorials/tutorial_biped/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_biped/README +18 -0
- share/doc/dart/tutorials/tutorial_biped/main.cpp +374 -0
- share/doc/dart/tutorials/tutorial_biped_finished/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_biped_finished/README +18 -0
- share/doc/dart/tutorials/tutorial_biped_finished/main.cpp +532 -0
- share/doc/dart/tutorials/tutorial_collisions/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_collisions/README +18 -0
- share/doc/dart/tutorials/tutorial_collisions/main.cpp +506 -0
- share/doc/dart/tutorials/tutorial_collisions_finished/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_collisions_finished/README +18 -0
- share/doc/dart/tutorials/tutorial_collisions_finished/main.cpp +679 -0
- share/doc/dart/tutorials/tutorial_dominoes/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_dominoes/README +18 -0
- share/doc/dart/tutorials/tutorial_dominoes/main.cpp +394 -0
- share/doc/dart/tutorials/tutorial_dominoes_finished/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_dominoes_finished/README +18 -0
- share/doc/dart/tutorials/tutorial_dominoes_finished/main.cpp +559 -0
- share/doc/dart/tutorials/tutorial_multi_pendulum/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_multi_pendulum/README +18 -0
- share/doc/dart/tutorials/tutorial_multi_pendulum/main.cpp +443 -0
- share/doc/dart/tutorials/tutorial_multi_pendulum_finished/CMakeLists.txt +19 -0
- share/doc/dart/tutorials/tutorial_multi_pendulum_finished/README +18 -0
- share/doc/dart/tutorials/tutorial_multi_pendulum_finished/main.cpp +512 -0
|
@@ -0,0 +1,897 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<COLLADA xmlns="http://www.collada.org/2005/11/COLLADASchema" version="1.4.1">
|
|
3
|
+
<asset>
|
|
4
|
+
<contributor>
|
|
5
|
+
<author></author>
|
|
6
|
+
<authoring_tool>FBX COLLADA exporter</authoring_tool>
|
|
7
|
+
<comments></comments>
|
|
8
|
+
</contributor>
|
|
9
|
+
<created>2013-04-12T18:28:27Z</created>
|
|
10
|
+
<keywords></keywords>
|
|
11
|
+
<modified>2013-04-12T18:28:27Z</modified>
|
|
12
|
+
<revision></revision>
|
|
13
|
+
<subject></subject>
|
|
14
|
+
<title></title>
|
|
15
|
+
<unit meter="1.000000" name="meter"></unit>
|
|
16
|
+
<up_axis>Z_UP</up_axis>
|
|
17
|
+
</asset>
|
|
18
|
+
<library_images>
|
|
19
|
+
<image id="drc_extremities_diffuse-image" name="drc_extremities_diffuse">
|
|
20
|
+
<init_from>../materials/textures/drc_extremities_diffuse.jpg</init_from>
|
|
21
|
+
</image>
|
|
22
|
+
</library_images>
|
|
23
|
+
<library_materials>
|
|
24
|
+
<material id="drc_extremities_diffuse" name="drc_extremities_diffuse">
|
|
25
|
+
<instance_effect url="#drc_extremities_diffuse-fx"/>
|
|
26
|
+
</material>
|
|
27
|
+
</library_materials>
|
|
28
|
+
<library_effects>
|
|
29
|
+
<effect id="drc_extremities_diffuse-fx" name="drc_extremities_diffuse">
|
|
30
|
+
<profile_COMMON>
|
|
31
|
+
<technique sid="standard">
|
|
32
|
+
<phong>
|
|
33
|
+
<emission>
|
|
34
|
+
<color sid="emission">0.000000 0.000000 0.000000 1.000000</color>
|
|
35
|
+
</emission>
|
|
36
|
+
<ambient>
|
|
37
|
+
<color sid="ambient">0.588235 0.588235 0.588235 1.000000</color>
|
|
38
|
+
</ambient>
|
|
39
|
+
<diffuse>
|
|
40
|
+
<texture texture="drc_extremities_diffuse-image" texcoord="CHANNEL0">
|
|
41
|
+
<extra>
|
|
42
|
+
<technique profile="MAYA">
|
|
43
|
+
<wrapU sid="wrapU0">TRUE</wrapU>
|
|
44
|
+
<wrapV sid="wrapV0">TRUE</wrapV>
|
|
45
|
+
<blend_mode>ADD</blend_mode>
|
|
46
|
+
</technique>
|
|
47
|
+
</extra>
|
|
48
|
+
</texture>
|
|
49
|
+
</diffuse>
|
|
50
|
+
<specular>
|
|
51
|
+
<color sid="specular">0.000000 0.000000 0.000000 1.000000</color>
|
|
52
|
+
</specular>
|
|
53
|
+
<shininess>
|
|
54
|
+
<float sid="shininess">2.000000</float>
|
|
55
|
+
</shininess>
|
|
56
|
+
<reflective>
|
|
57
|
+
<color sid="reflective">0.000000 0.000000 0.000000 1.000000</color>
|
|
58
|
+
</reflective>
|
|
59
|
+
<reflectivity>
|
|
60
|
+
<float sid="reflectivity">1.000000</float>
|
|
61
|
+
</reflectivity>
|
|
62
|
+
<transparent opaque="RGB_ZERO">
|
|
63
|
+
<color sid="transparent">1.000000 1.000000 1.000000 1.000000</color>
|
|
64
|
+
</transparent>
|
|
65
|
+
<transparency>
|
|
66
|
+
<float sid="transparency">0.000000</float>
|
|
67
|
+
</transparency>
|
|
68
|
+
</phong>
|
|
69
|
+
</technique>
|
|
70
|
+
</profile_COMMON>
|
|
71
|
+
</effect>
|
|
72
|
+
</library_effects>
|
|
73
|
+
<library_geometries>
|
|
74
|
+
<geometry id="drc_r_lglut-lib" name="drc_r_lglutMesh">
|
|
75
|
+
<mesh>
|
|
76
|
+
<source id="drc_r_lglut-POSITION">
|
|
77
|
+
<float_array id="drc_r_lglut-POSITION-array" count="246">
|
|
78
|
+
-0.087100 -0.008200 -0.019000
|
|
79
|
+
-0.070000 0.003800 -0.019000
|
|
80
|
+
-0.069800 0.003800 0.062100
|
|
81
|
+
-0.087200 -0.008100 0.062000
|
|
82
|
+
-0.106000 0.000700 -0.019000
|
|
83
|
+
-0.105600 -0.000400 0.062200
|
|
84
|
+
-0.107800 0.021400 -0.019000
|
|
85
|
+
-0.107800 0.021400 0.062100
|
|
86
|
+
-0.090700 0.033400 -0.019000
|
|
87
|
+
-0.090700 0.033400 0.062100
|
|
88
|
+
-0.071800 0.024600 -0.019000
|
|
89
|
+
-0.071800 0.024600 0.062100
|
|
90
|
+
-0.090700 0.033400 0.095500
|
|
91
|
+
-0.107800 0.021400 0.095500
|
|
92
|
+
-0.106000 0.000700 0.095500
|
|
93
|
+
-0.070000 0.003800 0.095500
|
|
94
|
+
-0.087100 -0.008200 0.095500
|
|
95
|
+
-0.071800 0.024600 0.095500
|
|
96
|
+
-0.087100 -0.008200 -0.046100
|
|
97
|
+
-0.106000 0.000700 -0.046100
|
|
98
|
+
-0.107800 0.021400 -0.046100
|
|
99
|
+
-0.071800 0.024600 -0.046100
|
|
100
|
+
-0.090700 0.033400 -0.046100
|
|
101
|
+
-0.070000 0.003800 -0.046100
|
|
102
|
+
-0.090700 0.033400 -0.036300
|
|
103
|
+
-0.107800 0.021400 -0.036300
|
|
104
|
+
-0.071800 0.024600 -0.036300
|
|
105
|
+
-0.090700 0.033400 0.083500
|
|
106
|
+
-0.071800 0.024600 0.083500
|
|
107
|
+
-0.070000 0.003800 -0.036300
|
|
108
|
+
-0.070400 0.004200 0.083500
|
|
109
|
+
-0.087100 -0.008200 -0.036300
|
|
110
|
+
-0.106000 0.000700 -0.036300
|
|
111
|
+
-0.085800 -0.008000 0.084300
|
|
112
|
+
-0.106300 0.000500 0.084700
|
|
113
|
+
-0.107000 0.021700 0.083200
|
|
114
|
+
-0.130000 -0.034600 -0.036300
|
|
115
|
+
-0.130000 -0.033100 -0.018100
|
|
116
|
+
-0.111900 -0.033100 -0.018100
|
|
117
|
+
-0.106200 -0.033100 -0.018100
|
|
118
|
+
-0.123800 -0.033100 -0.018100
|
|
119
|
+
-0.106200 -0.045700 -0.036300
|
|
120
|
+
-0.111900 -0.042900 -0.036300
|
|
121
|
+
-0.123800 -0.037400 -0.036300
|
|
122
|
+
-0.130000 -0.071700 -0.012500
|
|
123
|
+
-0.130000 -0.071700 0.004800
|
|
124
|
+
-0.106200 -0.071800 0.004800
|
|
125
|
+
-0.106200 -0.071800 -0.012500
|
|
126
|
+
-0.111900 -0.071800 -0.012500
|
|
127
|
+
-0.123800 -0.071700 -0.012500
|
|
128
|
+
-0.111900 -0.071800 0.004800
|
|
129
|
+
-0.123800 -0.071700 0.004800
|
|
130
|
+
-0.111900 -0.032600 0.035200
|
|
131
|
+
-0.106200 -0.032600 0.035200
|
|
132
|
+
-0.123800 -0.032600 0.035200
|
|
133
|
+
-0.130000 -0.032600 0.035200
|
|
134
|
+
-0.130000 -0.061700 0.068800
|
|
135
|
+
-0.123800 -0.061700 0.068800
|
|
136
|
+
-0.111900 -0.061800 0.068800
|
|
137
|
+
-0.106200 -0.061800 0.068800
|
|
138
|
+
-0.111900 -0.018800 0.053600
|
|
139
|
+
-0.106200 -0.018800 0.053600
|
|
140
|
+
-0.123800 -0.018700 0.053600
|
|
141
|
+
-0.130000 -0.018700 0.053600
|
|
142
|
+
-0.143800 -0.032600 0.035200
|
|
143
|
+
-0.143800 -0.061700 0.068800
|
|
144
|
+
-0.143800 -0.036200 0.081300
|
|
145
|
+
-0.143800 -0.018700 0.053600
|
|
146
|
+
-0.123800 -0.036200 0.081300
|
|
147
|
+
-0.130000 -0.036200 0.081300
|
|
148
|
+
-0.111900 -0.036200 0.081300
|
|
149
|
+
-0.106200 -0.036300 0.081300
|
|
150
|
+
-0.079100 -0.061800 0.068800
|
|
151
|
+
-0.079100 -0.032600 0.035200
|
|
152
|
+
-0.079100 -0.018800 0.053600
|
|
153
|
+
-0.079100 -0.036300 0.081300
|
|
154
|
+
-0.126200 0.000200 0.096400
|
|
155
|
+
-0.126200 0.017700 0.063300
|
|
156
|
+
-0.134800 0.015000 0.061400
|
|
157
|
+
-0.134800 -0.002500 0.094500
|
|
158
|
+
-0.118900 0.018500 0.063000
|
|
159
|
+
-0.118900 0.001000 0.096000
|
|
160
|
+
</float_array>
|
|
161
|
+
<technique_common>
|
|
162
|
+
<accessor source="#drc_r_lglut-POSITION-array" count="82" stride="3">
|
|
163
|
+
<param name="X" type="float"/>
|
|
164
|
+
<param name="Y" type="float"/>
|
|
165
|
+
<param name="Z" type="float"/>
|
|
166
|
+
</accessor>
|
|
167
|
+
</technique_common>
|
|
168
|
+
</source>
|
|
169
|
+
<source id="drc_r_lglut-Normal0">
|
|
170
|
+
<float_array id="drc_r_lglut-Normal0-array" count="1476">
|
|
171
|
+
0.564506 -0.825427 0.001716
|
|
172
|
+
0.564506 -0.825427 0.001716
|
|
173
|
+
0.564506 -0.825427 0.001716
|
|
174
|
+
0.574425 -0.818556 -0.001417
|
|
175
|
+
0.574425 -0.818556 -0.001417
|
|
176
|
+
0.574425 -0.818556 -0.001417
|
|
177
|
+
-0.386115 -0.922390 -0.010593
|
|
178
|
+
-0.386115 -0.922390 -0.010593
|
|
179
|
+
-0.386115 -0.922390 -0.010593
|
|
180
|
+
-0.426027 -0.904710 0.000591
|
|
181
|
+
-0.426027 -0.904710 0.000591
|
|
182
|
+
-0.426027 -0.904710 0.000591
|
|
183
|
+
-0.994946 -0.100407 0.000000
|
|
184
|
+
-0.994946 -0.100407 0.000000
|
|
185
|
+
-0.994946 -0.100407 0.000000
|
|
186
|
+
-0.996234 -0.086629 0.003734
|
|
187
|
+
-0.996234 -0.086629 0.003734
|
|
188
|
+
-0.996234 -0.086629 0.003734
|
|
189
|
+
-0.574426 0.818557 -0.000000
|
|
190
|
+
-0.574426 0.818557 -0.000000
|
|
191
|
+
-0.574426 0.818557 -0.000000
|
|
192
|
+
-0.574426 0.818557 -0.000000
|
|
193
|
+
-0.574426 0.818557 -0.000000
|
|
194
|
+
-0.574426 0.818557 -0.000000
|
|
195
|
+
0.422098 0.906550 -0.000000
|
|
196
|
+
0.422098 0.906550 -0.000000
|
|
197
|
+
0.422098 0.906550 -0.000000
|
|
198
|
+
0.422098 0.906550 -0.000000
|
|
199
|
+
0.422098 0.906550 -0.000000
|
|
200
|
+
0.422098 0.906550 -0.000000
|
|
201
|
+
0.995406 0.095712 -0.002455
|
|
202
|
+
0.995406 0.095712 -0.002455
|
|
203
|
+
0.995406 0.095712 -0.002455
|
|
204
|
+
0.996276 0.086216 -0.000000
|
|
205
|
+
0.996276 0.086216 -0.000000
|
|
206
|
+
0.996276 0.086216 -0.000000
|
|
207
|
+
0.000000 0.000000 1.000000
|
|
208
|
+
0.000000 0.000000 1.000000
|
|
209
|
+
0.000000 0.000000 1.000000
|
|
210
|
+
0.000000 0.000000 1.000000
|
|
211
|
+
0.000000 0.000000 1.000000
|
|
212
|
+
0.000000 0.000000 1.000000
|
|
213
|
+
0.000000 0.000000 1.000000
|
|
214
|
+
0.000000 0.000000 1.000000
|
|
215
|
+
0.000000 0.000000 1.000000
|
|
216
|
+
0.000000 0.000000 1.000000
|
|
217
|
+
0.000000 0.000000 1.000000
|
|
218
|
+
0.000000 0.000000 1.000000
|
|
219
|
+
0.000000 0.000000 -1.000000
|
|
220
|
+
0.000000 0.000000 -1.000000
|
|
221
|
+
0.000000 0.000000 -1.000000
|
|
222
|
+
0.000000 0.000000 -1.000000
|
|
223
|
+
0.000000 0.000000 -1.000000
|
|
224
|
+
0.000000 0.000000 -1.000000
|
|
225
|
+
0.000000 0.000000 -1.000000
|
|
226
|
+
0.000000 0.000000 -1.000000
|
|
227
|
+
0.000000 0.000000 -1.000000
|
|
228
|
+
0.000000 0.000000 -1.000000
|
|
229
|
+
0.000000 0.000000 -1.000000
|
|
230
|
+
0.000000 0.000000 -1.000000
|
|
231
|
+
-0.574426 0.818557 0.000000
|
|
232
|
+
-0.574426 0.818557 0.000000
|
|
233
|
+
-0.574426 0.818557 0.000000
|
|
234
|
+
-0.574426 0.818557 -0.000000
|
|
235
|
+
-0.574426 0.818557 -0.000000
|
|
236
|
+
-0.574426 0.818557 -0.000000
|
|
237
|
+
0.422098 0.906550 -0.000000
|
|
238
|
+
0.422098 0.906550 -0.000000
|
|
239
|
+
0.422098 0.906550 -0.000000
|
|
240
|
+
0.422098 0.906550 0.000000
|
|
241
|
+
0.422098 0.906550 0.000000
|
|
242
|
+
0.422098 0.906550 0.000000
|
|
243
|
+
0.422098 0.906550 0.000000
|
|
244
|
+
0.422098 0.906550 0.000000
|
|
245
|
+
0.422098 0.906550 0.000000
|
|
246
|
+
0.422098 0.906550 -0.000000
|
|
247
|
+
0.422098 0.906550 -0.000000
|
|
248
|
+
0.422098 0.906550 -0.000000
|
|
249
|
+
0.996276 0.086216 -0.000000
|
|
250
|
+
0.996276 0.086216 -0.000000
|
|
251
|
+
0.996276 0.086216 -0.000000
|
|
252
|
+
0.996276 0.086216 -0.000000
|
|
253
|
+
0.996276 0.086216 -0.000000
|
|
254
|
+
0.996276 0.086216 -0.000000
|
|
255
|
+
0.995409 0.095713 -0.000000
|
|
256
|
+
0.995409 0.095713 -0.000000
|
|
257
|
+
0.995409 0.095713 -0.000000
|
|
258
|
+
0.997298 0.068442 0.026682
|
|
259
|
+
0.997298 0.068442 0.026682
|
|
260
|
+
0.997298 0.068442 0.026682
|
|
261
|
+
0.574426 -0.818557 0.000000
|
|
262
|
+
0.574426 -0.818557 0.000000
|
|
263
|
+
0.574426 -0.818557 0.000000
|
|
264
|
+
0.574426 -0.818557 0.000000
|
|
265
|
+
0.574426 -0.818557 0.000000
|
|
266
|
+
0.574426 -0.818557 0.000000
|
|
267
|
+
-0.426028 -0.904710 0.000000
|
|
268
|
+
-0.426028 -0.904710 0.000000
|
|
269
|
+
-0.426028 -0.904710 0.000000
|
|
270
|
+
-0.426028 -0.904710 0.000000
|
|
271
|
+
-0.426028 -0.904710 0.000000
|
|
272
|
+
-0.426028 -0.904710 0.000000
|
|
273
|
+
-0.996241 -0.086630 0.000000
|
|
274
|
+
-0.996241 -0.086630 0.000000
|
|
275
|
+
-0.996241 -0.086630 0.000000
|
|
276
|
+
-0.996241 -0.086630 0.000000
|
|
277
|
+
-0.996241 -0.086630 0.000000
|
|
278
|
+
-0.996241 -0.086630 0.000000
|
|
279
|
+
-0.574426 0.818557 -0.000000
|
|
280
|
+
-0.574426 0.818557 -0.000000
|
|
281
|
+
-0.574426 0.818557 -0.000000
|
|
282
|
+
-0.574426 0.818557 0.000000
|
|
283
|
+
-0.574426 0.818557 0.000000
|
|
284
|
+
-0.574426 0.818557 0.000000
|
|
285
|
+
0.422098 0.906550 0.000000
|
|
286
|
+
0.422098 0.906550 0.000000
|
|
287
|
+
0.422098 0.906550 0.000000
|
|
288
|
+
0.422097 0.906550 -0.000000
|
|
289
|
+
0.422097 0.906550 -0.000000
|
|
290
|
+
0.422097 0.906550 -0.000000
|
|
291
|
+
0.996276 0.086216 -0.000000
|
|
292
|
+
0.996276 0.086216 -0.000000
|
|
293
|
+
0.996276 0.086216 -0.000000
|
|
294
|
+
0.996276 0.086216 0.000000
|
|
295
|
+
0.996276 0.086216 0.000000
|
|
296
|
+
0.996276 0.086216 0.000000
|
|
297
|
+
0.618791 -0.784163 -0.046765
|
|
298
|
+
0.618791 -0.784163 -0.046765
|
|
299
|
+
0.618791 -0.784163 -0.046765
|
|
300
|
+
0.573649 -0.817450 0.051987
|
|
301
|
+
0.573649 -0.817450 0.051987
|
|
302
|
+
0.573649 -0.817450 0.051987
|
|
303
|
+
-0.383318 -0.921603 -0.060949
|
|
304
|
+
-0.383318 -0.921603 -0.060949
|
|
305
|
+
-0.383318 -0.921603 -0.060949
|
|
306
|
+
-0.425854 -0.904341 0.028576
|
|
307
|
+
-0.425854 -0.904341 0.028576
|
|
308
|
+
-0.425854 -0.904341 0.028576
|
|
309
|
+
-0.999118 -0.030986 0.028327
|
|
310
|
+
-0.999118 -0.030986 0.028327
|
|
311
|
+
-0.999118 -0.030986 0.028327
|
|
312
|
+
-0.994018 -0.086436 -0.066760
|
|
313
|
+
-0.994018 -0.086436 -0.066760
|
|
314
|
+
-0.994018 -0.086436 -0.066760
|
|
315
|
+
-0.582807 0.812409 -0.018091
|
|
316
|
+
-0.582807 0.812409 -0.018091
|
|
317
|
+
-0.582807 0.812409 -0.018091
|
|
318
|
+
-0.574426 0.818557 0.000000
|
|
319
|
+
-0.574426 0.818557 0.000000
|
|
320
|
+
-0.574426 0.818557 0.000000
|
|
321
|
+
0.422098 0.906550 0.000000
|
|
322
|
+
0.422098 0.906550 0.000000
|
|
323
|
+
0.422098 0.906550 0.000000
|
|
324
|
+
0.422098 0.906550 0.000000
|
|
325
|
+
0.422098 0.906550 0.000000
|
|
326
|
+
0.422098 0.906550 0.000000
|
|
327
|
+
0.997653 0.068466 0.000000
|
|
328
|
+
0.997653 0.068466 0.000000
|
|
329
|
+
0.997653 0.068466 0.000000
|
|
330
|
+
0.995818 0.086177 -0.030321
|
|
331
|
+
0.995818 0.086177 -0.030321
|
|
332
|
+
0.995818 0.086177 -0.030321
|
|
333
|
+
-0.925847 0.376621 -0.031040
|
|
334
|
+
-0.925847 0.376621 -0.031040
|
|
335
|
+
-0.925847 0.376621 -0.031040
|
|
336
|
+
-0.929617 0.368527 -0.000000
|
|
337
|
+
-0.929617 0.368527 -0.000000
|
|
338
|
+
-0.929617 0.368527 -0.000000
|
|
339
|
+
0.000000 0.024383 0.999703
|
|
340
|
+
0.000000 0.024383 0.999703
|
|
341
|
+
0.000000 0.024383 0.999703
|
|
342
|
+
-0.083358 0.118785 0.989415
|
|
343
|
+
-0.083358 0.118785 0.989415
|
|
344
|
+
-0.083358 0.118785 0.989415
|
|
345
|
+
0.000000 0.036121 0.999347
|
|
346
|
+
0.000000 0.036121 0.999347
|
|
347
|
+
0.000000 0.036121 0.999348
|
|
348
|
+
0.010044 0.021330 0.999722
|
|
349
|
+
0.010044 0.021330 0.999722
|
|
350
|
+
0.010044 0.021330 0.999722
|
|
351
|
+
0.000000 0.026618 0.999646
|
|
352
|
+
0.000000 0.026618 0.999646
|
|
353
|
+
0.000000 0.026618 0.999646
|
|
354
|
+
0.033390 0.002904 0.999438
|
|
355
|
+
0.033390 0.002904 0.999438
|
|
356
|
+
0.033390 0.002904 0.999438
|
|
357
|
+
0.747195 -0.546433 0.378300
|
|
358
|
+
0.747195 -0.546433 0.378300
|
|
359
|
+
0.747195 -0.546433 0.378300
|
|
360
|
+
0.713845 -0.700303 0.000000
|
|
361
|
+
0.713845 -0.700304 0.000000
|
|
362
|
+
0.713845 -0.700303 0.000000
|
|
363
|
+
-0.000000 -0.000000 -1.000000
|
|
364
|
+
-0.000000 -0.000000 -1.000000
|
|
365
|
+
-0.000000 -0.000000 -1.000000
|
|
366
|
+
0.000000 -0.000000 -1.000000
|
|
367
|
+
0.000000 -0.000000 -1.000000
|
|
368
|
+
0.000000 -0.000000 -1.000000
|
|
369
|
+
0.000000 -0.000000 -1.000000
|
|
370
|
+
0.000000 -0.000000 -1.000000
|
|
371
|
+
0.000000 -0.000000 -1.000000
|
|
372
|
+
-0.000000 -0.000000 -1.000000
|
|
373
|
+
-0.000000 -0.000000 -1.000000
|
|
374
|
+
-0.000000 -0.000000 -1.000000
|
|
375
|
+
0.000000 0.000000 -1.000000
|
|
376
|
+
0.000000 0.000000 -1.000000
|
|
377
|
+
0.000000 0.000000 -1.000000
|
|
378
|
+
0.000000 0.000000 -1.000000
|
|
379
|
+
0.000000 0.000000 -1.000000
|
|
380
|
+
0.000000 0.000000 -1.000000
|
|
381
|
+
-1.000000 0.000000 0.000000
|
|
382
|
+
-1.000000 0.000000 0.000000
|
|
383
|
+
-1.000000 0.000000 0.000000
|
|
384
|
+
-1.000000 0.000000 0.000000
|
|
385
|
+
-1.000000 0.000000 0.000000
|
|
386
|
+
-1.000000 0.000000 0.000000
|
|
387
|
+
1.000000 0.000000 0.000000
|
|
388
|
+
1.000000 0.000000 0.000000
|
|
389
|
+
1.000000 0.000000 0.000000
|
|
390
|
+
1.000000 0.000000 0.000000
|
|
391
|
+
1.000000 0.000000 0.000000
|
|
392
|
+
1.000000 0.000000 0.000000
|
|
393
|
+
0.000000 -0.635707 -0.771930
|
|
394
|
+
0.000000 -0.635707 -0.771930
|
|
395
|
+
0.000000 -0.635707 -0.771930
|
|
396
|
+
-0.314224 -0.639671 -0.701488
|
|
397
|
+
-0.314224 -0.639671 -0.701488
|
|
398
|
+
-0.314224 -0.639671 -0.701488
|
|
399
|
+
-0.004791 -0.570075 -0.821579
|
|
400
|
+
-0.004791 -0.570075 -0.821579
|
|
401
|
+
-0.004791 -0.570075 -0.821579
|
|
402
|
+
-0.281898 -0.609926 -0.740624
|
|
403
|
+
-0.281898 -0.609926 -0.740624
|
|
404
|
+
-0.281898 -0.609926 -0.740624
|
|
405
|
+
0.000000 -0.539955 -0.841694
|
|
406
|
+
0.000000 -0.539955 -0.841694
|
|
407
|
+
0.000000 -0.539955 -0.841694
|
|
408
|
+
-0.249326 -0.552078 -0.795642
|
|
409
|
+
-0.249326 -0.552078 -0.795642
|
|
410
|
+
-0.249326 -0.552078 -0.795642
|
|
411
|
+
-0.008403 -0.999961 0.002769
|
|
412
|
+
-0.008403 -0.999961 0.002769
|
|
413
|
+
-0.008403 -0.999961 0.002769
|
|
414
|
+
0.000000 -1.000000 0.000000
|
|
415
|
+
0.000000 -1.000000 0.000000
|
|
416
|
+
0.000000 -1.000000 0.000000
|
|
417
|
+
0.000000 -0.999983 -0.005780
|
|
418
|
+
0.000000 -0.999983 -0.005780
|
|
419
|
+
0.000000 -0.999983 -0.005780
|
|
420
|
+
0.000000 -0.999983 -0.005780
|
|
421
|
+
0.000000 -0.999983 -0.005780
|
|
422
|
+
0.000000 -0.999983 -0.005780
|
|
423
|
+
0.000000 -1.000000 0.000000
|
|
424
|
+
0.000000 -1.000000 0.000000
|
|
425
|
+
0.000000 -1.000000 0.000000
|
|
426
|
+
-0.008403 -0.999960 0.003012
|
|
427
|
+
-0.008403 -0.999960 0.003012
|
|
428
|
+
-0.008403 -0.999960 0.003012
|
|
429
|
+
0.000000 0.999956 -0.009380
|
|
430
|
+
0.000000 0.999956 -0.009380
|
|
431
|
+
0.000000 0.999956 -0.009380
|
|
432
|
+
0.000000 0.999956 -0.009380
|
|
433
|
+
0.000000 0.999956 -0.009380
|
|
434
|
+
0.000000 0.999956 -0.009380
|
|
435
|
+
0.000000 0.999956 -0.009380
|
|
436
|
+
0.000000 0.999956 -0.009380
|
|
437
|
+
0.000000 0.999956 -0.009380
|
|
438
|
+
0.000000 0.999956 -0.009380
|
|
439
|
+
0.000000 0.999956 -0.009380
|
|
440
|
+
0.000000 0.999956 -0.009380
|
|
441
|
+
0.000000 0.999956 -0.009380
|
|
442
|
+
0.000000 0.999956 -0.009380
|
|
443
|
+
0.000000 0.999956 -0.009380
|
|
444
|
+
0.000000 0.999956 -0.009380
|
|
445
|
+
0.000000 0.999956 -0.009380
|
|
446
|
+
0.000000 0.999956 -0.009380
|
|
447
|
+
-1.000000 0.000000 0.000000
|
|
448
|
+
-1.000000 0.000000 0.000000
|
|
449
|
+
-1.000000 0.000000 0.000000
|
|
450
|
+
-1.000000 0.000000 0.000000
|
|
451
|
+
-1.000000 0.000000 0.000000
|
|
452
|
+
-1.000000 0.000000 0.000000
|
|
453
|
+
0.000000 -0.988012 0.154377
|
|
454
|
+
0.000000 -0.988012 0.154377
|
|
455
|
+
0.000000 -0.988012 0.154377
|
|
456
|
+
0.000000 -0.988012 0.154377
|
|
457
|
+
0.000000 -0.988012 0.154377
|
|
458
|
+
0.000000 -0.988012 0.154377
|
|
459
|
+
-0.008302 -0.987978 0.154372
|
|
460
|
+
-0.008302 -0.987978 0.154372
|
|
461
|
+
-0.008302 -0.987978 0.154372
|
|
462
|
+
-0.008302 -0.987978 0.154372
|
|
463
|
+
-0.008302 -0.987978 0.154372
|
|
464
|
+
-0.008302 -0.987978 0.154372
|
|
465
|
+
0.000000 -0.988012 0.154377
|
|
466
|
+
0.000000 -0.988012 0.154377
|
|
467
|
+
0.000000 -0.988012 0.154377
|
|
468
|
+
0.000000 -0.988012 0.154377
|
|
469
|
+
0.000000 -0.988012 0.154377
|
|
470
|
+
0.000000 -0.988012 0.154377
|
|
471
|
+
1.000000 0.000000 0.000000
|
|
472
|
+
1.000000 0.000000 0.000000
|
|
473
|
+
1.000000 0.000000 0.000000
|
|
474
|
+
1.000000 0.000000 0.000000
|
|
475
|
+
1.000000 0.000000 0.000000
|
|
476
|
+
1.000000 0.000000 0.000000
|
|
477
|
+
0.000000 0.800000 -0.600000
|
|
478
|
+
0.000000 0.800000 -0.600000
|
|
479
|
+
0.000000 0.800000 -0.600000
|
|
480
|
+
0.000000 0.800000 -0.600000
|
|
481
|
+
0.000000 0.800000 -0.600000
|
|
482
|
+
0.000000 0.800000 -0.600000
|
|
483
|
+
0.006723 0.799982 -0.599987
|
|
484
|
+
0.006723 0.799982 -0.599986
|
|
485
|
+
0.006723 0.799982 -0.599987
|
|
486
|
+
0.000000 0.797914 -0.602772
|
|
487
|
+
0.000000 0.797914 -0.602772
|
|
488
|
+
0.000000 0.797914 -0.602772
|
|
489
|
+
0.000000 0.797914 -0.602772
|
|
490
|
+
0.000000 0.797914 -0.602772
|
|
491
|
+
0.000000 0.797914 -0.602772
|
|
492
|
+
0.000000 0.797914 -0.602772
|
|
493
|
+
0.000000 0.797914 -0.602772
|
|
494
|
+
0.000000 0.797914 -0.602772
|
|
495
|
+
-1.000000 0.000000 0.000000
|
|
496
|
+
-1.000000 0.000000 0.000000
|
|
497
|
+
-1.000000 0.000000 0.000000
|
|
498
|
+
-1.000000 0.000000 0.000000
|
|
499
|
+
-1.000000 0.000000 0.000000
|
|
500
|
+
-1.000000 0.000000 0.000000
|
|
501
|
+
0.000000 -0.440157 0.897921
|
|
502
|
+
0.000000 -0.440157 0.897921
|
|
503
|
+
0.000000 -0.440157 0.897921
|
|
504
|
+
0.000000 -0.440157 0.897921
|
|
505
|
+
0.000000 -0.440157 0.897921
|
|
506
|
+
0.000000 -0.440157 0.897921
|
|
507
|
+
0.000000 -0.440157 0.897921
|
|
508
|
+
0.000000 -0.440157 0.897921
|
|
509
|
+
0.000000 -0.440157 0.897921
|
|
510
|
+
-0.003687 -0.438766 0.898594
|
|
511
|
+
-0.003687 -0.438766 0.898594
|
|
512
|
+
-0.003687 -0.438766 0.898594
|
|
513
|
+
-0.007697 -0.438756 0.898573
|
|
514
|
+
-0.007697 -0.438756 0.898573
|
|
515
|
+
-0.007697 -0.438756 0.898573
|
|
516
|
+
0.000000 -0.440157 0.897921
|
|
517
|
+
0.000000 -0.440157 0.897921
|
|
518
|
+
0.000000 -0.440157 0.897921
|
|
519
|
+
1.000000 0.000000 0.000000
|
|
520
|
+
1.000000 0.000000 0.000000
|
|
521
|
+
1.000000 0.000000 0.000000
|
|
522
|
+
1.000000 0.000000 0.000000
|
|
523
|
+
1.000000 0.000000 0.000000
|
|
524
|
+
1.000000 0.000000 0.000000
|
|
525
|
+
0.000000 -0.755912 -0.654674
|
|
526
|
+
0.000000 -0.755912 -0.654674
|
|
527
|
+
0.000000 -0.755912 -0.654673
|
|
528
|
+
0.000000 -0.755912 -0.654674
|
|
529
|
+
0.000000 -0.755912 -0.654674
|
|
530
|
+
0.000000 -0.755912 -0.654673
|
|
531
|
+
0.000000 -0.440157 0.897921
|
|
532
|
+
0.000000 -0.440157 0.897921
|
|
533
|
+
0.000000 -0.440157 0.897921
|
|
534
|
+
0.000000 -0.440157 0.897921
|
|
535
|
+
0.000000 -0.440157 0.897921
|
|
536
|
+
0.000000 -0.440157 0.897921
|
|
537
|
+
-0.355881 0.826170 0.436797
|
|
538
|
+
-0.355881 0.826170 0.436797
|
|
539
|
+
-0.355881 0.826170 0.436797
|
|
540
|
+
-0.355881 0.826170 0.436797
|
|
541
|
+
-0.355881 0.826170 0.436797
|
|
542
|
+
-0.355881 0.826170 0.436797
|
|
543
|
+
0.000000 0.797914 -0.602772
|
|
544
|
+
0.000000 0.797914 -0.602772
|
|
545
|
+
0.000000 0.797914 -0.602772
|
|
546
|
+
0.000000 0.797914 -0.602772
|
|
547
|
+
0.000000 0.797914 -0.602772
|
|
548
|
+
0.000000 0.797914 -0.602772
|
|
549
|
+
0.000000 -0.754799 -0.655956
|
|
550
|
+
0.000000 -0.754799 -0.655956
|
|
551
|
+
0.000000 -0.754799 -0.655956
|
|
552
|
+
0.000000 -0.754799 -0.655956
|
|
553
|
+
0.000000 -0.754799 -0.655956
|
|
554
|
+
0.000000 -0.754799 -0.655956
|
|
555
|
+
0.000000 0.800000 -0.600000
|
|
556
|
+
0.000000 0.800000 -0.600000
|
|
557
|
+
0.000000 0.800000 -0.600000
|
|
558
|
+
0.000000 0.800000 -0.600000
|
|
559
|
+
0.000000 0.800000 -0.600000
|
|
560
|
+
0.000000 0.800000 -0.600000
|
|
561
|
+
0.000000 -0.440157 0.897921
|
|
562
|
+
0.000000 -0.440157 0.897921
|
|
563
|
+
0.000000 -0.440157 0.897921
|
|
564
|
+
0.000000 -0.440157 0.897921
|
|
565
|
+
0.000000 -0.440157 0.897921
|
|
566
|
+
0.000000 -0.440157 0.897921
|
|
567
|
+
0.163249 0.413370 -0.895809
|
|
568
|
+
0.163249 0.413370 -0.895810
|
|
569
|
+
0.163249 0.413370 -0.895810
|
|
570
|
+
0.000000 0.423424 -0.905931
|
|
571
|
+
0.000000 0.423424 -0.905931
|
|
572
|
+
0.000000 0.423424 -0.905931
|
|
573
|
+
0.360156 0.290961 -0.886357
|
|
574
|
+
0.360156 0.290961 -0.886357
|
|
575
|
+
0.360156 0.290961 -0.886357
|
|
576
|
+
0.002057 0.244733 -0.969588
|
|
577
|
+
0.002057 0.244733 -0.969588
|
|
578
|
+
0.002057 0.244733 -0.969588
|
|
579
|
+
-0.067365 0.252763 -0.965180
|
|
580
|
+
-0.067365 0.252763 -0.965180
|
|
581
|
+
-0.067365 0.252763 -0.965180
|
|
582
|
+
0.000000 0.257497 -0.966279
|
|
583
|
+
0.000000 0.257497 -0.966279
|
|
584
|
+
0.000000 0.257497 -0.966279
|
|
585
|
+
0.136341 0.241779 -0.960705
|
|
586
|
+
0.136341 0.241779 -0.960705
|
|
587
|
+
0.136341 0.241779 -0.960705
|
|
588
|
+
0.000000 0.225493 -0.974245
|
|
589
|
+
0.000000 0.225493 -0.974245
|
|
590
|
+
0.000000 0.225493 -0.974245
|
|
591
|
+
-0.965634 0.229768 0.121479
|
|
592
|
+
-0.965634 0.229768 0.121478
|
|
593
|
+
-0.965634 0.229768 0.121479
|
|
594
|
+
-0.969401 0.207534 0.131114
|
|
595
|
+
-0.969401 0.207534 0.131114
|
|
596
|
+
-0.969401 0.207534 0.131114
|
|
597
|
+
-0.099998 -0.339617 0.935233
|
|
598
|
+
-0.099998 -0.339617 0.935233
|
|
599
|
+
-0.099998 -0.339617 0.935233
|
|
600
|
+
0.000000 -0.383173 0.923676
|
|
601
|
+
0.000000 -0.383173 0.923676
|
|
602
|
+
0.000000 -0.383173 0.923676
|
|
603
|
+
0.092918 -0.389776 0.916210
|
|
604
|
+
0.092918 -0.389776 0.916210
|
|
605
|
+
0.092918 -0.389776 0.916210
|
|
606
|
+
0.000000 -0.367508 0.930020
|
|
607
|
+
0.000000 -0.367508 0.930020
|
|
608
|
+
0.000000 -0.367508 0.930020
|
|
609
|
+
0.615363 -0.358467 0.702019
|
|
610
|
+
0.615363 -0.358467 0.702019
|
|
611
|
+
0.615363 -0.358467 0.702019
|
|
612
|
+
0.000000 -0.092248 0.995736
|
|
613
|
+
0.000000 -0.092248 0.995736
|
|
614
|
+
0.000000 -0.092248 0.995736
|
|
615
|
+
-0.017702 -0.089555 0.995825
|
|
616
|
+
-0.017702 -0.089555 0.995825
|
|
617
|
+
-0.017702 -0.089555 0.995825
|
|
618
|
+
-0.001827 -0.104114 0.994564
|
|
619
|
+
-0.001827 -0.104114 0.994564
|
|
620
|
+
-0.001827 -0.104114 0.994564
|
|
621
|
+
0.287815 -0.303750 0.908239
|
|
622
|
+
0.287815 -0.303750 0.908239
|
|
623
|
+
0.287815 -0.303750 0.908239
|
|
624
|
+
0.000000 -0.054241 0.998528
|
|
625
|
+
0.000000 -0.054241 0.998528
|
|
626
|
+
0.000000 -0.054241 0.998528
|
|
627
|
+
0.976865 -0.211548 0.031343
|
|
628
|
+
0.976865 -0.211548 0.031343
|
|
629
|
+
0.976865 -0.211548 0.031343
|
|
630
|
+
0.930613 -0.309427 -0.195487
|
|
631
|
+
0.930612 -0.309427 -0.195487
|
|
632
|
+
0.930612 -0.309427 -0.195487
|
|
633
|
+
-0.296518 0.440684 -0.847275
|
|
634
|
+
-0.296518 0.440684 -0.847275
|
|
635
|
+
-0.296518 0.440684 -0.847275
|
|
636
|
+
0.000000 0.617497 -0.786573
|
|
637
|
+
0.000000 0.617497 -0.786573
|
|
638
|
+
0.000000 0.617497 -0.786573
|
|
639
|
+
-0.077590 -0.012403 -0.996908
|
|
640
|
+
-0.077590 -0.012403 -0.996908
|
|
641
|
+
-0.077590 -0.012403 -0.996908
|
|
642
|
+
0.667440 0.074463 0.740931
|
|
643
|
+
0.667440 0.074463 0.740931
|
|
644
|
+
0.667440 0.074463 0.740931
|
|
645
|
+
-0.574426 0.818557 0.000000
|
|
646
|
+
-0.574426 0.818557 0.000000
|
|
647
|
+
-0.574426 0.818557 0.000000
|
|
648
|
+
-0.583218 0.812247 0.010564
|
|
649
|
+
-0.583218 0.812247 0.010564
|
|
650
|
+
-0.583218 0.812247 0.010564
|
|
651
|
+
-0.253090 0.967434 -0.004159
|
|
652
|
+
-0.253090 0.967434 -0.004159
|
|
653
|
+
-0.253090 0.967434 -0.004159
|
|
654
|
+
-0.718437 0.614529 0.325887
|
|
655
|
+
-0.718437 0.614529 0.325887
|
|
656
|
+
-0.718437 0.614529 0.325887
|
|
657
|
+
-0.077332 0.880816 0.467100
|
|
658
|
+
-0.077332 0.880817 0.467100
|
|
659
|
+
-0.077332 0.880817 0.467100
|
|
660
|
+
-0.071091 0.881811 0.466214
|
|
661
|
+
-0.071091 0.881811 0.466214
|
|
662
|
+
-0.071091 0.881811 0.466214
|
|
663
|
+
</float_array>
|
|
664
|
+
<technique_common>
|
|
665
|
+
<accessor source="#drc_r_lglut-Normal0-array" count="492" stride="3">
|
|
666
|
+
<param name="X" type="float"/>
|
|
667
|
+
<param name="Y" type="float"/>
|
|
668
|
+
<param name="Z" type="float"/>
|
|
669
|
+
</accessor>
|
|
670
|
+
</technique_common>
|
|
671
|
+
</source>
|
|
672
|
+
<source id="drc_r_lglut-UV0">
|
|
673
|
+
<float_array id="drc_r_lglut-UV0-array" count="310">
|
|
674
|
+
0.983646 0.724331
|
|
675
|
+
0.943394 0.723949
|
|
676
|
+
0.983745 0.713983
|
|
677
|
+
0.943492 0.713601
|
|
678
|
+
0.992232 0.724414
|
|
679
|
+
0.992332 0.714066
|
|
680
|
+
0.932773 0.723849
|
|
681
|
+
0.932870 0.713501
|
|
682
|
+
0.909429 0.782695
|
|
683
|
+
0.904806 0.791977
|
|
684
|
+
0.894477 0.792607
|
|
685
|
+
0.893393 0.774675
|
|
686
|
+
0.903746 0.774089
|
|
687
|
+
0.888771 0.783957
|
|
688
|
+
0.887947 0.783732
|
|
689
|
+
0.882858 0.792742
|
|
690
|
+
0.882668 0.774815
|
|
691
|
+
0.872489 0.792835
|
|
692
|
+
0.867238 0.783958
|
|
693
|
+
0.872299 0.774908
|
|
694
|
+
0.812749 0.682077
|
|
695
|
+
0.843197 0.671753
|
|
696
|
+
0.835113 0.692281
|
|
697
|
+
0.811554 0.704324
|
|
698
|
+
0.803200 0.707842
|
|
699
|
+
0.805141 0.686054
|
|
700
|
+
0.824494 0.730518
|
|
701
|
+
0.816855 0.734439
|
|
702
|
+
0.983547 0.734699
|
|
703
|
+
0.943296 0.734318
|
|
704
|
+
0.992133 0.734782
|
|
705
|
+
0.932828 0.733809
|
|
706
|
+
0.997096 0.724461
|
|
707
|
+
0.996996 0.734830
|
|
708
|
+
0.926719 0.734162
|
|
709
|
+
0.926817 0.723793
|
|
710
|
+
0.997196 0.714114
|
|
711
|
+
0.983844 0.703620
|
|
712
|
+
0.992434 0.703701
|
|
713
|
+
0.926915 0.713446
|
|
714
|
+
0.932964 0.703352
|
|
715
|
+
0.943591 0.703230
|
|
716
|
+
0.983965 0.693249
|
|
717
|
+
0.943764 0.692771
|
|
718
|
+
0.997299 0.703758
|
|
719
|
+
0.927010 0.703086
|
|
720
|
+
0.984072 0.682879
|
|
721
|
+
0.943764 0.682877
|
|
722
|
+
0.997438 0.693397
|
|
723
|
+
0.992575 0.693325
|
|
724
|
+
0.927541 0.692736
|
|
725
|
+
0.933065 0.693595
|
|
726
|
+
0.984215 0.672566
|
|
727
|
+
0.943965 0.672005
|
|
728
|
+
0.997603 0.683034
|
|
729
|
+
0.992740 0.682953
|
|
730
|
+
0.928121 0.682387
|
|
731
|
+
0.933474 0.682587
|
|
732
|
+
0.997783 0.672724
|
|
733
|
+
0.992920 0.672639
|
|
734
|
+
0.928323 0.672080
|
|
735
|
+
0.934437 0.672079
|
|
736
|
+
0.815128 0.771156
|
|
737
|
+
0.809846 0.768511
|
|
738
|
+
0.887539 0.720819
|
|
739
|
+
0.884426 0.720614
|
|
740
|
+
0.893655 0.720966
|
|
741
|
+
0.870048 0.719846
|
|
742
|
+
0.897010 0.720947
|
|
743
|
+
0.853212 0.716638
|
|
744
|
+
0.904321 0.720782
|
|
745
|
+
0.839703 0.717016
|
|
746
|
+
0.836800 0.717186
|
|
747
|
+
0.827907 0.717097
|
|
748
|
+
0.831052 0.717176
|
|
749
|
+
0.894184 0.692380
|
|
750
|
+
0.885555 0.698251
|
|
751
|
+
0.894171 0.698285
|
|
752
|
+
0.864825 0.698348
|
|
753
|
+
0.885587 0.692361
|
|
754
|
+
0.867007 0.692243
|
|
755
|
+
0.918251 0.762402
|
|
756
|
+
0.891960 0.759311
|
|
757
|
+
0.877246 0.742828
|
|
758
|
+
0.909378 0.741912
|
|
759
|
+
0.917889 0.743001
|
|
760
|
+
0.927920 0.757353
|
|
761
|
+
0.881919 0.768266
|
|
762
|
+
0.867209 0.751780
|
|
763
|
+
0.928198 0.787736
|
|
764
|
+
0.919827 0.787945
|
|
765
|
+
0.857188 0.739217
|
|
766
|
+
0.860437 0.740889
|
|
767
|
+
0.853862 0.758137
|
|
768
|
+
0.850559 0.756577
|
|
769
|
+
0.846215 0.755139
|
|
770
|
+
0.852847 0.737780
|
|
771
|
+
0.864664 0.753450
|
|
772
|
+
0.858023 0.761182
|
|
773
|
+
0.924210 0.708674
|
|
774
|
+
0.920851 0.722121
|
|
775
|
+
0.902101 0.702345
|
|
776
|
+
0.924157 0.701821
|
|
777
|
+
0.902375 0.709192
|
|
778
|
+
0.916693 0.739883
|
|
779
|
+
0.898465 0.737859
|
|
780
|
+
0.896216 0.709651
|
|
781
|
+
0.894418 0.739438
|
|
782
|
+
0.893543 0.709585
|
|
783
|
+
0.890935 0.739915
|
|
784
|
+
0.888000 0.709484
|
|
785
|
+
0.885546 0.709551
|
|
786
|
+
0.885467 0.741485
|
|
787
|
+
0.884240 0.730725
|
|
788
|
+
0.875210 0.727229
|
|
789
|
+
0.873385 0.708391
|
|
790
|
+
0.867440 0.732909
|
|
791
|
+
0.853007 0.702900
|
|
792
|
+
0.858163 0.736266
|
|
793
|
+
0.839582 0.702947
|
|
794
|
+
0.850377 0.730691
|
|
795
|
+
0.836825 0.703005
|
|
796
|
+
0.840472 0.735263
|
|
797
|
+
0.831006 0.703056
|
|
798
|
+
0.828004 0.703000
|
|
799
|
+
0.842914 0.745514
|
|
800
|
+
0.832486 0.737103
|
|
801
|
+
0.828933 0.736722
|
|
802
|
+
0.821033 0.716920
|
|
803
|
+
0.821187 0.702893
|
|
804
|
+
0.824749 0.734985
|
|
805
|
+
0.821672 0.744845
|
|
806
|
+
0.826953 0.747488
|
|
807
|
+
0.820581 0.787732
|
|
808
|
+
0.810215 0.787473
|
|
809
|
+
0.807095 0.767133
|
|
810
|
+
0.818919 0.743468
|
|
811
|
+
0.829483 0.748753
|
|
812
|
+
0.817658 0.772423
|
|
813
|
+
0.804802 0.796253
|
|
814
|
+
0.825502 0.796857
|
|
815
|
+
0.885564 0.701323
|
|
816
|
+
0.863704 0.701523
|
|
817
|
+
0.885609 0.689541
|
|
818
|
+
0.894191 0.689557
|
|
819
|
+
0.926343 0.689625
|
|
820
|
+
0.926335 0.692455
|
|
821
|
+
0.894159 0.701362
|
|
822
|
+
0.835034 0.693071
|
|
823
|
+
0.845188 0.691255
|
|
824
|
+
0.868108 0.689307
|
|
825
|
+
0.926325 0.698362
|
|
826
|
+
0.926315 0.701439
|
|
827
|
+
0.848744 0.681518
|
|
828
|
+
0.842052 0.673595
|
|
829
|
+
</float_array>
|
|
830
|
+
<technique_common>
|
|
831
|
+
<accessor source="#drc_r_lglut-UV0-array" count="155" stride="2">
|
|
832
|
+
<param name="S" type="float"/>
|
|
833
|
+
<param name="T" type="float"/>
|
|
834
|
+
</accessor>
|
|
835
|
+
</technique_common>
|
|
836
|
+
</source>
|
|
837
|
+
<vertices id="drc_r_lglut-VERTEX">
|
|
838
|
+
<input semantic="POSITION" source="#drc_r_lglut-POSITION"/>
|
|
839
|
+
</vertices>
|
|
840
|
+
<triangles count="164" material="drc_extremities_diffuse">
|
|
841
|
+
<input semantic="VERTEX" offset="0" source="#drc_r_lglut-VERTEX"/>
|
|
842
|
+
<input semantic="NORMAL" offset="1" source="#drc_r_lglut-Normal0"/>
|
|
843
|
+
<input semantic="TEXCOORD" offset="2" set="0" source="#drc_r_lglut-UV0"/>
|
|
844
|
+
<p> 2 0 41 3 1 43 0 2 42 0 3 42 1 4 37 2 5 41 3 6 43 5 7 47 4 8 46 4 9 46 0 10 42 3 11 43 5 12 47 7 13 53 6 14 52 6 15 52 4 16 46 5 17 47 7 18 29 9 19 1 8 20 0 8 21 0 6 22 28 7 23 29 9 24 1 11 25 3 10 26 2 10 27 2 8 28 0 9 29 1 11 30 3 2 31 41 1 32 37 1 33 37 10 34 2 11 35 3 14 36 18 15 37 16 12 38 15 12 39 15 13 40 17 14 41 18 14 42 18 16 43 19 15 44 16 17 45 14 12 46 15 15 47 16 20 48 8 21 49 10 18 50 11 18 51 11 19 52 12 20 53 8 20 54 8 22 55 9 21 56 10 23 57 13 18 58 11 21 59 10 6 60 28 8 61 0 24 62 4 24 63 4 25 64 30 6 65 28 8 66 0 10 67 2 26 68 5 26 69 5 24 70 4 8 71 0 11 72 3 9 73 1 27 74 6 27 75 6 28 76 7 11 77 3 10 78 2 1 79 37 29 80 38 29 81 38 26 82 5 10 83 2 2 84 41 11 85 3 28 86 7 28 87 7 30 88 40 2 89 41 29 90 38 31 91 49 18 92 48 18 93 48 23 94 44 29 95 38 31 96 49 32 97 55 19 98 54 19 99 54 18 100 48 31 101 49 32 102 55 25 103 59 20 104 58 20 105 58 19 106 54 32 107 55 25 108 30 24 109 4 22 110 32 22 111 32 20 112 33 25 113 30 24 114 4 26 115 5 21 116 36 21 117 36 22 118 32 24 119 4 26 120 5 29 121 38 23 122 44 23 123 44 21 124 36 26 125 5 33 126 51 30 127 40 15 128 45 15 129 45 16 130 50 33 131 51 34 132 57 33 133 51 16 134 50 16 135 50 14 136 56 34 137 57 35 138 61 34 139 57 14 140 56 14 141 56 13 142 60 35 143 61 27 144 6 35 145 31 13 146 34 13 147 34 12 148 35 27 149 6 28 150 7 27 151 6 12 152 35 12 153 35 17 154 39 28 155 7 30 156 40 28 157 7 17 158 39 17 159 39 15 160 45 30 161 40 36 162 24 37 163 23 6 164 26 6 165 26 25 166 27 36 167 24 38 168 62 39 169 138 1 170 140 1 171 140 0 172 133 38 173 62 40 174 63 38 175 62 0 176 133 0 177 133 4 178 134 40 179 63 37 180 135 40 181 63 4 182 134 4 183 134 6 184 139 37 185 135 39 186 81 41 187 86 29 188 89 29 189 89 1 190 90 39 191 81 41 192 150 42 193 80 31 194 153 31 195 153 29 196 154 41 197 150 42 198 80 43 199 78 32 200 149 32 201 149 31 202 153 42 203 80 43 204 78 36 205 142 25 206 148 25 207 148 32 208 149 43 209 78 44 210 25 45 211 20 37 212 23 37 213 23 36 214 24 44 215 25 46 216 84 47 217 85 41 218 86 41 219 86 39 220 81 46 221 84 47 222 143 48 223 79 42 224 80 42 225 80 41 226 150 47 227 143 48 228 79 49 229 76 43 230 78 43 231 78 42 232 80 48 233 79 49 234 76 44 235 141 36 236 142 36 237 142 43 238 78 49 239 76 46 240 144 49 241 76 48 242 79 48 243 79 47 244 143 46 245 144 46 246 144 50 247 75 44 248 141 44 249 141 49 250 76 46 251 144 51 252 77 45 253 147 44 254 141 44 255 141 50 256 75 51 257 77 52 258 132 53 259 137 39 260 138 39 261 138 38 262 62 52 263 132 54 264 131 52 265 132 38 266 62 38 267 62 40 268 63 54 269 131 55 270 136 54 271 131 40 272 63 40 273 63 37 274 135 55 275 136 56 276 21 55 277 22 37 278 23 37 279 23 45 280 20 56 281 21 57 282 151 56 283 152 45 284 147 45 285 147 51 286 77 57 287 151 58 288 146 57 289 151 51 290 77 51 291 77 50 292 75 58 293 146 59 294 145 58 295 146 50 296 75 50 297 75 46 298 144 59 299 145 53 300 82 59 301 83 46 302 84 46 303 84 39 304 81 53 305 82 60 306 64 61 307 65 53 308 111 53 309 111 52 310 110 60 311 64 62 312 66 60 313 64 52 314 110 52 315 110 54 316 108 62 317 66 63 318 68 62 319 66 54 320 108 54 321 108 55 322 106 63 323 68 66 324 100 67 325 70 64 326 103 64 327 103 65 328 99 66 329 100 68 330 74 69 331 73 56 332 124 56 333 124 57 334 123 68 335 74 70 336 72 68 337 74 57 338 123 57 339 123 58 340 121 70 341 72 71 342 71 70 343 72 58 344 121 58 345 121 59 346 119 71 347 71 74 348 67 75 349 69 72 350 117 72 351 117 73 352 115 74 353 67 65 354 99 64 355 103 55 356 101 55 357 101 56 358 102 65 359 99 66 360 128 65 361 129 56 362 124 56 363 124 69 364 73 66 365 128 78 366 95 79 367 96 76 368 91 76 369 91 77 370 94 78 371 95 64 372 103 67 373 70 63 374 68 63 375 68 55 376 106 64 377 103 73 378 87 72 379 88 59 380 83 59 381 83 53 382 82 73 383 87 74 384 67 73 385 115 53 386 111 53 387 111 61 388 65 74 389 67 72 390 117 75 391 69 71 392 71 71 393 71 59 394 119 72 395 117 5 396 113 3 397 114 61 398 65 61 399 65 60 400 64 5 401 113 80 402 109 5 403 113 60 404 64 60 405 64 62 406 66 80 407 109 77 408 107 80 409 109 62 410 66 62 411 66 63 412 68 77 413 107 78 414 105 77 415 107 63 416 68 63 417 68 67 418 70 78 419 105 79 420 104 78 421 105 67 422 70 67 423 70 66 424 100 79 425 104 76 426 127 79 427 130 66 428 128 66 429 128 69 430 73 76 431 127 81 432 126 76 433 127 69 434 73 69 435 73 68 436 74 81 437 126 34 438 122 81 439 126 68 440 74 68 441 74 70 442 72 34 443 122 33 444 120 34 445 122 70 446 72 70 447 72 71 448 71 33 449 120 30 450 118 33 451 120 71 452 71 71 453 71 75 454 69 30 455 118 2 456 116 30 457 118 75 458 69 75 459 69 74 460 67 2 461 116 3 462 114 2 463 116 74 464 67 74 465 67 61 466 65 3 467 114 5 468 113 80 469 109 7 470 112 81 471 126 34 472 122 35 473 125 27 474 6 9 475 1 7 476 29 7 477 29 35 478 31 27 479 6 35 480 97 7 481 98 80 482 93 80 483 93 81 484 92 35 485 97 81 486 92 80 487 93 77 488 94 77 489 94 76 490 91 81 491 92</p>
|
|
845
|
+
</triangles>
|
|
846
|
+
</mesh>
|
|
847
|
+
</geometry>
|
|
848
|
+
</library_geometries>
|
|
849
|
+
<library_visual_scenes>
|
|
850
|
+
<visual_scene id="r_lglut" name="r_lglut">
|
|
851
|
+
<node name="g27" id="g27" sid="g27">
|
|
852
|
+
<matrix sid="matrix">1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000</matrix>
|
|
853
|
+
<extra>
|
|
854
|
+
<technique profile="FCOLLADA">
|
|
855
|
+
<visibility>1.000000</visibility>
|
|
856
|
+
</technique>
|
|
857
|
+
</extra>
|
|
858
|
+
<node name="r_lglut_node" id="r_lglut_node" sid="r_lglut_node">
|
|
859
|
+
<matrix sid="matrix">1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000</matrix>
|
|
860
|
+
<extra>
|
|
861
|
+
<technique profile="FCOLLADA">
|
|
862
|
+
<visibility>1.000000</visibility>
|
|
863
|
+
</technique>
|
|
864
|
+
</extra>
|
|
865
|
+
<node name="drc_r_lglut" id="drc_r_lglut" sid="drc_r_lglut">
|
|
866
|
+
<matrix sid="matrix">-0.000000 0.000000 1.010853 -0.027134 1.010853 0.000000 0.000000 0.089849 0.000000 1.010853 -0.000000 -0.013599 0.000000 0.000000 0.000000 1.000000</matrix>
|
|
867
|
+
<instance_geometry url="#drc_r_lglut-lib">
|
|
868
|
+
<bind_material>
|
|
869
|
+
<technique_common>
|
|
870
|
+
<instance_material symbol="drc_extremities_diffuse" target="#drc_extremities_diffuse"/>
|
|
871
|
+
</technique_common>
|
|
872
|
+
</bind_material>
|
|
873
|
+
</instance_geometry>
|
|
874
|
+
<extra>
|
|
875
|
+
<technique profile="FCOLLADA">
|
|
876
|
+
<visibility>1.000000</visibility>
|
|
877
|
+
</technique>
|
|
878
|
+
</extra>
|
|
879
|
+
</node>
|
|
880
|
+
</node>
|
|
881
|
+
</node>
|
|
882
|
+
<extra>
|
|
883
|
+
<technique profile="MAX3D">
|
|
884
|
+
<frame_rate>30.000000</frame_rate>
|
|
885
|
+
</technique>
|
|
886
|
+
<technique profile="FCOLLADA">
|
|
887
|
+
<start_time>0.000000</start_time>
|
|
888
|
+
<end_time>3.333333</end_time>
|
|
889
|
+
</technique>
|
|
890
|
+
</extra>
|
|
891
|
+
</visual_scene>
|
|
892
|
+
</library_visual_scenes>
|
|
893
|
+
<scene>
|
|
894
|
+
<instance_visual_scene url="#r_lglut"></instance_visual_scene>
|
|
895
|
+
</scene>
|
|
896
|
+
</COLLADA>
|
|
897
|
+
|