mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-13 05:10:08 +00:00
db3122233f
add rolling/spinning friction to cube, remove it from plane/samurai.urdf URDF2Bullet: support joint limits for revolute and prismatic, only if defined (if upper < lower, disable limit) add some profiling markers to improve performance
27 lines
706 B
XML
27 lines
706 B
XML
<?xml version="0.0" ?>
|
|
<robot name="cube.urdf">
|
|
<link concave="yes" name="baseLink">
|
|
<inertial>
|
|
<origin rpy="0 0 0" xyz="0 0 0"/>
|
|
<mass value=".0"/>
|
|
<inertia ixx="0" ixy="0" ixz="0" iyy="0" iyz="0" izz="0"/>
|
|
</inertial>
|
|
<visual>
|
|
<origin rpy="1.5707963 0 0" xyz="0 0 0"/>
|
|
<geometry>
|
|
<mesh filename="samurai_monastry.obj" scale="1 1 1"/>
|
|
</geometry>
|
|
<material name="white">
|
|
<color rgba="1 1 1 1"/>
|
|
</material>
|
|
</visual>
|
|
<collision concave="yes">
|
|
<origin rpy="1.5707963 0 0" xyz="0 0 0"/>
|
|
<geometry>
|
|
<mesh filename="samurai_monastry.obj" scale="1 1 1"/>
|
|
</geometry>
|
|
</collision>
|
|
</link>
|
|
</robot>
|
|
|