-
Notifications
You must be signed in to change notification settings - Fork 170
/
Copy path2wd_properties.urdf.xacro
30 lines (25 loc) · 1.09 KB
/
2wd_properties.urdf.xacro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?xml version="1.0"?>
<robot xmlns:xacro="http://ros.org/wiki/xacro">
<xacro:property name="base_length" value="0.24" />
<xacro:property name="base_width" value="0.275" />
<xacro:property name="base_height" value="0.003" />
<xacro:property name="base_mass" value="1" />
<xacro:property name="wheel_radius" value="0.045" />
<xacro:property name="wheel_width" value="0.01" />
<xacro:property name="wheel_pos_x" value="0.0" />
<xacro:property name="wheel_pos_y" value="0.13" />
<xacro:property name="wheel_pos_z" value="-0.03" />
<xacro:property name="wheel_mass" value=".1" />
<xacro:property name="wheel_torque" value="20" />
<xacro:property name="front_caster_wheel" value="true" />
<xacro:property name="rear_caster_wheel" value="true" />
<xacro:property name="laser_pose">
<origin xyz="0.12 0 0.33" rpy="0 0 0"/>
</xacro:property>
<xacro:property name="depth_sensor_pose">
<origin xyz="0.14 0.0 0.045" rpy="0 0 0"/>
</xacro:property>
<xacro:property name="rear_camera_sensor_pose">
<origin xyz="-0.14 0.0 0.045" rpy="0 0 3.14159"/>
</xacro:property>
</robot>