找回密码
 立即注册
首页 业界区 安全 ROS2之Gazebo物理仿真平台

ROS2之Gazebo物理仿真平台

寨亳 昨天 17:55
ROS机器人开发,机器人当然是主角,如果我们手边没有实物机器人,怎么办呢?没问题,机器人三维物理仿真平台Gazebo,了解一下。
一、Gazebo仿真平台

Gazebo是ROS系统中最为常用的三维物理仿真平台,支持动力学引擎,可以实现高质量的图形渲染,不仅可以模拟机器人及周边环境,还可以加入摩擦力、弹性系数等物理属性。
1.png
比如我们要开发一个火星车,那就可以在Gazebo中模拟火星表面的环境,再比如我们做无人机,续航和限飞都导致我们没有办法频繁用实物做实验,此时不妨使用Gazebo先做仿真,等算法开发的差不多了,再部署到实物上来运行。
所以类似Gazebo这样的仿真平台,可以帮助我们验证机器人算法、优化机器人设计、测试机器人场景应用,为机器人开发提供更多可能。
1.1 安装测试

Gazebo如何使用呢?我们不妨先把它给跑起来,互相认识一下。
1.1.1 安装

为了确保系统中已经完整安装了Gazebo相关的功能包,我们可以通过这样一个命令,简单直接的把和Gazebo相关的包都给装上:
  1. zhengyang@ubuntu:~/dev_ws$ sudo apt install ros-humble-gazebo-*
复制代码
注意:这里安装我们要运行在ubuntu宿主机上,像NanoPC-T6这样的嵌入式ARM设备上运行Gazebo这类3D物理仿真软件,即使成功安装,也可能面临性能严重不足的问题。
1.1.2 运行

接着我们通过这句命令启动Gazebo:
  1. zhengyang@ubuntu:~/dev_ws$ source /usr/share/gazebo/setup.sh
  2. zhengyang@ubuntu:~/dev_ws$ ros2 launch gazebo_ros gazebo.launch.py
复制代码
打开Gazebo的时候,默认是没有模型的,需要手动下载配置。
1.1.3 导入模型

下载模型,osrf库包含许多常用模型:
  1. zhengyang@ubuntu:~$ mkdir ~/.gazebo/models
  2. zhengyang@ubuntu:~$ cd ~/.gazebo/models
  3. zhengyang@ubuntu:~/.gazebo/models$ git clone --depth 1 https://github.com/osrf/gazebo_models.git
  4. zhengyang@ubuntu:~/.gazebo/models$ mv gazebo_models/* ./
  5. zhengyang@ubuntu:~/.gazebo/models$ rm -rf gazebo_models/
复制代码
查看我们下载的模型:
  1. zhengyang@ubuntu:~/.gazebo/models$ ls
  2. ambulance<xacro:property name="wheel_radius" value="0.1" />
  3. <xacro:property name="wheel_length" value="0.05" />
  4. <xacro:property name="pi" value="3.14159" />
  5. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  7. <xacro:property name="default_origin">
  8.   <origin xyz="0 0 0" rpy="0 0 0" />
  9. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  10. <xacro:property name="wheel_length" value="0.05" />
  11. <xacro:property name="pi" value="3.14159" />
  12. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  13. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  14. <xacro:property name="default_origin">
  15.   <origin xyz="0 0 0" rpy="0 0 0" />
  16. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  17. <xacro:property name="wheel_length" value="0.05" />
  18. <xacro:property name="pi" value="3.14159" />
  19. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  20. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  21. <xacro:property name="default_origin">
  22.   <origin xyz="0 0 0" rpy="0 0 0" />
  23. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  24. <xacro:property name="wheel_length" value="0.05" />
  25. <xacro:property name="pi" value="3.14159" />
  26. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  27. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  28. <xacro:property name="default_origin">
  29.   <origin xyz="0 0 0" rpy="0 0 0" />
  30. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  31. <xacro:property name="wheel_length" value="0.05" />
  32. <xacro:property name="pi" value="3.14159" />
  33. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  34. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  35. <xacro:property name="default_origin">
  36.   <origin xyz="0 0 0" rpy="0 0 0" />
  37. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  38. <xacro:property name="wheel_length" value="0.05" />
  39. <xacro:property name="pi" value="3.14159" />
  40. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  41. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  42. <xacro:property name="default_origin">
  43.   <origin xyz="0 0 0" rpy="0 0 0" />
  44. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  45. <xacro:property name="wheel_length" value="0.05" />
  46. <xacro:property name="pi" value="3.14159" />
  47. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  48. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  49. <xacro:property name="default_origin">
  50.   <origin xyz="0 0 0" rpy="0 0 0" />
  51. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  52. <xacro:property name="wheel_length" value="0.05" />
  53. <xacro:property name="pi" value="3.14159" />
  54. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  55. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  56. <xacro:property name="default_origin">
  57.   <origin xyz="0 0 0" rpy="0 0 0" />
  58. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  59. <xacro:property name="wheel_length" value="0.05" />
  60. <xacro:property name="pi" value="3.14159" />
  61. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  62. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  63. <xacro:property name="default_origin">
  64.   <origin xyz="0 0 0" rpy="0 0 0" />
  65. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  66. <xacro:property name="wheel_length" value="0.05" />
  67. <xacro:property name="pi" value="3.14159" />
  68. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  69. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  70. <xacro:property name="default_origin">
  71.   <origin xyz="0 0 0" rpy="0 0 0" />
  72. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  73. <xacro:property name="wheel_length" value="0.05" />
  74. <xacro:property name="pi" value="3.14159" />
  75. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  76. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  77. <xacro:property name="default_origin">
  78.   <origin xyz="0 0 0" rpy="0 0 0" />
  79. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  80. <xacro:property name="wheel_length" value="0.05" />
  81. <xacro:property name="pi" value="3.14159" />
  82. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  83. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  84. <xacro:property name="default_origin">
  85.   <origin xyz="0 0 0" rpy="0 0 0" />
  86. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  87. <xacro:property name="wheel_length" value="0.05" />
  88. <xacro:property name="pi" value="3.14159" />
  89. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  90. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  91. <xacro:property name="default_origin">
  92.   <origin xyz="0 0 0" rpy="0 0 0" />
  93. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  94. <xacro:property name="wheel_length" value="0.05" />
  95. <xacro:property name="pi" value="3.14159" />
  96. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  97. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  98. <xacro:property name="default_origin">
  99.   <origin xyz="0 0 0" rpy="0 0 0" />
  100. </xacro:property> fast_food<xacro:property name="wheel_radius" value="0.1" />
  101. <xacro:property name="wheel_length" value="0.05" />
  102. <xacro:property name="pi" value="3.14159" />
  103. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  104. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  105. <xacro:property name="default_origin">
  106.   <origin xyz="0 0 0" rpy="0 0 0" />
  107. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  108. <xacro:property name="wheel_length" value="0.05" />
  109. <xacro:property name="pi" value="3.14159" />
  110. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  111. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  112. <xacro:property name="default_origin">
  113.   <origin xyz="0 0 0" rpy="0 0 0" />
  114. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  115. <xacro:property name="wheel_length" value="0.05" />
  116. <xacro:property name="pi" value="3.14159" />
  117. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  118. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  119. <xacro:property name="default_origin">
  120.   <origin xyz="0 0 0" rpy="0 0 0" />
  121. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  122. <xacro:property name="wheel_length" value="0.05" />
  123. <xacro:property name="pi" value="3.14159" />
  124. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  125. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  126. <xacro:property name="default_origin">
  127.   <origin xyz="0 0 0" rpy="0 0 0" />
  128. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  129. <xacro:property name="wheel_length" value="0.05" />
  130. <xacro:property name="pi" value="3.14159" />
  131. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  132. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  133. <xacro:property name="default_origin">
  134.   <origin xyz="0 0 0" rpy="0 0 0" />
  135. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  136. <xacro:property name="wheel_length" value="0.05" />
  137. <xacro:property name="pi" value="3.14159" />
  138. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  139. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  140. <xacro:property name="default_origin">
  141.   <origin xyz="0 0 0" rpy="0 0 0" />
  142. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  143. <xacro:property name="wheel_length" value="0.05" />
  144. <xacro:property name="pi" value="3.14159" />
  145. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  146. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  147. <xacro:property name="default_origin">
  148.   <origin xyz="0 0 0" rpy="0 0 0" />
  149. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  150. <xacro:property name="wheel_length" value="0.05" />
  151. <xacro:property name="pi" value="3.14159" />
  152. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  153. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  154. <xacro:property name="default_origin">
  155.   <origin xyz="0 0 0" rpy="0 0 0" />
  156. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  157. <xacro:property name="wheel_length" value="0.05" />
  158. <xacro:property name="pi" value="3.14159" />
  159. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  160. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  161. <xacro:property name="default_origin">
  162.   <origin xyz="0 0 0" rpy="0 0 0" />
  163. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  164. <xacro:property name="wheel_length" value="0.05" />
  165. <xacro:property name="pi" value="3.14159" />
  166. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  167. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  168. <xacro:property name="default_origin">
  169.   <origin xyz="0 0 0" rpy="0 0 0" />
  170. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  171. <xacro:property name="wheel_length" value="0.05" />
  172. <xacro:property name="pi" value="3.14159" />
  173. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  174. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  175. <xacro:property name="default_origin">
  176.   <origin xyz="0 0 0" rpy="0 0 0" />
  177. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  178. <xacro:property name="wheel_length" value="0.05" />
  179. <xacro:property name="pi" value="3.14159" />
  180. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  181. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  182. <xacro:property name="default_origin">
  183.   <origin xyz="0 0 0" rpy="0 0 0" />
  184. </xacro:property>polaris_ranger_xp900
  185. apartment<xacro:property name="wheel_radius" value="0.1" />
  186. <xacro:property name="wheel_length" value="0.05" />
  187. <xacro:property name="pi" value="3.14159" />
  188. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  189. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  190. <xacro:property name="default_origin">
  191.   <origin xyz="0 0 0" rpy="0 0 0" />
  192. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  193. <xacro:property name="wheel_length" value="0.05" />
  194. <xacro:property name="pi" value="3.14159" />
  195. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  196. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  197. <xacro:property name="default_origin">
  198.   <origin xyz="0 0 0" rpy="0 0 0" />
  199. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  200. <xacro:property name="wheel_length" value="0.05" />
  201. <xacro:property name="pi" value="3.14159" />
  202. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  203. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  204. <xacro:property name="default_origin">
  205.   <origin xyz="0 0 0" rpy="0 0 0" />
  206. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  207. <xacro:property name="wheel_length" value="0.05" />
  208. <xacro:property name="pi" value="3.14159" />
  209. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  210. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  211. <xacro:property name="default_origin">
  212.   <origin xyz="0 0 0" rpy="0 0 0" />
  213. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  214. <xacro:property name="wheel_length" value="0.05" />
  215. <xacro:property name="pi" value="3.14159" />
  216. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  217. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  218. <xacro:property name="default_origin">
  219.   <origin xyz="0 0 0" rpy="0 0 0" />
  220. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  221. <xacro:property name="wheel_length" value="0.05" />
  222. <xacro:property name="pi" value="3.14159" />
  223. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  224. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  225. <xacro:property name="default_origin">
  226.   <origin xyz="0 0 0" rpy="0 0 0" />
  227. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  228. <xacro:property name="wheel_length" value="0.05" />
  229. <xacro:property name="pi" value="3.14159" />
  230. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  231. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  232. <xacro:property name="default_origin">
  233.   <origin xyz="0 0 0" rpy="0 0 0" />
  234. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  235. <xacro:property name="wheel_length" value="0.05" />
  236. <xacro:property name="pi" value="3.14159" />
  237. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  238. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  239. <xacro:property name="default_origin">
  240.   <origin xyz="0 0 0" rpy="0 0 0" />
  241. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  242. <xacro:property name="wheel_length" value="0.05" />
  243. <xacro:property name="pi" value="3.14159" />
  244. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  245. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  246. <xacro:property name="default_origin">
  247.   <origin xyz="0 0 0" rpy="0 0 0" />
  248. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  249. <xacro:property name="wheel_length" value="0.05" />
  250. <xacro:property name="pi" value="3.14159" />
  251. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  252. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  253. <xacro:property name="default_origin">
  254.   <origin xyz="0 0 0" rpy="0 0 0" />
  255. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  256. <xacro:property name="wheel_length" value="0.05" />
  257. <xacro:property name="pi" value="3.14159" />
  258. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  259. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  260. <xacro:property name="default_origin">
  261.   <origin xyz="0 0 0" rpy="0 0 0" />
  262. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  263. <xacro:property name="wheel_length" value="0.05" />
  264. <xacro:property name="pi" value="3.14159" />
  265. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  266. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  267. <xacro:property name="default_origin">
  268.   <origin xyz="0 0 0" rpy="0 0 0" />
  269. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  270. <xacro:property name="wheel_length" value="0.05" />
  271. <xacro:property name="pi" value="3.14159" />
  272. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  273. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  274. <xacro:property name="default_origin">
  275.   <origin xyz="0 0 0" rpy="0 0 0" />
  276. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  277. <xacro:property name="wheel_length" value="0.05" />
  278. <xacro:property name="pi" value="3.14159" />
  279. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  280. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  281. <xacro:property name="default_origin">
  282.   <origin xyz="0 0 0" rpy="0 0 0" />
  283. </xacro:property> fire_hose_long<xacro:property name="wheel_radius" value="0.1" />
  284. <xacro:property name="wheel_length" value="0.05" />
  285. <xacro:property name="pi" value="3.14159" />
  286. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  287. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  288. <xacro:property name="default_origin">
  289.   <origin xyz="0 0 0" rpy="0 0 0" />
  290. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  291. <xacro:property name="wheel_length" value="0.05" />
  292. <xacro:property name="pi" value="3.14159" />
  293. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  294. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  295. <xacro:property name="default_origin">
  296.   <origin xyz="0 0 0" rpy="0 0 0" />
  297. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  298. <xacro:property name="wheel_length" value="0.05" />
  299. <xacro:property name="pi" value="3.14159" />
  300. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  301. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  302. <xacro:property name="default_origin">
  303.   <origin xyz="0 0 0" rpy="0 0 0" />
  304. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  305. <xacro:property name="wheel_length" value="0.05" />
  306. <xacro:property name="pi" value="3.14159" />
  307. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  308. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  309. <xacro:property name="default_origin">
  310.   <origin xyz="0 0 0" rpy="0 0 0" />
  311. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  312. <xacro:property name="wheel_length" value="0.05" />
  313. <xacro:property name="pi" value="3.14159" />
  314. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  315. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  316. <xacro:property name="default_origin">
  317.   <origin xyz="0 0 0" rpy="0 0 0" />
  318. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  319. <xacro:property name="wheel_length" value="0.05" />
  320. <xacro:property name="pi" value="3.14159" />
  321. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  322. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  323. <xacro:property name="default_origin">
  324.   <origin xyz="0 0 0" rpy="0 0 0" />
  325. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  326. <xacro:property name="wheel_length" value="0.05" />
  327. <xacro:property name="pi" value="3.14159" />
  328. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  329. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  330. <xacro:property name="default_origin">
  331.   <origin xyz="0 0 0" rpy="0 0 0" />
  332. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  333. <xacro:property name="wheel_length" value="0.05" />
  334. <xacro:property name="pi" value="3.14159" />
  335. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  336. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  337. <xacro:property name="default_origin">
  338.   <origin xyz="0 0 0" rpy="0 0 0" />
  339. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  340. <xacro:property name="wheel_length" value="0.05" />
  341. <xacro:property name="pi" value="3.14159" />
  342. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  343. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  344. <xacro:property name="default_origin">
  345.   <origin xyz="0 0 0" rpy="0 0 0" />
  346. </xacro:property> polaris_ranger_xp900_no_roll_cage
  347. apollo15_landing_site_1000x1000<xacro:property name="wheel_radius" value="0.1" />
  348. <xacro:property name="wheel_length" value="0.05" />
  349. <xacro:property name="pi" value="3.14159" />
  350. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  351. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  352. <xacro:property name="default_origin">
  353.   <origin xyz="0 0 0" rpy="0 0 0" />
  354. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  355. <xacro:property name="wheel_length" value="0.05" />
  356. <xacro:property name="pi" value="3.14159" />
  357. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  358. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  359. <xacro:property name="default_origin">
  360.   <origin xyz="0 0 0" rpy="0 0 0" />
  361. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  362. <xacro:property name="wheel_length" value="0.05" />
  363. <xacro:property name="pi" value="3.14159" />
  364. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  365. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  366. <xacro:property name="default_origin">
  367.   <origin xyz="0 0 0" rpy="0 0 0" />
  368. </xacro:property> fire_hose_long_curled<xacro:property name="wheel_radius" value="0.1" />
  369. <xacro:property name="wheel_length" value="0.05" />
  370. <xacro:property name="pi" value="3.14159" />
  371. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  372. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  373. <xacro:property name="default_origin">
  374.   <origin xyz="0 0 0" rpy="0 0 0" />
  375. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  376. <xacro:property name="wheel_length" value="0.05" />
  377. <xacro:property name="pi" value="3.14159" />
  378. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  379. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  380. <xacro:property name="default_origin">
  381.   <origin xyz="0 0 0" rpy="0 0 0" />
  382. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  383. <xacro:property name="wheel_length" value="0.05" />
  384. <xacro:property name="pi" value="3.14159" />
  385. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  386. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  387. <xacro:property name="default_origin">
  388.   <origin xyz="0 0 0" rpy="0 0 0" />
  389. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  390. <xacro:property name="wheel_length" value="0.05" />
  391. <xacro:property name="pi" value="3.14159" />
  392. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  393. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  394. <xacro:property name="default_origin">
  395.   <origin xyz="0 0 0" rpy="0 0 0" />
  396. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  397. <xacro:property name="wheel_length" value="0.05" />
  398. <xacro:property name="pi" value="3.14159" />
  399. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  400. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  401. <xacro:property name="default_origin">
  402.   <origin xyz="0 0 0" rpy="0 0 0" />
  403. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  404. <xacro:property name="wheel_length" value="0.05" />
  405. <xacro:property name="pi" value="3.14159" />
  406. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  407. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  408. <xacro:property name="default_origin">
  409.   <origin xyz="0 0 0" rpy="0 0 0" />
  410. </xacro:property>police_station
  411. arm_part<xacro:property name="wheel_radius" value="0.1" />
  412. <xacro:property name="wheel_length" value="0.05" />
  413. <xacro:property name="pi" value="3.14159" />
  414. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  415. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  416. <xacro:property name="default_origin">
  417.   <origin xyz="0 0 0" rpy="0 0 0" />
  418. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  419. <xacro:property name="wheel_length" value="0.05" />
  420. <xacro:property name="pi" value="3.14159" />
  421. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  422. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  423. <xacro:property name="default_origin">
  424.   <origin xyz="0 0 0" rpy="0 0 0" />
  425. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  426. <xacro:property name="wheel_length" value="0.05" />
  427. <xacro:property name="pi" value="3.14159" />
  428. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  429. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  430. <xacro:property name="default_origin">
  431.   <origin xyz="0 0 0" rpy="0 0 0" />
  432. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  433. <xacro:property name="wheel_length" value="0.05" />
  434. <xacro:property name="pi" value="3.14159" />
  435. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  436. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  437. <xacro:property name="default_origin">
  438.   <origin xyz="0 0 0" rpy="0 0 0" />
  439. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  440. <xacro:property name="wheel_length" value="0.05" />
  441. <xacro:property name="pi" value="3.14159" />
  442. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  443. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  444. <xacro:property name="default_origin">
  445.   <origin xyz="0 0 0" rpy="0 0 0" />
  446. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  447. <xacro:property name="wheel_length" value="0.05" />
  448. <xacro:property name="pi" value="3.14159" />
  449. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  450. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  451. <xacro:property name="default_origin">
  452.   <origin xyz="0 0 0" rpy="0 0 0" />
  453. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  454. <xacro:property name="wheel_length" value="0.05" />
  455. <xacro:property name="pi" value="3.14159" />
  456. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  457. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  458. <xacro:property name="default_origin">
  459.   <origin xyz="0 0 0" rpy="0 0 0" />
  460. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  461. <xacro:property name="wheel_length" value="0.05" />
  462. <xacro:property name="pi" value="3.14159" />
  463. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  464. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  465. <xacro:property name="default_origin">
  466.   <origin xyz="0 0 0" rpy="0 0 0" />
  467. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  468. <xacro:property name="wheel_length" value="0.05" />
  469. <xacro:property name="pi" value="3.14159" />
  470. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  471. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  472. <xacro:property name="default_origin">
  473.   <origin xyz="0 0 0" rpy="0 0 0" />
  474. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  475. <xacro:property name="wheel_length" value="0.05" />
  476. <xacro:property name="pi" value="3.14159" />
  477. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  478. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  479. <xacro:property name="default_origin">
  480.   <origin xyz="0 0 0" rpy="0 0 0" />
  481. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  482. <xacro:property name="wheel_length" value="0.05" />
  483. <xacro:property name="pi" value="3.14159" />
  484. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  485. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  486. <xacro:property name="default_origin">
  487.   <origin xyz="0 0 0" rpy="0 0 0" />
  488. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  489. <xacro:property name="wheel_length" value="0.05" />
  490. <xacro:property name="pi" value="3.14159" />
  491. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  492. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  493. <xacro:property name="default_origin">
  494.   <origin xyz="0 0 0" rpy="0 0 0" />
  495. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  496. <xacro:property name="wheel_length" value="0.05" />
  497. <xacro:property name="pi" value="3.14159" />
  498. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  499. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  500. <xacro:property name="default_origin">
  501.   <origin xyz="0 0 0" rpy="0 0 0" />
  502. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  503. <xacro:property name="wheel_length" value="0.05" />
  504. <xacro:property name="pi" value="3.14159" />
  505. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  506. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  507. <xacro:property name="default_origin">
  508.   <origin xyz="0 0 0" rpy="0 0 0" />
  509. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  510. <xacro:property name="wheel_length" value="0.05" />
  511. <xacro:property name="pi" value="3.14159" />
  512. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  513. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  514. <xacro:property name="default_origin">
  515.   <origin xyz="0 0 0" rpy="0 0 0" />
  516. </xacro:property>fire_hydrant<xacro:property name="wheel_radius" value="0.1" />
  517. <xacro:property name="wheel_length" value="0.05" />
  518. <xacro:property name="pi" value="3.14159" />
  519. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  520. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  521. <xacro:property name="default_origin">
  522.   <origin xyz="0 0 0" rpy="0 0 0" />
  523. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  524. <xacro:property name="wheel_length" value="0.05" />
  525. <xacro:property name="pi" value="3.14159" />
  526. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  527. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  528. <xacro:property name="default_origin">
  529.   <origin xyz="0 0 0" rpy="0 0 0" />
  530. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  531. <xacro:property name="wheel_length" value="0.05" />
  532. <xacro:property name="pi" value="3.14159" />
  533. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  534. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  535. <xacro:property name="default_origin">
  536.   <origin xyz="0 0 0" rpy="0 0 0" />
  537. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  538. <xacro:property name="wheel_length" value="0.05" />
  539. <xacro:property name="pi" value="3.14159" />
  540. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  541. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  542. <xacro:property name="default_origin">
  543.   <origin xyz="0 0 0" rpy="0 0 0" />
  544. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  545. <xacro:property name="wheel_length" value="0.05" />
  546. <xacro:property name="pi" value="3.14159" />
  547. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  548. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  549. <xacro:property name="default_origin">
  550.   <origin xyz="0 0 0" rpy="0 0 0" />
  551. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  552. <xacro:property name="wheel_length" value="0.05" />
  553. <xacro:property name="pi" value="3.14159" />
  554. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  555. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  556. <xacro:property name="default_origin">
  557.   <origin xyz="0 0 0" rpy="0 0 0" />
  558. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  559. <xacro:property name="wheel_length" value="0.05" />
  560. <xacro:property name="pi" value="3.14159" />
  561. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  562. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  563. <xacro:property name="default_origin">
  564.   <origin xyz="0 0 0" rpy="0 0 0" />
  565. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  566. <xacro:property name="wheel_length" value="0.05" />
  567. <xacro:property name="pi" value="3.14159" />
  568. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  569. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  570. <xacro:property name="default_origin">
  571.   <origin xyz="0 0 0" rpy="0 0 0" />
  572. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  573. <xacro:property name="wheel_length" value="0.05" />
  574. <xacro:property name="pi" value="3.14159" />
  575. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  576. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  577. <xacro:property name="default_origin">
  578.   <origin xyz="0 0 0" rpy="0 0 0" />
  579. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  580. <xacro:property name="wheel_length" value="0.05" />
  581. <xacro:property name="pi" value="3.14159" />
  582. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  583. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  584. <xacro:property name="default_origin">
  585.   <origin xyz="0 0 0" rpy="0 0 0" />
  586. </xacro:property> postbox
  587. arrow_red<xacro:property name="wheel_radius" value="0.1" />
  588. <xacro:property name="wheel_length" value="0.05" />
  589. <xacro:property name="pi" value="3.14159" />
  590. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  591. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  592. <xacro:property name="default_origin">
  593.   <origin xyz="0 0 0" rpy="0 0 0" />
  594. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  595. <xacro:property name="wheel_length" value="0.05" />
  596. <xacro:property name="pi" value="3.14159" />
  597. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  598. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  599. <xacro:property name="default_origin">
  600.   <origin xyz="0 0 0" rpy="0 0 0" />
  601. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  602. <xacro:property name="wheel_length" value="0.05" />
  603. <xacro:property name="pi" value="3.14159" />
  604. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  605. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  606. <xacro:property name="default_origin">
  607.   <origin xyz="0 0 0" rpy="0 0 0" />
  608. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  609. <xacro:property name="wheel_length" value="0.05" />
  610. <xacro:property name="pi" value="3.14159" />
  611. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  612. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  613. <xacro:property name="default_origin">
  614.   <origin xyz="0 0 0" rpy="0 0 0" />
  615. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  616. <xacro:property name="wheel_length" value="0.05" />
  617. <xacro:property name="pi" value="3.14159" />
  618. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  619. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  620. <xacro:property name="default_origin">
  621.   <origin xyz="0 0 0" rpy="0 0 0" />
  622. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  623. <xacro:property name="wheel_length" value="0.05" />
  624. <xacro:property name="pi" value="3.14159" />
  625. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  626. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  627. <xacro:property name="default_origin">
  628.   <origin xyz="0 0 0" rpy="0 0 0" />
  629. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  630. <xacro:property name="wheel_length" value="0.05" />
  631. <xacro:property name="pi" value="3.14159" />
  632. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  633. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  634. <xacro:property name="default_origin">
  635.   <origin xyz="0 0 0" rpy="0 0 0" />
  636. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  637. <xacro:property name="wheel_length" value="0.05" />
  638. <xacro:property name="pi" value="3.14159" />
  639. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  640. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  641. <xacro:property name="default_origin">
  642.   <origin xyz="0 0 0" rpy="0 0 0" />
  643. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  644. <xacro:property name="wheel_length" value="0.05" />
  645. <xacro:property name="pi" value="3.14159" />
  646. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  647. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  648. <xacro:property name="default_origin">
  649.   <origin xyz="0 0 0" rpy="0 0 0" />
  650. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  651. <xacro:property name="wheel_length" value="0.05" />
  652. <xacro:property name="pi" value="3.14159" />
  653. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  654. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  655. <xacro:property name="default_origin">
  656.   <origin xyz="0 0 0" rpy="0 0 0" />
  657. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  658. <xacro:property name="wheel_length" value="0.05" />
  659. <xacro:property name="pi" value="3.14159" />
  660. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  661. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  662. <xacro:property name="default_origin">
  663.   <origin xyz="0 0 0" rpy="0 0 0" />
  664. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  665. <xacro:property name="wheel_length" value="0.05" />
  666. <xacro:property name="pi" value="3.14159" />
  667. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  668. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  669. <xacro:property name="default_origin">
  670.   <origin xyz="0 0 0" rpy="0 0 0" />
  671. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  672. <xacro:property name="wheel_length" value="0.05" />
  673. <xacro:property name="pi" value="3.14159" />
  674. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  675. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  676. <xacro:property name="default_origin">
  677.   <origin xyz="0 0 0" rpy="0 0 0" />
  678. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  679. <xacro:property name="wheel_length" value="0.05" />
  680. <xacro:property name="pi" value="3.14159" />
  681. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  682. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  683. <xacro:property name="default_origin">
  684.   <origin xyz="0 0 0" rpy="0 0 0" />
  685. </xacro:property> fire_station<xacro:property name="wheel_radius" value="0.1" />
  686. <xacro:property name="wheel_length" value="0.05" />
  687. <xacro:property name="pi" value="3.14159" />
  688. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  689. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  690. <xacro:property name="default_origin">
  691.   <origin xyz="0 0 0" rpy="0 0 0" />
  692. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  693. <xacro:property name="wheel_length" value="0.05" />
  694. <xacro:property name="pi" value="3.14159" />
  695. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  696. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  697. <xacro:property name="default_origin">
  698.   <origin xyz="0 0 0" rpy="0 0 0" />
  699. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  700. <xacro:property name="wheel_length" value="0.05" />
  701. <xacro:property name="pi" value="3.14159" />
  702. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  703. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  704. <xacro:property name="default_origin">
  705.   <origin xyz="0 0 0" rpy="0 0 0" />
  706. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  707. <xacro:property name="wheel_length" value="0.05" />
  708. <xacro:property name="pi" value="3.14159" />
  709. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  710. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  711. <xacro:property name="default_origin">
  712.   <origin xyz="0 0 0" rpy="0 0 0" />
  713. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  714. <xacro:property name="wheel_length" value="0.05" />
  715. <xacro:property name="pi" value="3.14159" />
  716. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  717. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  718. <xacro:property name="default_origin">
  719.   <origin xyz="0 0 0" rpy="0 0 0" />
  720. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  721. <xacro:property name="wheel_length" value="0.05" />
  722. <xacro:property name="pi" value="3.14159" />
  723. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  724. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  725. <xacro:property name="default_origin">
  726.   <origin xyz="0 0 0" rpy="0 0 0" />
  727. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  728. <xacro:property name="wheel_length" value="0.05" />
  729. <xacro:property name="pi" value="3.14159" />
  730. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  731. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  732. <xacro:property name="default_origin">
  733.   <origin xyz="0 0 0" rpy="0 0 0" />
  734. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  735. <xacro:property name="wheel_length" value="0.05" />
  736. <xacro:property name="pi" value="3.14159" />
  737. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  738. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  739. <xacro:property name="default_origin">
  740.   <origin xyz="0 0 0" rpy="0 0 0" />
  741. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  742. <xacro:property name="wheel_length" value="0.05" />
  743. <xacro:property name="pi" value="3.14159" />
  744. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  745. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  746. <xacro:property name="default_origin">
  747.   <origin xyz="0 0 0" rpy="0 0 0" />
  748. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  749. <xacro:property name="wheel_length" value="0.05" />
  750. <xacro:property name="pi" value="3.14159" />
  751. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  752. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  753. <xacro:property name="default_origin">
  754.   <origin xyz="0 0 0" rpy="0 0 0" />
  755. </xacro:property> post_office
  756. asphalt_plane<xacro:property name="wheel_radius" value="0.1" />
  757. <xacro:property name="wheel_length" value="0.05" />
  758. <xacro:property name="pi" value="3.14159" />
  759. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  760. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  761. <xacro:property name="default_origin">
  762.   <origin xyz="0 0 0" rpy="0 0 0" />
  763. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  764. <xacro:property name="wheel_length" value="0.05" />
  765. <xacro:property name="pi" value="3.14159" />
  766. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  767. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  768. <xacro:property name="default_origin">
  769.   <origin xyz="0 0 0" rpy="0 0 0" />
  770. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  771. <xacro:property name="wheel_length" value="0.05" />
  772. <xacro:property name="pi" value="3.14159" />
  773. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  774. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  775. <xacro:property name="default_origin">
  776.   <origin xyz="0 0 0" rpy="0 0 0" />
  777. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  778. <xacro:property name="wheel_length" value="0.05" />
  779. <xacro:property name="pi" value="3.14159" />
  780. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  781. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  782. <xacro:property name="default_origin">
  783.   <origin xyz="0 0 0" rpy="0 0 0" />
  784. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  785. <xacro:property name="wheel_length" value="0.05" />
  786. <xacro:property name="pi" value="3.14159" />
  787. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  788. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  789. <xacro:property name="default_origin">
  790.   <origin xyz="0 0 0" rpy="0 0 0" />
  791. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  792. <xacro:property name="wheel_length" value="0.05" />
  793. <xacro:property name="pi" value="3.14159" />
  794. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  795. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  796. <xacro:property name="default_origin">
  797.   <origin xyz="0 0 0" rpy="0 0 0" />
  798. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  799. <xacro:property name="wheel_length" value="0.05" />
  800. <xacro:property name="pi" value="3.14159" />
  801. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  802. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  803. <xacro:property name="default_origin">
  804.   <origin xyz="0 0 0" rpy="0 0 0" />
  805. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  806. <xacro:property name="wheel_length" value="0.05" />
  807. <xacro:property name="pi" value="3.14159" />
  808. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  809. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  810. <xacro:property name="default_origin">
  811.   <origin xyz="0 0 0" rpy="0 0 0" />
  812. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  813. <xacro:property name="wheel_length" value="0.05" />
  814. <xacro:property name="pi" value="3.14159" />
  815. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  816. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  817. <xacro:property name="default_origin">
  818.   <origin xyz="0 0 0" rpy="0 0 0" />
  819. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  820. <xacro:property name="wheel_length" value="0.05" />
  821. <xacro:property name="pi" value="3.14159" />
  822. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  823. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  824. <xacro:property name="default_origin">
  825.   <origin xyz="0 0 0" rpy="0 0 0" />
  826. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  827. <xacro:property name="wheel_length" value="0.05" />
  828. <xacro:property name="pi" value="3.14159" />
  829. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  830. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  831. <xacro:property name="default_origin">
  832.   <origin xyz="0 0 0" rpy="0 0 0" />
  833. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  834. <xacro:property name="wheel_length" value="0.05" />
  835. <xacro:property name="pi" value="3.14159" />
  836. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  837. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  838. <xacro:property name="default_origin">
  839.   <origin xyz="0 0 0" rpy="0 0 0" />
  840. </xacro:property> fire_truck<xacro:property name="wheel_radius" value="0.1" />
  841. <xacro:property name="wheel_length" value="0.05" />
  842. <xacro:property name="pi" value="3.14159" />
  843. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  844. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  845. <xacro:property name="default_origin">
  846.   <origin xyz="0 0 0" rpy="0 0 0" />
  847. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  848. <xacro:property name="wheel_length" value="0.05" />
  849. <xacro:property name="pi" value="3.14159" />
  850. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  851. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  852. <xacro:property name="default_origin">
  853.   <origin xyz="0 0 0" rpy="0 0 0" />
  854. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  855. <xacro:property name="wheel_length" value="0.05" />
  856. <xacro:property name="pi" value="3.14159" />
  857. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  858. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  859. <xacro:property name="default_origin">
  860.   <origin xyz="0 0 0" rpy="0 0 0" />
  861. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  862. <xacro:property name="wheel_length" value="0.05" />
  863. <xacro:property name="pi" value="3.14159" />
  864. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  865. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  866. <xacro:property name="default_origin">
  867.   <origin xyz="0 0 0" rpy="0 0 0" />
  868. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  869. <xacro:property name="wheel_length" value="0.05" />
  870. <xacro:property name="pi" value="3.14159" />
  871. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  872. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  873. <xacro:property name="default_origin">
  874.   <origin xyz="0 0 0" rpy="0 0 0" />
  875. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  876. <xacro:property name="wheel_length" value="0.05" />
  877. <xacro:property name="pi" value="3.14159" />
  878. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  879. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  880. <xacro:property name="default_origin">
  881.   <origin xyz="0 0 0" rpy="0 0 0" />
  882. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  883. <xacro:property name="wheel_length" value="0.05" />
  884. <xacro:property name="pi" value="3.14159" />
  885. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  886. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  887. <xacro:property name="default_origin">
  888.   <origin xyz="0 0 0" rpy="0 0 0" />
  889. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  890. <xacro:property name="wheel_length" value="0.05" />
  891. <xacro:property name="pi" value="3.14159" />
  892. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  893. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  894. <xacro:property name="default_origin">
  895.   <origin xyz="0 0 0" rpy="0 0 0" />
  896. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  897. <xacro:property name="wheel_length" value="0.05" />
  898. <xacro:property name="pi" value="3.14159" />
  899. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  900. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  901. <xacro:property name="default_origin">
  902.   <origin xyz="0 0 0" rpy="0 0 0" />
  903. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  904. <xacro:property name="wheel_length" value="0.05" />
  905. <xacro:property name="pi" value="3.14159" />
  906. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  907. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  908. <xacro:property name="default_origin">
  909.   <origin xyz="0 0 0" rpy="0 0 0" />
  910. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  911. <xacro:property name="wheel_length" value="0.05" />
  912. <xacro:property name="pi" value="3.14159" />
  913. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  914. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  915. <xacro:property name="default_origin">
  916.   <origin xyz="0 0 0" rpy="0 0 0" />
  917. </xacro:property> powerplant
  918. asus_xtion_pro_camera<xacro:property name="wheel_radius" value="0.1" />
  919. <xacro:property name="wheel_length" value="0.05" />
  920. <xacro:property name="pi" value="3.14159" />
  921. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  922. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  923. <xacro:property name="default_origin">
  924.   <origin xyz="0 0 0" rpy="0 0 0" />
  925. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  926. <xacro:property name="wheel_length" value="0.05" />
  927. <xacro:property name="pi" value="3.14159" />
  928. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  929. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  930. <xacro:property name="default_origin">
  931.   <origin xyz="0 0 0" rpy="0 0 0" />
  932. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  933. <xacro:property name="wheel_length" value="0.05" />
  934. <xacro:property name="pi" value="3.14159" />
  935. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  936. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  937. <xacro:property name="default_origin">
  938.   <origin xyz="0 0 0" rpy="0 0 0" />
  939. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  940. <xacro:property name="wheel_length" value="0.05" />
  941. <xacro:property name="pi" value="3.14159" />
  942. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  943. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  944. <xacro:property name="default_origin">
  945.   <origin xyz="0 0 0" rpy="0 0 0" />
  946. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  947. <xacro:property name="wheel_length" value="0.05" />
  948. <xacro:property name="pi" value="3.14159" />
  949. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  950. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  951. <xacro:property name="default_origin">
  952.   <origin xyz="0 0 0" rpy="0 0 0" />
  953. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  954. <xacro:property name="wheel_length" value="0.05" />
  955. <xacro:property name="pi" value="3.14159" />
  956. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  957. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  958. <xacro:property name="default_origin">
  959.   <origin xyz="0 0 0" rpy="0 0 0" />
  960. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  961. <xacro:property name="wheel_length" value="0.05" />
  962. <xacro:property name="pi" value="3.14159" />
  963. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  964. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  965. <xacro:property name="default_origin">
  966.   <origin xyz="0 0 0" rpy="0 0 0" />
  967. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  968. <xacro:property name="wheel_length" value="0.05" />
  969. <xacro:property name="pi" value="3.14159" />
  970. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  971. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  972. <xacro:property name="default_origin">
  973.   <origin xyz="0 0 0" rpy="0 0 0" />
  974. </xacro:property> first_2015_trash_can<xacro:property name="wheel_radius" value="0.1" />
  975. <xacro:property name="wheel_length" value="0.05" />
  976. <xacro:property name="pi" value="3.14159" />
  977. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  978. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  979. <xacro:property name="default_origin">
  980.   <origin xyz="0 0 0" rpy="0 0 0" />
  981. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  982. <xacro:property name="wheel_length" value="0.05" />
  983. <xacro:property name="pi" value="3.14159" />
  984. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  985. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  986. <xacro:property name="default_origin">
  987.   <origin xyz="0 0 0" rpy="0 0 0" />
  988. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  989. <xacro:property name="wheel_length" value="0.05" />
  990. <xacro:property name="pi" value="3.14159" />
  991. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  992. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  993. <xacro:property name="default_origin">
  994.   <origin xyz="0 0 0" rpy="0 0 0" />
  995. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  996. <xacro:property name="wheel_length" value="0.05" />
  997. <xacro:property name="pi" value="3.14159" />
  998. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  999. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1000. <xacro:property name="default_origin">
  1001.   <origin xyz="0 0 0" rpy="0 0 0" />
  1002. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1003. <xacro:property name="wheel_length" value="0.05" />
  1004. <xacro:property name="pi" value="3.14159" />
  1005. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1006. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1007. <xacro:property name="default_origin">
  1008.   <origin xyz="0 0 0" rpy="0 0 0" />
  1009. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1010. <xacro:property name="wheel_length" value="0.05" />
  1011. <xacro:property name="pi" value="3.14159" />
  1012. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1013. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1014. <xacro:property name="default_origin">
  1015.   <origin xyz="0 0 0" rpy="0 0 0" />
  1016. </xacro:property> pr2
  1017. ball_bearing<xacro:property name="wheel_radius" value="0.1" />
  1018. <xacro:property name="wheel_length" value="0.05" />
  1019. <xacro:property name="pi" value="3.14159" />
  1020. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1021. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1022. <xacro:property name="default_origin">
  1023.   <origin xyz="0 0 0" rpy="0 0 0" />
  1024. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1025. <xacro:property name="wheel_length" value="0.05" />
  1026. <xacro:property name="pi" value="3.14159" />
  1027. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1028. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1029. <xacro:property name="default_origin">
  1030.   <origin xyz="0 0 0" rpy="0 0 0" />
  1031. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1032. <xacro:property name="wheel_length" value="0.05" />
  1033. <xacro:property name="pi" value="3.14159" />
  1034. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1035. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1036. <xacro:property name="default_origin">
  1037.   <origin xyz="0 0 0" rpy="0 0 0" />
  1038. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1039. <xacro:property name="wheel_length" value="0.05" />
  1040. <xacro:property name="pi" value="3.14159" />
  1041. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1042. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1043. <xacro:property name="default_origin">
  1044.   <origin xyz="0 0 0" rpy="0 0 0" />
  1045. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1046. <xacro:property name="wheel_length" value="0.05" />
  1047. <xacro:property name="pi" value="3.14159" />
  1048. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1049. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1050. <xacro:property name="default_origin">
  1051.   <origin xyz="0 0 0" rpy="0 0 0" />
  1052. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1053. <xacro:property name="wheel_length" value="0.05" />
  1054. <xacro:property name="pi" value="3.14159" />
  1055. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1056. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1057. <xacro:property name="default_origin">
  1058.   <origin xyz="0 0 0" rpy="0 0 0" />
  1059. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1060. <xacro:property name="wheel_length" value="0.05" />
  1061. <xacro:property name="pi" value="3.14159" />
  1062. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1063. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1064. <xacro:property name="default_origin">
  1065.   <origin xyz="0 0 0" rpy="0 0 0" />
  1066. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1067. <xacro:property name="wheel_length" value="0.05" />
  1068. <xacro:property name="pi" value="3.14159" />
  1069. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1070. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1071. <xacro:property name="default_origin">
  1072.   <origin xyz="0 0 0" rpy="0 0 0" />
  1073. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1074. <xacro:property name="wheel_length" value="0.05" />
  1075. <xacro:property name="pi" value="3.14159" />
  1076. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1077. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1078. <xacro:property name="default_origin">
  1079.   <origin xyz="0 0 0" rpy="0 0 0" />
  1080. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1081. <xacro:property name="wheel_length" value="0.05" />
  1082. <xacro:property name="pi" value="3.14159" />
  1083. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1084. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1085. <xacro:property name="default_origin">
  1086.   <origin xyz="0 0 0" rpy="0 0 0" />
  1087. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1088. <xacro:property name="wheel_length" value="0.05" />
  1089. <xacro:property name="pi" value="3.14159" />
  1090. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1091. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1092. <xacro:property name="default_origin">
  1093.   <origin xyz="0 0 0" rpy="0 0 0" />
  1094. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1095. <xacro:property name="wheel_length" value="0.05" />
  1096. <xacro:property name="pi" value="3.14159" />
  1097. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1098. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1099. <xacro:property name="default_origin">
  1100.   <origin xyz="0 0 0" rpy="0 0 0" />
  1101. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1102. <xacro:property name="wheel_length" value="0.05" />
  1103. <xacro:property name="pi" value="3.14159" />
  1104. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1105. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1106. <xacro:property name="default_origin">
  1107.   <origin xyz="0 0 0" rpy="0 0 0" />
  1108. </xacro:property>follower_vehicle<xacro:property name="wheel_radius" value="0.1" />
  1109. <xacro:property name="wheel_length" value="0.05" />
  1110. <xacro:property name="pi" value="3.14159" />
  1111. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1112. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1113. <xacro:property name="default_origin">
  1114.   <origin xyz="0 0 0" rpy="0 0 0" />
  1115. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1116. <xacro:property name="wheel_length" value="0.05" />
  1117. <xacro:property name="pi" value="3.14159" />
  1118. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1119. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1120. <xacro:property name="default_origin">
  1121.   <origin xyz="0 0 0" rpy="0 0 0" />
  1122. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1123. <xacro:property name="wheel_length" value="0.05" />
  1124. <xacro:property name="pi" value="3.14159" />
  1125. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1126. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1127. <xacro:property name="default_origin">
  1128.   <origin xyz="0 0 0" rpy="0 0 0" />
  1129. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1130. <xacro:property name="wheel_length" value="0.05" />
  1131. <xacro:property name="pi" value="3.14159" />
  1132. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1133. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1134. <xacro:property name="default_origin">
  1135.   <origin xyz="0 0 0" rpy="0 0 0" />
  1136. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1137. <xacro:property name="wheel_length" value="0.05" />
  1138. <xacro:property name="pi" value="3.14159" />
  1139. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1140. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1141. <xacro:property name="default_origin">
  1142.   <origin xyz="0 0 0" rpy="0 0 0" />
  1143. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1144. <xacro:property name="wheel_length" value="0.05" />
  1145. <xacro:property name="pi" value="3.14159" />
  1146. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1147. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1148. <xacro:property name="default_origin">
  1149.   <origin xyz="0 0 0" rpy="0 0 0" />
  1150. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1151. <xacro:property name="wheel_length" value="0.05" />
  1152. <xacro:property name="pi" value="3.14159" />
  1153. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1154. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1155. <xacro:property name="default_origin">
  1156.   <origin xyz="0 0 0" rpy="0 0 0" />
  1157. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1158. <xacro:property name="wheel_length" value="0.05" />
  1159. <xacro:property name="pi" value="3.14159" />
  1160. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1161. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1162. <xacro:property name="default_origin">
  1163.   <origin xyz="0 0 0" rpy="0 0 0" />
  1164. </xacro:property> pr2_gripper
  1165. beer<xacro:property name="wheel_radius" value="0.1" />
  1166. <xacro:property name="wheel_length" value="0.05" />
  1167. <xacro:property name="pi" value="3.14159" />
  1168. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1169. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1170. <xacro:property name="default_origin">
  1171.   <origin xyz="0 0 0" rpy="0 0 0" />
  1172. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1173. <xacro:property name="wheel_length" value="0.05" />
  1174. <xacro:property name="pi" value="3.14159" />
  1175. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1176. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1177. <xacro:property name="default_origin">
  1178.   <origin xyz="0 0 0" rpy="0 0 0" />
  1179. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1180. <xacro:property name="wheel_length" value="0.05" />
  1181. <xacro:property name="pi" value="3.14159" />
  1182. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1183. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1184. <xacro:property name="default_origin">
  1185.   <origin xyz="0 0 0" rpy="0 0 0" />
  1186. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1187. <xacro:property name="wheel_length" value="0.05" />
  1188. <xacro:property name="pi" value="3.14159" />
  1189. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1190. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1191. <xacro:property name="default_origin">
  1192.   <origin xyz="0 0 0" rpy="0 0 0" />
  1193. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1194. <xacro:property name="wheel_length" value="0.05" />
  1195. <xacro:property name="pi" value="3.14159" />
  1196. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1197. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1198. <xacro:property name="default_origin">
  1199.   <origin xyz="0 0 0" rpy="0 0 0" />
  1200. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1201. <xacro:property name="wheel_length" value="0.05" />
  1202. <xacro:property name="pi" value="3.14159" />
  1203. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1204. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1205. <xacro:property name="default_origin">
  1206.   <origin xyz="0 0 0" rpy="0 0 0" />
  1207. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1208. <xacro:property name="wheel_length" value="0.05" />
  1209. <xacro:property name="pi" value="3.14159" />
  1210. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1211. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1212. <xacro:property name="default_origin">
  1213.   <origin xyz="0 0 0" rpy="0 0 0" />
  1214. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1215. <xacro:property name="wheel_length" value="0.05" />
  1216. <xacro:property name="pi" value="3.14159" />
  1217. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1218. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1219. <xacro:property name="default_origin">
  1220.   <origin xyz="0 0 0" rpy="0 0 0" />
  1221. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1222. <xacro:property name="wheel_length" value="0.05" />
  1223. <xacro:property name="pi" value="3.14159" />
  1224. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1225. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1226. <xacro:property name="default_origin">
  1227.   <origin xyz="0 0 0" rpy="0 0 0" />
  1228. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1229. <xacro:property name="wheel_length" value="0.05" />
  1230. <xacro:property name="pi" value="3.14159" />
  1231. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1232. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1233. <xacro:property name="default_origin">
  1234.   <origin xyz="0 0 0" rpy="0 0 0" />
  1235. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1236. <xacro:property name="wheel_length" value="0.05" />
  1237. <xacro:property name="pi" value="3.14159" />
  1238. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1239. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1240. <xacro:property name="default_origin">
  1241.   <origin xyz="0 0 0" rpy="0 0 0" />
  1242. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1243. <xacro:property name="wheel_length" value="0.05" />
  1244. <xacro:property name="pi" value="3.14159" />
  1245. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1246. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1247. <xacro:property name="default_origin">
  1248.   <origin xyz="0 0 0" rpy="0 0 0" />
  1249. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1250. <xacro:property name="wheel_length" value="0.05" />
  1251. <xacro:property name="pi" value="3.14159" />
  1252. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1253. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1254. <xacro:property name="default_origin">
  1255.   <origin xyz="0 0 0" rpy="0 0 0" />
  1256. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1257. <xacro:property name="wheel_length" value="0.05" />
  1258. <xacro:property name="pi" value="3.14159" />
  1259. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1260. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1261. <xacro:property name="default_origin">
  1262.   <origin xyz="0 0 0" rpy="0 0 0" />
  1263. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1264. <xacro:property name="wheel_length" value="0.05" />
  1265. <xacro:property name="pi" value="3.14159" />
  1266. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1267. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1268. <xacro:property name="default_origin">
  1269.   <origin xyz="0 0 0" rpy="0 0 0" />
  1270. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1271. <xacro:property name="wheel_length" value="0.05" />
  1272. <xacro:property name="pi" value="3.14159" />
  1273. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1274. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1275. <xacro:property name="default_origin">
  1276.   <origin xyz="0 0 0" rpy="0 0 0" />
  1277. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1278. <xacro:property name="wheel_length" value="0.05" />
  1279. <xacro:property name="pi" value="3.14159" />
  1280. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1281. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1282. <xacro:property name="default_origin">
  1283.   <origin xyz="0 0 0" rpy="0 0 0" />
  1284. </xacro:property>fountain<xacro:property name="wheel_radius" value="0.1" />
  1285. <xacro:property name="wheel_length" value="0.05" />
  1286. <xacro:property name="pi" value="3.14159" />
  1287. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1288. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1289. <xacro:property name="default_origin">
  1290.   <origin xyz="0 0 0" rpy="0 0 0" />
  1291. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1292. <xacro:property name="wheel_length" value="0.05" />
  1293. <xacro:property name="pi" value="3.14159" />
  1294. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1295. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1296. <xacro:property name="default_origin">
  1297.   <origin xyz="0 0 0" rpy="0 0 0" />
  1298. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1299. <xacro:property name="wheel_length" value="0.05" />
  1300. <xacro:property name="pi" value="3.14159" />
  1301. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1302. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1303. <xacro:property name="default_origin">
  1304.   <origin xyz="0 0 0" rpy="0 0 0" />
  1305. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1306. <xacro:property name="wheel_length" value="0.05" />
  1307. <xacro:property name="pi" value="3.14159" />
  1308. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1309. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1310. <xacro:property name="default_origin">
  1311.   <origin xyz="0 0 0" rpy="0 0 0" />
  1312. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1313. <xacro:property name="wheel_length" value="0.05" />
  1314. <xacro:property name="pi" value="3.14159" />
  1315. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1316. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1317. <xacro:property name="default_origin">
  1318.   <origin xyz="0 0 0" rpy="0 0 0" />
  1319. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1320. <xacro:property name="wheel_length" value="0.05" />
  1321. <xacro:property name="pi" value="3.14159" />
  1322. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1323. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1324. <xacro:property name="default_origin">
  1325.   <origin xyz="0 0 0" rpy="0 0 0" />
  1326. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1327. <xacro:property name="wheel_length" value="0.05" />
  1328. <xacro:property name="pi" value="3.14159" />
  1329. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1330. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1331. <xacro:property name="default_origin">
  1332.   <origin xyz="0 0 0" rpy="0 0 0" />
  1333. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1334. <xacro:property name="wheel_length" value="0.05" />
  1335. <xacro:property name="pi" value="3.14159" />
  1336. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1337. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1338. <xacro:property name="default_origin">
  1339.   <origin xyz="0 0 0" rpy="0 0 0" />
  1340. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1341. <xacro:property name="wheel_length" value="0.05" />
  1342. <xacro:property name="pi" value="3.14159" />
  1343. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1344. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1345. <xacro:property name="default_origin">
  1346.   <origin xyz="0 0 0" rpy="0 0 0" />
  1347. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1348. <xacro:property name="wheel_length" value="0.05" />
  1349. <xacro:property name="pi" value="3.14159" />
  1350. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1351. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1352. <xacro:property name="default_origin">
  1353.   <origin xyz="0 0 0" rpy="0 0 0" />
  1354. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1355. <xacro:property name="wheel_length" value="0.05" />
  1356. <xacro:property name="pi" value="3.14159" />
  1357. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1358. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1359. <xacro:property name="default_origin">
  1360.   <origin xyz="0 0 0" rpy="0 0 0" />
  1361. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1362. <xacro:property name="wheel_length" value="0.05" />
  1363. <xacro:property name="pi" value="3.14159" />
  1364. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1365. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1366. <xacro:property name="default_origin">
  1367.   <origin xyz="0 0 0" rpy="0 0 0" />
  1368. </xacro:property> prius_hybrid
  1369. bin_4_dropping_task<xacro:property name="wheel_radius" value="0.1" />
  1370. <xacro:property name="wheel_length" value="0.05" />
  1371. <xacro:property name="pi" value="3.14159" />
  1372. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1373. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1374. <xacro:property name="default_origin">
  1375.   <origin xyz="0 0 0" rpy="0 0 0" />
  1376. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1377. <xacro:property name="wheel_length" value="0.05" />
  1378. <xacro:property name="pi" value="3.14159" />
  1379. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1380. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1381. <xacro:property name="default_origin">
  1382.   <origin xyz="0 0 0" rpy="0 0 0" />
  1383. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1384. <xacro:property name="wheel_length" value="0.05" />
  1385. <xacro:property name="pi" value="3.14159" />
  1386. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1387. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1388. <xacro:property name="default_origin">
  1389.   <origin xyz="0 0 0" rpy="0 0 0" />
  1390. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1391. <xacro:property name="wheel_length" value="0.05" />
  1392. <xacro:property name="pi" value="3.14159" />
  1393. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1394. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1395. <xacro:property name="default_origin">
  1396.   <origin xyz="0 0 0" rpy="0 0 0" />
  1397. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1398. <xacro:property name="wheel_length" value="0.05" />
  1399. <xacro:property name="pi" value="3.14159" />
  1400. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1401. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1402. <xacro:property name="default_origin">
  1403.   <origin xyz="0 0 0" rpy="0 0 0" />
  1404. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1405. <xacro:property name="wheel_length" value="0.05" />
  1406. <xacro:property name="pi" value="3.14159" />
  1407. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1408. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1409. <xacro:property name="default_origin">
  1410.   <origin xyz="0 0 0" rpy="0 0 0" />
  1411. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1412. <xacro:property name="wheel_length" value="0.05" />
  1413. <xacro:property name="pi" value="3.14159" />
  1414. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1415. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1416. <xacro:property name="default_origin">
  1417.   <origin xyz="0 0 0" rpy="0 0 0" />
  1418. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1419. <xacro:property name="wheel_length" value="0.05" />
  1420. <xacro:property name="pi" value="3.14159" />
  1421. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1422. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1423. <xacro:property name="default_origin">
  1424.   <origin xyz="0 0 0" rpy="0 0 0" />
  1425. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1426. <xacro:property name="wheel_length" value="0.05" />
  1427. <xacro:property name="pi" value="3.14159" />
  1428. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1429. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1430. <xacro:property name="default_origin">
  1431.   <origin xyz="0 0 0" rpy="0 0 0" />
  1432. </xacro:property> gasket_part<xacro:property name="wheel_radius" value="0.1" />
  1433. <xacro:property name="wheel_length" value="0.05" />
  1434. <xacro:property name="pi" value="3.14159" />
  1435. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1436. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1437. <xacro:property name="default_origin">
  1438.   <origin xyz="0 0 0" rpy="0 0 0" />
  1439. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1440. <xacro:property name="wheel_length" value="0.05" />
  1441. <xacro:property name="pi" value="3.14159" />
  1442. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1443. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1444. <xacro:property name="default_origin">
  1445.   <origin xyz="0 0 0" rpy="0 0 0" />
  1446. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1447. <xacro:property name="wheel_length" value="0.05" />
  1448. <xacro:property name="pi" value="3.14159" />
  1449. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1450. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1451. <xacro:property name="default_origin">
  1452.   <origin xyz="0 0 0" rpy="0 0 0" />
  1453. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1454. <xacro:property name="wheel_length" value="0.05" />
  1455. <xacro:property name="pi" value="3.14159" />
  1456. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1457. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1458. <xacro:property name="default_origin">
  1459.   <origin xyz="0 0 0" rpy="0 0 0" />
  1460. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1461. <xacro:property name="wheel_length" value="0.05" />
  1462. <xacro:property name="pi" value="3.14159" />
  1463. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1464. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1465. <xacro:property name="default_origin">
  1466.   <origin xyz="0 0 0" rpy="0 0 0" />
  1467. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1468. <xacro:property name="wheel_length" value="0.05" />
  1469. <xacro:property name="pi" value="3.14159" />
  1470. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1471. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1472. <xacro:property name="default_origin">
  1473.   <origin xyz="0 0 0" rpy="0 0 0" />
  1474. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1475. <xacro:property name="wheel_length" value="0.05" />
  1476. <xacro:property name="pi" value="3.14159" />
  1477. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1478. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1479. <xacro:property name="default_origin">
  1480.   <origin xyz="0 0 0" rpy="0 0 0" />
  1481. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1482. <xacro:property name="wheel_length" value="0.05" />
  1483. <xacro:property name="pi" value="3.14159" />
  1484. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1485. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1486. <xacro:property name="default_origin">
  1487.   <origin xyz="0 0 0" rpy="0 0 0" />
  1488. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1489. <xacro:property name="wheel_length" value="0.05" />
  1490. <xacro:property name="pi" value="3.14159" />
  1491. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1492. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1493. <xacro:property name="default_origin">
  1494.   <origin xyz="0 0 0" rpy="0 0 0" />
  1495. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1496. <xacro:property name="wheel_length" value="0.05" />
  1497. <xacro:property name="pi" value="3.14159" />
  1498. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1499. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1500. <xacro:property name="default_origin">
  1501.   <origin xyz="0 0 0" rpy="0 0 0" />
  1502. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1503. <xacro:property name="wheel_length" value="0.05" />
  1504. <xacro:property name="pi" value="3.14159" />
  1505. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1506. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1507. <xacro:property name="default_origin">
  1508.   <origin xyz="0 0 0" rpy="0 0 0" />
  1509. </xacro:property>prius_hybrid_sensors
  1510. bookshelf<xacro:property name="wheel_radius" value="0.1" />
  1511. <xacro:property name="wheel_length" value="0.05" />
  1512. <xacro:property name="pi" value="3.14159" />
  1513. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1514. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1515. <xacro:property name="default_origin">
  1516.   <origin xyz="0 0 0" rpy="0 0 0" />
  1517. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1518. <xacro:property name="wheel_length" value="0.05" />
  1519. <xacro:property name="pi" value="3.14159" />
  1520. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1521. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1522. <xacro:property name="default_origin">
  1523.   <origin xyz="0 0 0" rpy="0 0 0" />
  1524. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1525. <xacro:property name="wheel_length" value="0.05" />
  1526. <xacro:property name="pi" value="3.14159" />
  1527. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1528. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1529. <xacro:property name="default_origin">
  1530.   <origin xyz="0 0 0" rpy="0 0 0" />
  1531. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1532. <xacro:property name="wheel_length" value="0.05" />
  1533. <xacro:property name="pi" value="3.14159" />
  1534. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1535. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1536. <xacro:property name="default_origin">
  1537.   <origin xyz="0 0 0" rpy="0 0 0" />
  1538. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1539. <xacro:property name="wheel_length" value="0.05" />
  1540. <xacro:property name="pi" value="3.14159" />
  1541. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1542. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1543. <xacro:property name="default_origin">
  1544.   <origin xyz="0 0 0" rpy="0 0 0" />
  1545. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1546. <xacro:property name="wheel_length" value="0.05" />
  1547. <xacro:property name="pi" value="3.14159" />
  1548. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1549. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1550. <xacro:property name="default_origin">
  1551.   <origin xyz="0 0 0" rpy="0 0 0" />
  1552. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1553. <xacro:property name="wheel_length" value="0.05" />
  1554. <xacro:property name="pi" value="3.14159" />
  1555. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1556. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1557. <xacro:property name="default_origin">
  1558.   <origin xyz="0 0 0" rpy="0 0 0" />
  1559. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1560. <xacro:property name="wheel_length" value="0.05" />
  1561. <xacro:property name="pi" value="3.14159" />
  1562. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1563. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1564. <xacro:property name="default_origin">
  1565.   <origin xyz="0 0 0" rpy="0 0 0" />
  1566. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1567. <xacro:property name="wheel_length" value="0.05" />
  1568. <xacro:property name="pi" value="3.14159" />
  1569. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1570. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1571. <xacro:property name="default_origin">
  1572.   <origin xyz="0 0 0" rpy="0 0 0" />
  1573. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1574. <xacro:property name="wheel_length" value="0.05" />
  1575. <xacro:property name="pi" value="3.14159" />
  1576. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1577. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1578. <xacro:property name="default_origin">
  1579.   <origin xyz="0 0 0" rpy="0 0 0" />
  1580. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1581. <xacro:property name="wheel_length" value="0.05" />
  1582. <xacro:property name="pi" value="3.14159" />
  1583. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1584. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1585. <xacro:property name="default_origin">
  1586.   <origin xyz="0 0 0" rpy="0 0 0" />
  1587. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1588. <xacro:property name="wheel_length" value="0.05" />
  1589. <xacro:property name="pi" value="3.14159" />
  1590. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1591. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1592. <xacro:property name="default_origin">
  1593.   <origin xyz="0 0 0" rpy="0 0 0" />
  1594. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1595. <xacro:property name="wheel_length" value="0.05" />
  1596. <xacro:property name="pi" value="3.14159" />
  1597. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1598. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1599. <xacro:property name="default_origin">
  1600.   <origin xyz="0 0 0" rpy="0 0 0" />
  1601. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1602. <xacro:property name="wheel_length" value="0.05" />
  1603. <xacro:property name="pi" value="3.14159" />
  1604. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1605. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1606. <xacro:property name="default_origin">
  1607.   <origin xyz="0 0 0" rpy="0 0 0" />
  1608. </xacro:property> gas_station<xacro:property name="wheel_radius" value="0.1" />
  1609. <xacro:property name="wheel_length" value="0.05" />
  1610. <xacro:property name="pi" value="3.14159" />
  1611. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1612. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1613. <xacro:property name="default_origin">
  1614.   <origin xyz="0 0 0" rpy="0 0 0" />
  1615. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1616. <xacro:property name="wheel_length" value="0.05" />
  1617. <xacro:property name="pi" value="3.14159" />
  1618. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1619. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1620. <xacro:property name="default_origin">
  1621.   <origin xyz="0 0 0" rpy="0 0 0" />
  1622. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1623. <xacro:property name="wheel_length" value="0.05" />
  1624. <xacro:property name="pi" value="3.14159" />
  1625. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1626. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1627. <xacro:property name="default_origin">
  1628.   <origin xyz="0 0 0" rpy="0 0 0" />
  1629. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1630. <xacro:property name="wheel_length" value="0.05" />
  1631. <xacro:property name="pi" value="3.14159" />
  1632. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1633. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1634. <xacro:property name="default_origin">
  1635.   <origin xyz="0 0 0" rpy="0 0 0" />
  1636. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1637. <xacro:property name="wheel_length" value="0.05" />
  1638. <xacro:property name="pi" value="3.14159" />
  1639. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1640. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1641. <xacro:property name="default_origin">
  1642.   <origin xyz="0 0 0" rpy="0 0 0" />
  1643. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1644. <xacro:property name="wheel_length" value="0.05" />
  1645. <xacro:property name="pi" value="3.14159" />
  1646. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1647. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1648. <xacro:property name="default_origin">
  1649.   <origin xyz="0 0 0" rpy="0 0 0" />
  1650. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1651. <xacro:property name="wheel_length" value="0.05" />
  1652. <xacro:property name="pi" value="3.14159" />
  1653. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1654. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1655. <xacro:property name="default_origin">
  1656.   <origin xyz="0 0 0" rpy="0 0 0" />
  1657. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1658. <xacro:property name="wheel_length" value="0.05" />
  1659. <xacro:property name="pi" value="3.14159" />
  1660. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1661. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1662. <xacro:property name="default_origin">
  1663.   <origin xyz="0 0 0" rpy="0 0 0" />
  1664. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1665. <xacro:property name="wheel_length" value="0.05" />
  1666. <xacro:property name="pi" value="3.14159" />
  1667. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1668. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1669. <xacro:property name="default_origin">
  1670.   <origin xyz="0 0 0" rpy="0 0 0" />
  1671. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1672. <xacro:property name="wheel_length" value="0.05" />
  1673. <xacro:property name="pi" value="3.14159" />
  1674. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1675. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1676. <xacro:property name="default_origin">
  1677.   <origin xyz="0 0 0" rpy="0 0 0" />
  1678. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1679. <xacro:property name="wheel_length" value="0.05" />
  1680. <xacro:property name="pi" value="3.14159" />
  1681. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1682. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1683. <xacro:property name="default_origin">
  1684.   <origin xyz="0 0 0" rpy="0 0 0" />
  1685. </xacro:property>pulley_part
  1686. bowl<xacro:property name="wheel_radius" value="0.1" />
  1687. <xacro:property name="wheel_length" value="0.05" />
  1688. <xacro:property name="pi" value="3.14159" />
  1689. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1690. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1691. <xacro:property name="default_origin">
  1692.   <origin xyz="0 0 0" rpy="0 0 0" />
  1693. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1694. <xacro:property name="wheel_length" value="0.05" />
  1695. <xacro:property name="pi" value="3.14159" />
  1696. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1697. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1698. <xacro:property name="default_origin">
  1699.   <origin xyz="0 0 0" rpy="0 0 0" />
  1700. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1701. <xacro:property name="wheel_length" value="0.05" />
  1702. <xacro:property name="pi" value="3.14159" />
  1703. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1704. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1705. <xacro:property name="default_origin">
  1706.   <origin xyz="0 0 0" rpy="0 0 0" />
  1707. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1708. <xacro:property name="wheel_length" value="0.05" />
  1709. <xacro:property name="pi" value="3.14159" />
  1710. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1711. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1712. <xacro:property name="default_origin">
  1713.   <origin xyz="0 0 0" rpy="0 0 0" />
  1714. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1715. <xacro:property name="wheel_length" value="0.05" />
  1716. <xacro:property name="pi" value="3.14159" />
  1717. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1718. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1719. <xacro:property name="default_origin">
  1720.   <origin xyz="0 0 0" rpy="0 0 0" />
  1721. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1722. <xacro:property name="wheel_length" value="0.05" />
  1723. <xacro:property name="pi" value="3.14159" />
  1724. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1725. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1726. <xacro:property name="default_origin">
  1727.   <origin xyz="0 0 0" rpy="0 0 0" />
  1728. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1729. <xacro:property name="wheel_length" value="0.05" />
  1730. <xacro:property name="pi" value="3.14159" />
  1731. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1732. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1733. <xacro:property name="default_origin">
  1734.   <origin xyz="0 0 0" rpy="0 0 0" />
  1735. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1736. <xacro:property name="wheel_length" value="0.05" />
  1737. <xacro:property name="pi" value="3.14159" />
  1738. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1739. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1740. <xacro:property name="default_origin">
  1741.   <origin xyz="0 0 0" rpy="0 0 0" />
  1742. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1743. <xacro:property name="wheel_length" value="0.05" />
  1744. <xacro:property name="pi" value="3.14159" />
  1745. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1746. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1747. <xacro:property name="default_origin">
  1748.   <origin xyz="0 0 0" rpy="0 0 0" />
  1749. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1750. <xacro:property name="wheel_length" value="0.05" />
  1751. <xacro:property name="pi" value="3.14159" />
  1752. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1753. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1754. <xacro:property name="default_origin">
  1755.   <origin xyz="0 0 0" rpy="0 0 0" />
  1756. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1757. <xacro:property name="wheel_length" value="0.05" />
  1758. <xacro:property name="pi" value="3.14159" />
  1759. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1760. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1761. <xacro:property name="default_origin">
  1762.   <origin xyz="0 0 0" rpy="0 0 0" />
  1763. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1764. <xacro:property name="wheel_length" value="0.05" />
  1765. <xacro:property name="pi" value="3.14159" />
  1766. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1767. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1768. <xacro:property name="default_origin">
  1769.   <origin xyz="0 0 0" rpy="0 0 0" />
  1770. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1771. <xacro:property name="wheel_length" value="0.05" />
  1772. <xacro:property name="pi" value="3.14159" />
  1773. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1774. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1775. <xacro:property name="default_origin">
  1776.   <origin xyz="0 0 0" rpy="0 0 0" />
  1777. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1778. <xacro:property name="wheel_length" value="0.05" />
  1779. <xacro:property name="pi" value="3.14159" />
  1780. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1781. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1782. <xacro:property name="default_origin">
  1783.   <origin xyz="0 0 0" rpy="0 0 0" />
  1784. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1785. <xacro:property name="wheel_length" value="0.05" />
  1786. <xacro:property name="pi" value="3.14159" />
  1787. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1788. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1789. <xacro:property name="default_origin">
  1790.   <origin xyz="0 0 0" rpy="0 0 0" />
  1791. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1792. <xacro:property name="wheel_length" value="0.05" />
  1793. <xacro:property name="pi" value="3.14159" />
  1794. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1795. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1796. <xacro:property name="default_origin">
  1797.   <origin xyz="0 0 0" rpy="0 0 0" />
  1798. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1799. <xacro:property name="wheel_length" value="0.05" />
  1800. <xacro:property name="pi" value="3.14159" />
  1801. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1802. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1803. <xacro:property name="default_origin">
  1804.   <origin xyz="0 0 0" rpy="0 0 0" />
  1805. </xacro:property>gazebo<xacro:property name="wheel_radius" value="0.1" />
  1806. <xacro:property name="wheel_length" value="0.05" />
  1807. <xacro:property name="pi" value="3.14159" />
  1808. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1809. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1810. <xacro:property name="default_origin">
  1811.   <origin xyz="0 0 0" rpy="0 0 0" />
  1812. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1813. <xacro:property name="wheel_length" value="0.05" />
  1814. <xacro:property name="pi" value="3.14159" />
  1815. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1816. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1817. <xacro:property name="default_origin">
  1818.   <origin xyz="0 0 0" rpy="0 0 0" />
  1819. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1820. <xacro:property name="wheel_length" value="0.05" />
  1821. <xacro:property name="pi" value="3.14159" />
  1822. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1823. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1824. <xacro:property name="default_origin">
  1825.   <origin xyz="0 0 0" rpy="0 0 0" />
  1826. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1827. <xacro:property name="wheel_length" value="0.05" />
  1828. <xacro:property name="pi" value="3.14159" />
  1829. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1830. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1831. <xacro:property name="default_origin">
  1832.   <origin xyz="0 0 0" rpy="0 0 0" />
  1833. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1834. <xacro:property name="wheel_length" value="0.05" />
  1835. <xacro:property name="pi" value="3.14159" />
  1836. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1837. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1838. <xacro:property name="default_origin">
  1839.   <origin xyz="0 0 0" rpy="0 0 0" />
  1840. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1841. <xacro:property name="wheel_length" value="0.05" />
  1842. <xacro:property name="pi" value="3.14159" />
  1843. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1844. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1845. <xacro:property name="default_origin">
  1846.   <origin xyz="0 0 0" rpy="0 0 0" />
  1847. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1848. <xacro:property name="wheel_length" value="0.05" />
  1849. <xacro:property name="pi" value="3.14159" />
  1850. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1851. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1852. <xacro:property name="default_origin">
  1853.   <origin xyz="0 0 0" rpy="0 0 0" />
  1854. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1855. <xacro:property name="wheel_length" value="0.05" />
  1856. <xacro:property name="pi" value="3.14159" />
  1857. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1858. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1859. <xacro:property name="default_origin">
  1860.   <origin xyz="0 0 0" rpy="0 0 0" />
  1861. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1862. <xacro:property name="wheel_length" value="0.05" />
  1863. <xacro:property name="pi" value="3.14159" />
  1864. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1865. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1866. <xacro:property name="default_origin">
  1867.   <origin xyz="0 0 0" rpy="0 0 0" />
  1868. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1869. <xacro:property name="wheel_length" value="0.05" />
  1870. <xacro:property name="pi" value="3.14159" />
  1871. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1872. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1873. <xacro:property name="default_origin">
  1874.   <origin xyz="0 0 0" rpy="0 0 0" />
  1875. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1876. <xacro:property name="wheel_length" value="0.05" />
  1877. <xacro:property name="pi" value="3.14159" />
  1878. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1879. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1880. <xacro:property name="default_origin">
  1881.   <origin xyz="0 0 0" rpy="0 0 0" />
  1882. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1883. <xacro:property name="wheel_length" value="0.05" />
  1884. <xacro:property name="pi" value="3.14159" />
  1885. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1886. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1887. <xacro:property name="default_origin">
  1888.   <origin xyz="0 0 0" rpy="0 0 0" />
  1889. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1890. <xacro:property name="wheel_length" value="0.05" />
  1891. <xacro:property name="pi" value="3.14159" />
  1892. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1893. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1894. <xacro:property name="default_origin">
  1895.   <origin xyz="0 0 0" rpy="0 0 0" />
  1896. </xacro:property> quadrotor
  1897. box_target_green<xacro:property name="wheel_radius" value="0.1" />
  1898. <xacro:property name="wheel_length" value="0.05" />
  1899. <xacro:property name="pi" value="3.14159" />
  1900. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1901. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1902. <xacro:property name="default_origin">
  1903.   <origin xyz="0 0 0" rpy="0 0 0" />
  1904. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1905. <xacro:property name="wheel_length" value="0.05" />
  1906. <xacro:property name="pi" value="3.14159" />
  1907. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1908. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1909. <xacro:property name="default_origin">
  1910.   <origin xyz="0 0 0" rpy="0 0 0" />
  1911. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1912. <xacro:property name="wheel_length" value="0.05" />
  1913. <xacro:property name="pi" value="3.14159" />
  1914. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1915. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1916. <xacro:property name="default_origin">
  1917.   <origin xyz="0 0 0" rpy="0 0 0" />
  1918. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1919. <xacro:property name="wheel_length" value="0.05" />
  1920. <xacro:property name="pi" value="3.14159" />
  1921. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1922. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1923. <xacro:property name="default_origin">
  1924.   <origin xyz="0 0 0" rpy="0 0 0" />
  1925. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1926. <xacro:property name="wheel_length" value="0.05" />
  1927. <xacro:property name="pi" value="3.14159" />
  1928. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1929. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1930. <xacro:property name="default_origin">
  1931.   <origin xyz="0 0 0" rpy="0 0 0" />
  1932. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1933. <xacro:property name="wheel_length" value="0.05" />
  1934. <xacro:property name="pi" value="3.14159" />
  1935. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1936. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1937. <xacro:property name="default_origin">
  1938.   <origin xyz="0 0 0" rpy="0 0 0" />
  1939. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1940. <xacro:property name="wheel_length" value="0.05" />
  1941. <xacro:property name="pi" value="3.14159" />
  1942. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1943. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1944. <xacro:property name="default_origin">
  1945.   <origin xyz="0 0 0" rpy="0 0 0" />
  1946. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1947. <xacro:property name="wheel_length" value="0.05" />
  1948. <xacro:property name="pi" value="3.14159" />
  1949. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1950. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1951. <xacro:property name="default_origin">
  1952.   <origin xyz="0 0 0" rpy="0 0 0" />
  1953. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1954. <xacro:property name="wheel_length" value="0.05" />
  1955. <xacro:property name="pi" value="3.14159" />
  1956. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1957. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1958. <xacro:property name="default_origin">
  1959.   <origin xyz="0 0 0" rpy="0 0 0" />
  1960. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1961. <xacro:property name="wheel_length" value="0.05" />
  1962. <xacro:property name="pi" value="3.14159" />
  1963. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1964. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1965. <xacro:property name="default_origin">
  1966.   <origin xyz="0 0 0" rpy="0 0 0" />
  1967. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1968. <xacro:property name="wheel_length" value="0.05" />
  1969. <xacro:property name="pi" value="3.14159" />
  1970. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1971. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1972. <xacro:property name="default_origin">
  1973.   <origin xyz="0 0 0" rpy="0 0 0" />
  1974. </xacro:property>gear_part<xacro:property name="wheel_radius" value="0.1" />
  1975. <xacro:property name="wheel_length" value="0.05" />
  1976. <xacro:property name="pi" value="3.14159" />
  1977. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1978. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1979. <xacro:property name="default_origin">
  1980.   <origin xyz="0 0 0" rpy="0 0 0" />
  1981. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1982. <xacro:property name="wheel_length" value="0.05" />
  1983. <xacro:property name="pi" value="3.14159" />
  1984. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1985. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1986. <xacro:property name="default_origin">
  1987.   <origin xyz="0 0 0" rpy="0 0 0" />
  1988. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1989. <xacro:property name="wheel_length" value="0.05" />
  1990. <xacro:property name="pi" value="3.14159" />
  1991. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1992. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1993. <xacro:property name="default_origin">
  1994.   <origin xyz="0 0 0" rpy="0 0 0" />
  1995. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1996. <xacro:property name="wheel_length" value="0.05" />
  1997. <xacro:property name="pi" value="3.14159" />
  1998. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1999. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2000. <xacro:property name="default_origin">
  2001.   <origin xyz="0 0 0" rpy="0 0 0" />
  2002. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2003. <xacro:property name="wheel_length" value="0.05" />
  2004. <xacro:property name="pi" value="3.14159" />
  2005. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2006. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2007. <xacro:property name="default_origin">
  2008.   <origin xyz="0 0 0" rpy="0 0 0" />
  2009. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2010. <xacro:property name="wheel_length" value="0.05" />
  2011. <xacro:property name="pi" value="3.14159" />
  2012. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2013. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2014. <xacro:property name="default_origin">
  2015.   <origin xyz="0 0 0" rpy="0 0 0" />
  2016. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2017. <xacro:property name="wheel_length" value="0.05" />
  2018. <xacro:property name="pi" value="3.14159" />
  2019. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2020. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2021. <xacro:property name="default_origin">
  2022.   <origin xyz="0 0 0" rpy="0 0 0" />
  2023. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2024. <xacro:property name="wheel_length" value="0.05" />
  2025. <xacro:property name="pi" value="3.14159" />
  2026. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2027. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2028. <xacro:property name="default_origin">
  2029.   <origin xyz="0 0 0" rpy="0 0 0" />
  2030. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2031. <xacro:property name="wheel_length" value="0.05" />
  2032. <xacro:property name="pi" value="3.14159" />
  2033. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2034. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2035. <xacro:property name="default_origin">
  2036.   <origin xyz="0 0 0" rpy="0 0 0" />
  2037. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2038. <xacro:property name="wheel_length" value="0.05" />
  2039. <xacro:property name="pi" value="3.14159" />
  2040. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2041. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2042. <xacro:property name="default_origin">
  2043.   <origin xyz="0 0 0" rpy="0 0 0" />
  2044. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2045. <xacro:property name="wheel_length" value="0.05" />
  2046. <xacro:property name="pi" value="3.14159" />
  2047. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2048. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2049. <xacro:property name="default_origin">
  2050.   <origin xyz="0 0 0" rpy="0 0 0" />
  2051. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2052. <xacro:property name="wheel_length" value="0.05" />
  2053. <xacro:property name="pi" value="3.14159" />
  2054. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2055. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2056. <xacro:property name="default_origin">
  2057.   <origin xyz="0 0 0" rpy="0 0 0" />
  2058. </xacro:property>r2_description
  2059. ......
复制代码
再次打开Gazebo便可以加载我们下载好的models了。
1.1.4 测试

打开Gazebo,在Insert面板中选择ambulance模型导入,查看效果;
2.png
1.2 Gazebo GUI简介

接下来,我们将对Gazebo图形用户界面进行介绍。我们将学习到一些基本操作,例如按钮的功能以及如何在场景中导航。
启动Gazebo后,你将看到这个界面:
3.png
Gazebo交互界面由许多组成部分,接下来将逐一介绍。
1.2.1 场景(Scene)

场景是模拟器的主要部分,是仿真模型显示的地方,你可以在这操作仿真对象,使其与环境进行交互。
1.2.2 面板(Panels)

面板分为左右两侧,可以把两侧的面板设置为显示、隐藏或调整它的大小。
1.2.2.1 左侧面板

启动Gazebo时,默认情况下会显示左侧面板。面板中有三个选项卡:

  • World:该选项卡显示当前场景中的模型,并允许您查看和修改模型参数,例如它们的姿势。您也可以通过展开GUI选项并调整相机姿势来更改相机视角;
  • Insert:该选项卡是向仿真场景中添加新对象(模型),要查看模型列表,需要单击箭头展开文件夹。单击(并释放)要插入的模型,然后在场景中再次单击以添加它;
  • Layers:该选项卡组织并显示仿真中可用的不同可视化组,一个图层可以包含一个或多个模型,打开或关闭图层将显示或隐藏该图层中的模型。这是一个可选功能,因此在大多数情况下,此选项卡将为空;
1.2.2.2 右侧面板

默认情况下,右侧面板处于隐藏状态。单击并拖动该栏以将其打开。右面板可用于与选定模型的移动部件(关节)交互。如果场景中没有选择模型,面板将不显示任何信息。
1.2.3<xacro:property name="wheel_radius" value="0.1" />
<xacro:property name="wheel_length" value="0.05" />
<xacro:property name="pi" value="3.14159" />


<cylinder radius="${wheel_radius}" length="${wheel_length}" />


<xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />


<xacro:property name="default_origin">
  <origin xyz="0 0 0" rpy="0 0 0" />
</xacro:property>工具栏(Toolbars)


Gazebo界面有两个工具栏。一个位于场景上方,另一个位于下方。
1.2.3.1 顶部工具栏

4.png

顶部工具栏为主工具栏,包含一些与模拟器交互时最常用的选项,如按钮:选择、移动、旋转和缩放;创建简单形状(例如立方体、球体、圆柱体)以及复制/粘贴。

  • 选择模型(Select mode):在场景中做标注;
  • 转换模式(Translate mode):选择要移动的模型;
  • 旋转模式(Rotate mode):选择要旋转的模型;
  • 缩放模式(Scale mode):选择要缩放的模型;
  • 撤消/重做(Undo/Redo):撤消/重做场景中的操作;
  • 灯光(Lights):将灯光添加到场景;
  • 复制/粘贴(Copy/Paste):复制/粘贴场景中的模型;
  • 对齐(Align):将模型彼此对齐;
  • 捕捉(Snap):将一个模型捕捉到另一个模型;
  • 更改视图(Change view):从不同角度查看场景。
1.2.3.2 底部工具栏

5.png

底部工具栏显示有关仿真的数据,如仿真时间(Simulation time)及其与真实时间(Real time)的关系;

  • 仿真时间是指当仿真运行时,时间在仿真环境中过得有多快,仿真可以比真实时间慢或快,具体取决于运行仿真所需的计算量;
  • 真实时间是指在仿真环境中运行时实际经过的时间,仿真时间和真实时间的比率称为实时因子;
世界状态每迭代一次就更新一次,您可以在底部工具栏的右侧看到迭代次数,每次迭代都会将仿真推进一个固定的秒数,称为步长。默认情况下,步长为1ms。您可以按暂停按钮暂停仿真,并使用步长按键一次执行多个步长。
1.2.3.3 菜单栏

6.jpeg
像大多数应用程序一样,Gazebo顶部有一个应用程序菜单。某些菜单选项会显示工具栏中。在场景中,右键单击上下文菜单选项,可查看各种菜单。注意:有些Linux桌面会隐藏应用程序菜单。如果看不到菜单,请将光标移到应用程序窗口的顶部,菜单就会出现。
1.2.4 鼠标

鼠标在场景中导航时非常有用。强烈建议使用带滚轮的鼠标。下面是在场景中导航和更改视角的基本鼠标操作。右键单击模型将打开一个包含各种选项的上下文菜单。
7.png
认识了Gazebo,接下来是不是该试试机器人仿真啦?
大家还记得之前课程中,我们设计的移动机器人模型么?我们一起尝试把它放到Gazebo中,还要控制它在仿真环境中运动。
1.3 模型文件

Gazebo支持多种模型文件格式,它们通常分为两大类:模型描述文件和模型资源文件。
下图清晰地展示了这两大类及其包含的具体格式:
8.jpg
1.3.1 模型描述文件

这是Gazebo模型的“大脑”,用于定义模型的结构、物理属性、关节和插件等。
1.3.1.1 SDF (Simulation Description Format)

Gazebo原生、最核心且功能最强大的格式,文件后缀为.sdf 或 .world。其特点:

  • 分层描述:一个<xacro:property name="wheel_radius" value="0.1" />
    <xacro:property name="wheel_length" value="0.05" />
    <xacro:property name="pi" value="3.14159" />


    <cylinder radius="${wheel_radius}" length="${wheel_length}" />


    <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />


    <xacro:property name="default_origin">
      <origin xyz="0 0 0" rpy="0 0 0" />
    </xacro:property>可以嵌套包含另一个 ,非常适合构建复杂的复合模型(如一辆带传感器的机器人汽车);
  • 功能全面:除了基本的模型定义,还原生支持光照、大气、物理引擎参数等完整的仿真环境设置;
  • 版本化:格式有版本号(如SDF 1.6, 1.9),不同版本的Gazebo支持不同的SDF版本。
使用场景构建Gazebo世界(.world文件)、定义复杂机器人模型、配置完整的仿真环境。
1.3.1.2 URDF (Unified Robot Description Format)

ROS生态中的标准机器人描述格式,在Gazebo中通过插件兼容,文件后缀为.urdf 或 .xacro。其特点:

  • 树形结构:机器人模型必须是一个没有闭环的树形结构(通过关节连接连杆),这很符合大多数机器人的实际结构;
  • 侧重机器人:主要用于描述单个机器人;
  • 需要扩展:原生URDF缺乏仿真所需的许多属性(如摩擦系数、惯性细节)。为了在Gazebo中正常使用,通常需要在URDF标签内添加Gazebo特定的扩展标签(如 )。
使用场景:主要在ROS项目中描述机器人模型,.xacro 文件可以通过 ros2 run xacro xacro 命令预处理生成 .urdf 文件。
1.3.2 模型资源文件

这些是“血肉”,为模型提供具体的几何形状、视觉外观和特效。
1.3.2.1 3D网格文件

这是最关键的资源文件,决定了模型的3D形状。

  • Collada (.dae):Gazebo官方推荐的格式。支持颜色、纹理贴图、多材质和法线贴图等高级视觉特性,效果最好;
  • OBJ (.obj):广泛支持的简单格式,同样支持纹理贴图(需配合 .mtl 材质文件);
  • STL (.stl):非常常见的3D打印格式,但只包含纯几何三角面片,不支持颜色和纹理,在Gazebo中视觉效果单一。
1.3.2.2 材质与纹理文件

OGRE材质脚本 (.material):用于定义复杂的着色器、纹理混合等高级渲染效果。
图像纹理文件 (.png, .jpg):贴在3D网格表面的图片,提供真实感。
1.3.2.3 粒子效果文件

定义烟雾、火焰、水流等动态粒子效果。
1.3.3 标准模型目录

一个标准的Gazebo模型包应包含以下文件:
  1. model_name/
  2. ├── model.config<xacro:property name="wheel_radius" value="0.1" />
  3. <xacro:property name="wheel_length" value="0.05" />
  4. <xacro:property name="pi" value="3.14159" />
  5. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  7. <xacro:property name="default_origin">
  8.   <origin xyz="0 0 0" rpy="0 0 0" />
  9. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  10. <xacro:property name="wheel_length" value="0.05" />
  11. <xacro:property name="pi" value="3.14159" />
  12. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  13. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  14. <xacro:property name="default_origin">
  15.   <origin xyz="0 0 0" rpy="0 0 0" />
  16. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  17. <xacro:property name="wheel_length" value="0.05" />
  18. <xacro:property name="pi" value="3.14159" />
  19. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  20. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  21. <xacro:property name="default_origin">
  22.   <origin xyz="0 0 0" rpy="0 0 0" />
  23. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  24. <xacro:property name="wheel_length" value="0.05" />
  25. <xacro:property name="pi" value="3.14159" />
  26. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  27. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  28. <xacro:property name="default_origin">
  29.   <origin xyz="0 0 0" rpy="0 0 0" />
  30. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  31. <xacro:property name="wheel_length" value="0.05" />
  32. <xacro:property name="pi" value="3.14159" />
  33. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  34. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  35. <xacro:property name="default_origin">
  36.   <origin xyz="0 0 0" rpy="0 0 0" />
  37. </xacro:property># 模型的元数据:名称、作者、版本、描述
  38. ├── model.sdf<xacro:property name="wheel_radius" value="0.1" />
  39. <xacro:property name="wheel_length" value="0.05" />
  40. <xacro:property name="pi" value="3.14159" />
  41. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  42. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  43. <xacro:property name="default_origin">
  44.   <origin xyz="0 0 0" rpy="0 0 0" />
  45. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  46. <xacro:property name="wheel_length" value="0.05" />
  47. <xacro:property name="pi" value="3.14159" />
  48. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  49. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  50. <xacro:property name="default_origin">
  51.   <origin xyz="0 0 0" rpy="0 0 0" />
  52. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  53. <xacro:property name="wheel_length" value="0.05" />
  54. <xacro:property name="pi" value="3.14159" />
  55. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  56. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  57. <xacro:property name="default_origin">
  58.   <origin xyz="0 0 0" rpy="0 0 0" />
  59. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  60. <xacro:property name="wheel_length" value="0.05" />
  61. <xacro:property name="pi" value="3.14159" />
  62. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  63. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  64. <xacro:property name="default_origin">
  65.   <origin xyz="0 0 0" rpy="0 0 0" />
  66. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  67. <xacro:property name="wheel_length" value="0.05" />
  68. <xacro:property name="pi" value="3.14159" />
  69. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  70. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  71. <xacro:property name="default_origin">
  72.   <origin xyz="0 0 0" rpy="0 0 0" />
  73. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  74. <xacro:property name="wheel_length" value="0.05" />
  75. <xacro:property name="pi" value="3.14159" />
  76. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  77. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  78. <xacro:property name="default_origin">
  79.   <origin xyz="0 0 0" rpy="0 0 0" />
  80. </xacro:property> # 模型的主体SDF描述文件(也可以是一个指向.world的配置)
  81. └── meshes/<xacro:property name="wheel_radius" value="0.1" />
  82. <xacro:property name="wheel_length" value="0.05" />
  83. <xacro:property name="pi" value="3.14159" />
  84. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  85. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  86. <xacro:property name="default_origin">
  87.   <origin xyz="0 0 0" rpy="0 0 0" />
  88. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  89. <xacro:property name="wheel_length" value="0.05" />
  90. <xacro:property name="pi" value="3.14159" />
  91. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  92. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  93. <xacro:property name="default_origin">
  94.   <origin xyz="0 0 0" rpy="0 0 0" />
  95. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  96. <xacro:property name="wheel_length" value="0.05" />
  97. <xacro:property name="pi" value="3.14159" />
  98. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  99. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  100. <xacro:property name="default_origin">
  101.   <origin xyz="0 0 0" rpy="0 0 0" />
  102. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  103. <xacro:property name="wheel_length" value="0.05" />
  104. <xacro:property name="pi" value="3.14159" />
  105. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  106. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  107. <xacro:property name="default_origin">
  108.   <origin xyz="0 0 0" rpy="0 0 0" />
  109. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  110. <xacro:property name="wheel_length" value="0.05" />
  111. <xacro:property name="pi" value="3.14159" />
  112. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  113. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  114. <xacro:property name="default_origin">
  115.   <origin xyz="0 0 0" rpy="0 0 0" />
  116. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  117. <xacro:property name="wheel_length" value="0.05" />
  118. <xacro:property name="pi" value="3.14159" />
  119. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  120. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  121. <xacro:property name="default_origin">
  122.   <origin xyz="0 0 0" rpy="0 0 0" />
  123. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  124. <xacro:property name="wheel_length" value="0.05" />
  125. <xacro:property name="pi" value="3.14159" />
  126. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  127. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  128. <xacro:property name="default_origin">
  129.   <origin xyz="0 0 0" rpy="0 0 0" />
  130. </xacro:property> # 存放所有3D网格文件(.dae, .obj, .stl)
  131. <xacro:property name="wheel_radius" value="0.1" />
  132. <xacro:property name="wheel_length" value="0.05" />
  133. <xacro:property name="pi" value="3.14159" />
  134. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  135. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  136. <xacro:property name="default_origin">
  137.   <origin xyz="0 0 0" rpy="0 0 0" />
  138. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  139. <xacro:property name="wheel_length" value="0.05" />
  140. <xacro:property name="pi" value="3.14159" />
  141. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  142. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  143. <xacro:property name="default_origin">
  144.   <origin xyz="0 0 0" rpy="0 0 0" />
  145. </xacro:property>├── visual_mesh.dae
  146. <xacro:property name="wheel_radius" value="0.1" />
  147. <xacro:property name="wheel_length" value="0.05" />
  148. <xacro:property name="pi" value="3.14159" />
  149. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  150. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  151. <xacro:property name="default_origin">
  152.   <origin xyz="0 0 0" rpy="0 0 0" />
  153. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  154. <xacro:property name="wheel_length" value="0.05" />
  155. <xacro:property name="pi" value="3.14159" />
  156. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  157. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  158. <xacro:property name="default_origin">
  159.   <origin xyz="0 0 0" rpy="0 0 0" />
  160. </xacro:property>└── collision_mesh.stl (通常用更简化的网格)
复制代码
这个模型文件夹可以放在你的Gazebo模型路径下(如 ~/.gazebo/models/),Gazebo启动时会自动扫描并加载。
二、自定义模型案例

我们在《ROS2之URDF建模》设计好的URDF模型此时还不能直接放到Gazebo中,需要我们做一些优化。这里给大家介绍一个URDF文件格式的升级版本——XACRO文件。
我们就通过XACRO文件对移动机器人的模型做一下优化,我们首先要使用这句命令安装必要的功能包;
  1. zhengyang@ubuntu:~/.gazebo/models$ sudo apt install ros-humble-xacro
复制代码
2.1 XACRO语法

同样也是对机器人URDF模型的创建,XACRO文件加入了更多编程化的实现方法,可以让模型创建更友好。比如:

  • 宏定义:一个小车有4个轮子,每个轮子都一样,我们就没必要创建4个一样的link,像函数定义一样,做一个可重复使用的模块就可以了;
  • 文件包含:复杂机器人的模型文件可能会很长,为了切分不同的模块,比如底盘、传感器,我们还可以把不同模块的模型放置在不同的文件中,然后再用一个总体文件做包含调用;
  • 可编程接口:比如在XACRO模型文件中,定义一些常量,描述机器人的尺寸,定义一些变量,在调用宏定义的时候传递数据,还可以在模型中做数据计算,甚至加入条件语句,比如你的机器人叫A,就有摄像头,如果叫B,就没有摄像头;
下面我们将详细介绍其核心语法和用法。
2.1.1 常量定义

用于定义可重用的常量值,是变量管理的基础;
  1. <xacro:property name="wheel_radius" value="0.1" />
  2. <xacro:property name="wheel_length" value="0.05" />
  3. <xacro:property name="pi" value="3.14159" />
  4. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6. <xacro:property name="default_origin">
  7.   <origin xyz="0 0 0" rpy="0 0 0" />
  8. </xacro:property>
复制代码
标签用来定义一些常量,比如这样定义一个\(\pi\)的常量名为pi,值为3.14159,在调用的时候,通过$加大括号,里边就可以使用定义好的常量了。
2.1.2 数学计算

XACRO支持丰富的数学运算和条件表达式;
  1. <xacro:property name="wheel_radius" value="0.1" />
  2. <xacro:property name="wheel_length" value="0.05" />
  3. <xacro:property name="pi" value="3.14159" />
  4. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6. <xacro:property name="default_origin">
  7.   <origin xyz="0 0 0" rpy="0 0 0" />
  8. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  9. <xacro:property name="wheel_length" value="0.05" />
  10. <xacro:property name="pi" value="3.14159" />
  11. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  12. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  13. <xacro:property name="default_origin">
  14.   <origin xyz="0 0 0" rpy="0 0 0" />
  15. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  16. <xacro:property name="wheel_length" value="0.05" />
  17. <xacro:property name="pi" value="3.14159" />
  18. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  19. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  20. <xacro:property name="default_origin">
  21.   <origin xyz="0 0 0" rpy="0 0 0" />
  22. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  23. <xacro:property name="wheel_length" value="0.05" />
  24. <xacro:property name="pi" value="3.14159" />
  25. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  26. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  27. <xacro:property name="default_origin">
  28.   <origin xyz="0 0 0" rpy="0 0 0" />
  29. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  30. <xacro:property name="wheel_length" value="0.05" />
  31. <xacro:property name="pi" value="3.14159" />
  32. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  33. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  34. <xacro:property name="default_origin">
  35.   <origin xyz="0 0 0" rpy="0 0 0" />
  36. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  37. <xacro:property name="wheel_length" value="0.05" />
  38. <xacro:property name="pi" value="3.14159" />
  39. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  40. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  41. <xacro:property name="default_origin">
  42.   <origin xyz="0 0 0" rpy="0 0 0" />
  43. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  44. <xacro:property name="wheel_length" value="0.05" />
  45. <xacro:property name="pi" value="3.14159" />
  46. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  47. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  48. <xacro:property name="default_origin">
  49.   <origin xyz="0 0 0" rpy="0 0 0" />
  50. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  51. <xacro:property name="wheel_length" value="0.05" />
  52. <xacro:property name="pi" value="3.14159" />
  53. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  54. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  55. <xacro:property name="default_origin">
  56.   <origin xyz="0 0 0" rpy="0 0 0" />
  57. </xacro:property>
复制代码
如果需要做数学计算,同样是在${}中进行,比如某一个位置,我们可以通过这两个常量做运算得到,就加入了加法和除法运算。
2.1.3 宏定义

宏是代码复用的关键,可以看作函数或模板;
  1. <xacro:property name="wheel_radius" value="0.1" />
  2. <xacro:property name="wheel_length" value="0.05" />
  3. <xacro:property name="pi" value="3.14159" />
  4. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6. <xacro:property name="default_origin">
  7.   <origin xyz="0 0 0" rpy="0 0 0" />
  8. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  9. <xacro:property name="wheel_length" value="0.05" />
  10. <xacro:property name="pi" value="3.14159" />
  11. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  12. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  13. <xacro:property name="default_origin">
  14.   <origin xyz="0 0 0" rpy="0 0 0" />
  15. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  16. <xacro:property name="wheel_length" value="0.05" />
  17. <xacro:property name="pi" value="3.14159" />
  18. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  19. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  20. <xacro:property name="default_origin">
  21.   <origin xyz="0 0 0" rpy="0 0 0" />
  22. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  23. <xacro:property name="wheel_length" value="0.05" />
  24. <xacro:property name="pi" value="3.14159" />
  25. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  26. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  27. <xacro:property name="default_origin">
  28.   <origin xyz="0 0 0" rpy="0 0 0" />
  29. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  30. <xacro:property name="wheel_length" value="0.05" />
  31. <xacro:property name="pi" value="3.14159" />
  32. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  33. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  34. <xacro:property name="default_origin">
  35.   <origin xyz="0 0 0" rpy="0 0 0" />
  36. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  37. <xacro:property name="wheel_length" value="0.05" />
  38. <xacro:property name="pi" value="3.14159" />
  39. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  40. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  41. <xacro:property name="default_origin">
  42.   <origin xyz="0 0 0" rpy="0 0 0" />
  43. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  44. <xacro:property name="wheel_length" value="0.05" />
  45. <xacro:property name="pi" value="3.14159" />
  46. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  47. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  48. <xacro:property name="default_origin">
  49.   <origin xyz="0 0 0" rpy="0 0 0" />
  50. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  51. <xacro:property name="wheel_length" value="0.05" />
  52. <xacro:property name="pi" value="3.14159" />
  53. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  54. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  55. <xacro:property name="default_origin">
  56.   <origin xyz="0 0 0" rpy="0 0 0" />
  57. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  58. <xacro:property name="wheel_length" value="0.05" />
  59. <xacro:property name="pi" value="3.14159" />
  60. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  61. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  62. <xacro:property name="default_origin">
  63.   <origin xyz="0 0 0" rpy="0 0 0" />
  64. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  65. <xacro:property name="wheel_length" value="0.05" />
  66. <xacro:property name="pi" value="3.14159" />
  67. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  68. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  69. <xacro:property name="default_origin">
  70.   <origin xyz="0 0 0" rpy="0 0 0" />
  71. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  72. <xacro:property name="wheel_length" value="0.05" />
  73. <xacro:property name="pi" value="3.14159" />
  74. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  75. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  76. <xacro:property name="default_origin">
  77.   <origin xyz="0 0 0" rpy="0 0 0" />
  78. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  79. <xacro:property name="wheel_length" value="0.05" />
  80. <xacro:property name="pi" value="3.14159" />
  81. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  82. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  83. <xacro:property name="default_origin">
  84.   <origin xyz="0 0 0" rpy="0 0 0" />
  85. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  86. <xacro:property name="wheel_length" value="0.05" />
  87. <xacro:property name="pi" value="3.14159" />
  88. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  89. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  90. <xacro:property name="default_origin">
  91.   <origin xyz="0 0 0" rpy="0 0 0" />
  92. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  93. <xacro:property name="wheel_length" value="0.05" />
  94. <xacro:property name="pi" value="3.14159" />
  95. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  96. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  97. <xacro:property name="default_origin">
  98.   <origin xyz="0 0 0" rpy="0 0 0" />
  99. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  100. <xacro:property name="wheel_length" value="0.05" />
  101. <xacro:property name="pi" value="3.14159" />
  102. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  103. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  104. <xacro:property name="default_origin">
  105.   <origin xyz="0 0 0" rpy="0 0 0" />
  106. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  107. <xacro:property name="wheel_length" value="0.05" />
  108. <xacro:property name="pi" value="3.14159" />
  109. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  110. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  111. <xacro:property name="default_origin">
  112.   <origin xyz="0 0 0" rpy="0 0 0" />
  113. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  114. <xacro:property name="wheel_length" value="0.05" />
  115. <xacro:property name="pi" value="3.14159" />
  116. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  117. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  118. <xacro:property name="default_origin">
  119.   <origin xyz="0 0 0" rpy="0 0 0" />
  120. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  121. <xacro:property name="wheel_length" value="0.05" />
  122. <xacro:property name="pi" value="3.14159" />
  123. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  124. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  125. <xacro:property name="default_origin">
  126.   <origin xyz="0 0 0" rpy="0 0 0" />
  127. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  128. <xacro:property name="wheel_length" value="0.05" />
  129. <xacro:property name="pi" value="3.14159" />
  130. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  131. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  132. <xacro:property name="default_origin">
  133.   <origin xyz="0 0 0" rpy="0 0 0" />
  134. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  135. <xacro:property name="wheel_length" value="0.05" />
  136. <xacro:property name="pi" value="3.14159" />
  137. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  138. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  139. <xacro:property name="default_origin">
  140.   <origin xyz="0 0 0" rpy="0 0 0" />
  141. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  142. <xacro:property name="wheel_length" value="0.05" />
  143. <xacro:property name="pi" value="3.14159" />
  144. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  145. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  146. <xacro:property name="default_origin">
  147.   <origin xyz="0 0 0" rpy="0 0 0" />
  148. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  149. <xacro:property name="wheel_length" value="0.05" />
  150. <xacro:property name="pi" value="3.14159" />
  151. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  152. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  153. <xacro:property name="default_origin">
  154.   <origin xyz="0 0 0" rpy="0 0 0" />
  155. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  156. <xacro:property name="wheel_length" value="0.05" />
  157. <xacro:property name="pi" value="3.14159" />
  158. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  159. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  160. <xacro:property name="default_origin">
  161.   <origin xyz="0 0 0" rpy="0 0 0" />
  162. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  163. <xacro:property name="wheel_length" value="0.05" />
  164. <xacro:property name="pi" value="3.14159" />
  165. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  166. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  167. <xacro:property name="default_origin">
  168.   <origin xyz="0 0 0" rpy="0 0 0" />
  169. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  170. <xacro:property name="wheel_length" value="0.05" />
  171. <xacro:property name="pi" value="3.14159" />
  172. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  173. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  174. <xacro:property name="default_origin">
  175.   <origin xyz="0 0 0" rpy="0 0 0" />
  176. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  177. <xacro:property name="wheel_length" value="0.05" />
  178. <xacro:property name="pi" value="3.14159" />
  179. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  180. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  181. <xacro:property name="default_origin">
  182.   <origin xyz="0 0 0" rpy="0 0 0" />
  183. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  184. <xacro:property name="wheel_length" value="0.05" />
  185. <xacro:property name="pi" value="3.14159" />
  186. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  187. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  188. <xacro:property name="default_origin">
  189.   <origin xyz="0 0 0" rpy="0 0 0" />
  190. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  191. <xacro:property name="wheel_length" value="0.05" />
  192. <xacro:property name="pi" value="3.14159" />
  193. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  194. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  195. <xacro:property name="default_origin">
  196.   <origin xyz="0 0 0" rpy="0 0 0" />
  197. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  198. <xacro:property name="wheel_length" value="0.05" />
  199. <xacro:property name="pi" value="3.14159" />
  200. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  201. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  202. <xacro:property name="default_origin">
  203.   <origin xyz="0 0 0" rpy="0 0 0" />
  204. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  205. <xacro:property name="wheel_length" value="0.05" />
  206. <xacro:property name="pi" value="3.14159" />
  207. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  208. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  209. <xacro:property name="default_origin">
  210.   <origin xyz="0 0 0" rpy="0 0 0" />
  211. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  212. <xacro:property name="wheel_length" value="0.05" />
  213. <xacro:property name="pi" value="3.14159" />
  214. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  215. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  216. <xacro:property name="default_origin">
  217.   <origin xyz="0 0 0" rpy="0 0 0" />
  218. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  219. <xacro:property name="wheel_length" value="0.05" />
  220. <xacro:property name="pi" value="3.14159" />
  221. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  222. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  223. <xacro:property name="default_origin">
  224.   <origin xyz="0 0 0" rpy="0 0 0" />
  225. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  226. <xacro:property name="wheel_length" value="0.05" />
  227. <xacro:property name="pi" value="3.14159" />
  228. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  229. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  230. <xacro:property name="default_origin">
  231.   <origin xyz="0 0 0" rpy="0 0 0" />
  232. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  233. <xacro:property name="wheel_length" value="0.05" />
  234. <xacro:property name="pi" value="3.14159" />
  235. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  236. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  237. <xacro:property name="default_origin">
  238.   <origin xyz="0 0 0" rpy="0 0 0" />
  239. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  240. <xacro:property name="wheel_length" value="0.05" />
  241. <xacro:property name="pi" value="3.14159" />
  242. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  243. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  244. <xacro:property name="default_origin">
  245.   <origin xyz="0 0 0" rpy="0 0 0" />
  246. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  247. <xacro:property name="wheel_length" value="0.05" />
  248. <xacro:property name="pi" value="3.14159" />
  249. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  250. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  251. <xacro:property name="default_origin">
  252.   <origin xyz="0 0 0" rpy="0 0 0" />
  253. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  254. <xacro:property name="wheel_length" value="0.05" />
  255. <xacro:property name="pi" value="3.14159" />
  256. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  257. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  258. <xacro:property name="default_origin">
  259.   <origin xyz="0 0 0" rpy="0 0 0" />
  260. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  261. <xacro:property name="wheel_length" value="0.05" />
  262. <xacro:property name="pi" value="3.14159" />
  263. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  264. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  265. <xacro:property name="default_origin">
  266.   <origin xyz="0 0 0" rpy="0 0 0" />
  267. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  268. <xacro:property name="wheel_length" value="0.05" />
  269. <xacro:property name="pi" value="3.14159" />
  270. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  271. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  272. <xacro:property name="default_origin">
  273.   <origin xyz="0 0 0" rpy="0 0 0" />
  274. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  275. <xacro:property name="wheel_length" value="0.05" />
  276. <xacro:property name="pi" value="3.14159" />
  277. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  278. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  279. <xacro:property name="default_origin">
  280.   <origin xyz="0 0 0" rpy="0 0 0" />
  281. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  282. <xacro:property name="wheel_length" value="0.05" />
  283. <xacro:property name="pi" value="3.14159" />
  284. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  285. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  286. <xacro:property name="default_origin">
  287.   <origin xyz="0 0 0" rpy="0 0 0" />
  288. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  289. <xacro:property name="wheel_length" value="0.05" />
  290. <xacro:property name="pi" value="3.14159" />
  291. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  292. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  293. <xacro:property name="default_origin">
  294.   <origin xyz="0 0 0" rpy="0 0 0" />
  295. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  296. <xacro:property name="wheel_length" value="0.05" />
  297. <xacro:property name="pi" value="3.14159" />
  298. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  299. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  300. <xacro:property name="default_origin">
  301.   <origin xyz="0 0 0" rpy="0 0 0" />
  302. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  303. <xacro:property name="wheel_length" value="0.05" />
  304. <xacro:property name="pi" value="3.14159" />
  305. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  306. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  307. <xacro:property name="default_origin">
  308.   <origin xyz="0 0 0" rpy="0 0 0" />
  309. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  310. <xacro:property name="wheel_length" value="0.05" />
  311. <xacro:property name="pi" value="3.14159" />
  312. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  313. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  314. <xacro:property name="default_origin">
  315.   <origin xyz="0 0 0" rpy="0 0 0" />
  316. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  317. <xacro:property name="wheel_length" value="0.05" />
  318. <xacro:property name="pi" value="3.14159" />
  319. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  320. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  321. <xacro:property name="default_origin">
  322.   <origin xyz="0 0 0" rpy="0 0 0" />
  323. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  324. <xacro:property name="wheel_length" value="0.05" />
  325. <xacro:property name="pi" value="3.14159" />
  326. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  327. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  328. <xacro:property name="default_origin">
  329.   <origin xyz="0 0 0" rpy="0 0 0" />
  330. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  331. <xacro:property name="wheel_length" value="0.05" />
  332. <xacro:property name="pi" value="3.14159" />
  333. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  334. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  335. <xacro:property name="default_origin">
  336.   <origin xyz="0 0 0" rpy="0 0 0" />
  337. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  338. <xacro:property name="wheel_length" value="0.05" />
  339. <xacro:property name="pi" value="3.14159" />
  340. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  341. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  342. <xacro:property name="default_origin">
  343.   <origin xyz="0 0 0" rpy="0 0 0" />
  344. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  345. <xacro:property name="wheel_length" value="0.05" />
  346. <xacro:property name="pi" value="3.14159" />
  347. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  348. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  349. <xacro:property name="default_origin">
  350.   <origin xyz="0 0 0" rpy="0 0 0" />
  351. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  352. <xacro:property name="wheel_length" value="0.05" />
  353. <xacro:property name="pi" value="3.14159" />
  354. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  355. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  356. <xacro:property name="default_origin">
  357.   <origin xyz="0 0 0" rpy="0 0 0" />
  358. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  359. <xacro:property name="wheel_length" value="0.05" />
  360. <xacro:property name="pi" value="3.14159" />
  361. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  362. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  363. <xacro:property name="default_origin">
  364.   <origin xyz="0 0 0" rpy="0 0 0" />
  365. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  366. <xacro:property name="wheel_length" value="0.05" />
  367. <xacro:property name="pi" value="3.14159" />
  368. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  369. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  370. <xacro:property name="default_origin">
  371.   <origin xyz="0 0 0" rpy="0 0 0" />
  372. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  373. <xacro:property name="wheel_length" value="0.05" />
  374. <xacro:property name="pi" value="3.14159" />
  375. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  376. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  377. <xacro:property name="default_origin">
  378.   <origin xyz="0 0 0" rpy="0 0 0" />
  379. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  380. <xacro:property name="wheel_length" value="0.05" />
  381. <xacro:property name="pi" value="3.14159" />
  382. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  383. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  384. <xacro:property name="default_origin">
  385.   <origin xyz="0 0 0" rpy="0 0 0" />
  386. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  387. <xacro:property name="wheel_length" value="0.05" />
  388. <xacro:property name="pi" value="3.14159" />
  389. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  390. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  391. <xacro:property name="default_origin">
  392.   <origin xyz="0 0 0" rpy="0 0 0" />
  393. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  394. <xacro:property name="wheel_length" value="0.05" />
  395. <xacro:property name="pi" value="3.14159" />
  396. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  397. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  398. <xacro:property name="default_origin">
  399.   <origin xyz="0 0 0" rpy="0 0 0" />
  400. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  401. <xacro:property name="wheel_length" value="0.05" />
  402. <xacro:property name="pi" value="3.14159" />
  403. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  404. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  405. <xacro:property name="default_origin">
  406.   <origin xyz="0 0 0" rpy="0 0 0" />
  407. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  408. <xacro:property name="wheel_length" value="0.05" />
  409. <xacro:property name="pi" value="3.14159" />
  410. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  411. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  412. <xacro:property name="default_origin">
  413.   <origin xyz="0 0 0" rpy="0 0 0" />
  414. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  415. <xacro:property name="wheel_length" value="0.05" />
  416. <xacro:property name="pi" value="3.14159" />
  417. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  418. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  419. <xacro:property name="default_origin">
  420.   <origin xyz="0 0 0" rpy="0 0 0" />
  421. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  422. <xacro:property name="wheel_length" value="0.05" />
  423. <xacro:property name="pi" value="3.14159" />
  424. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  425. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  426. <xacro:property name="default_origin">
  427.   <origin xyz="0 0 0" rpy="0 0 0" />
  428. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  429. <xacro:property name="wheel_length" value="0.05" />
  430. <xacro:property name="pi" value="3.14159" />
  431. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  432. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  433. <xacro:property name="default_origin">
  434.   <origin xyz="0 0 0" rpy="0 0 0" />
  435. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  436. <xacro:property name="wheel_length" value="0.05" />
  437. <xacro:property name="pi" value="3.14159" />
  438. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  439. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  440. <xacro:property name="default_origin">
  441.   <origin xyz="0 0 0" rpy="0 0 0" />
  442. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  443. <xacro:property name="wheel_length" value="0.05" />
  444. <xacro:property name="pi" value="3.14159" />
  445. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  446. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  447. <xacro:property name="default_origin">
  448.   <origin xyz="0 0 0" rpy="0 0 0" />
  449. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  450. <xacro:property name="wheel_length" value="0.05" />
  451. <xacro:property name="pi" value="3.14159" />
  452. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  453. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  454. <xacro:property name="default_origin">
  455.   <origin xyz="0 0 0" rpy="0 0 0" />
  456. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  457. <xacro:property name="wheel_length" value="0.05" />
  458. <xacro:property name="pi" value="3.14159" />
  459. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  460. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  461. <xacro:property name="default_origin">
  462.   <origin xyz="0 0 0" rpy="0 0 0" />
  463. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  464. <xacro:property name="wheel_length" value="0.05" />
  465. <xacro:property name="pi" value="3.14159" />
  466. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  467. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  468. <xacro:property name="default_origin">
  469.   <origin xyz="0 0 0" rpy="0 0 0" />
  470. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  471. <xacro:property name="wheel_length" value="0.05" />
  472. <xacro:property name="pi" value="3.14159" />
  473. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  474. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  475. <xacro:property name="default_origin">
  476.   <origin xyz="0 0 0" rpy="0 0 0" />
  477. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  478. <xacro:property name="wheel_length" value="0.05" />
  479. <xacro:property name="pi" value="3.14159" />
  480. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  481. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  482. <xacro:property name="default_origin">
  483.   <origin xyz="0 0 0" rpy="0 0 0" />
  484. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  485. <xacro:property name="wheel_length" value="0.05" />
  486. <xacro:property name="pi" value="3.14159" />
  487. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  488. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  489. <xacro:property name="default_origin">
  490.   <origin xyz="0 0 0" rpy="0 0 0" />
  491. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  492. <xacro:property name="wheel_length" value="0.05" />
  493. <xacro:property name="pi" value="3.14159" />
  494. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  495. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  496. <xacro:property name="default_origin">
  497.   <origin xyz="0 0 0" rpy="0 0 0" />
  498. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  499. <xacro:property name="wheel_length" value="0.05" />
  500. <xacro:property name="pi" value="3.14159" />
  501. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  502. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  503. <xacro:property name="default_origin">
  504.   <origin xyz="0 0 0" rpy="0 0 0" />
  505. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  506. <xacro:property name="wheel_length" value="0.05" />
  507. <xacro:property name="pi" value="3.14159" />
  508. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  509. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  510. <xacro:property name="default_origin">
  511.   <origin xyz="0 0 0" rpy="0 0 0" />
  512. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  513. <xacro:property name="wheel_length" value="0.05" />
  514. <xacro:property name="pi" value="3.14159" />
  515. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  516. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  517. <xacro:property name="default_origin">
  518.   <origin xyz="0 0 0" rpy="0 0 0" />
  519. </xacro:property>
复制代码
宏的定义方式是通过这个标签描述的,还可以像函数一样,设置里边会用到的一些参数,比如这里的A、B、C。
当需要使用这个宏的时候,通过宏名字的标签,来调用,同时要记得把几个参数设置好。
2.1.4 文件包含

将大型机器人模型分解为多个文件;
  1. <xacro:property name="wheel_radius" value="0.1" />
  2. <xacro:property name="wheel_length" value="0.05" />
  3. <xacro:property name="pi" value="3.14159" />
  4. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6. <xacro:property name="default_origin">
  7.   <origin xyz="0 0 0" rpy="0 0 0" />
  8. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  9. <xacro:property name="wheel_length" value="0.05" />
  10. <xacro:property name="pi" value="3.14159" />
  11. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  12. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  13. <xacro:property name="default_origin">
  14.   <origin xyz="0 0 0" rpy="0 0 0" />
  15. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  16. <xacro:property name="wheel_length" value="0.05" />
  17. <xacro:property name="pi" value="3.14159" />
  18. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  19. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  20. <xacro:property name="default_origin">
  21.   <origin xyz="0 0 0" rpy="0 0 0" />
  22. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  23. <xacro:property name="wheel_length" value="0.05" />
  24. <xacro:property name="pi" value="3.14159" />
  25. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  26. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  27. <xacro:property name="default_origin">
  28.   <origin xyz="0 0 0" rpy="0 0 0" />
  29. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  30. <xacro:property name="wheel_length" value="0.05" />
  31. <xacro:property name="pi" value="3.14159" />
  32. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  33. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  34. <xacro:property name="default_origin">
  35.   <origin xyz="0 0 0" rpy="0 0 0" />
  36. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  37. <xacro:property name="wheel_length" value="0.05" />
  38. <xacro:property name="pi" value="3.14159" />
  39. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  40. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  41. <xacro:property name="default_origin">
  42.   <origin xyz="0 0 0" rpy="0 0 0" />
  43. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  44. <xacro:property name="wheel_length" value="0.05" />
  45. <xacro:property name="pi" value="3.14159" />
  46. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  47. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  48. <xacro:property name="default_origin">
  49.   <origin xyz="0 0 0" rpy="0 0 0" />
  50. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  51. <xacro:property name="wheel_length" value="0.05" />
  52. <xacro:property name="pi" value="3.14159" />
  53. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  54. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  55. <xacro:property name="default_origin">
  56.   <origin xyz="0 0 0" rpy="0 0 0" />
  57. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  58. <xacro:property name="wheel_length" value="0.05" />
  59. <xacro:property name="pi" value="3.14159" />
  60. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  61. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  62. <xacro:property name="default_origin">
  63.   <origin xyz="0 0 0" rpy="0 0 0" />
  64. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  65. <xacro:property name="wheel_length" value="0.05" />
  66. <xacro:property name="pi" value="3.14159" />
  67. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  68. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  69. <xacro:property name="default_origin">
  70.   <origin xyz="0 0 0" rpy="0 0 0" />
  71. </xacro:property>
复制代码
2.1.5 块参数与内容插入

高级宏特性,允许传递xml块;
  1. <xacro:property name="wheel_radius" value="0.1" />
  2. <xacro:property name="wheel_length" value="0.05" />
  3. <xacro:property name="pi" value="3.14159" />
  4. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6. <xacro:property name="default_origin">
  7.   <origin xyz="0 0 0" rpy="0 0 0" />
  8. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  9. <xacro:property name="wheel_length" value="0.05" />
  10. <xacro:property name="pi" value="3.14159" />
  11. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  12. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  13. <xacro:property name="default_origin">
  14.   <origin xyz="0 0 0" rpy="0 0 0" />
  15. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  16. <xacro:property name="wheel_length" value="0.05" />
  17. <xacro:property name="pi" value="3.14159" />
  18. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  19. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  20. <xacro:property name="default_origin">
  21.   <origin xyz="0 0 0" rpy="0 0 0" />
  22. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  23. <xacro:property name="wheel_length" value="0.05" />
  24. <xacro:property name="pi" value="3.14159" />
  25. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  26. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  27. <xacro:property name="default_origin">
  28.   <origin xyz="0 0 0" rpy="0 0 0" />
  29. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  30. <xacro:property name="wheel_length" value="0.05" />
  31. <xacro:property name="pi" value="3.14159" />
  32. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  33. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  34. <xacro:property name="default_origin">
  35.   <origin xyz="0 0 0" rpy="0 0 0" />
  36. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  37. <xacro:property name="wheel_length" value="0.05" />
  38. <xacro:property name="pi" value="3.14159" />
  39. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  40. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  41. <xacro:property name="default_origin">
  42.   <origin xyz="0 0 0" rpy="0 0 0" />
  43. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  44. <xacro:property name="wheel_length" value="0.05" />
  45. <xacro:property name="pi" value="3.14159" />
  46. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  47. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  48. <xacro:property name="default_origin">
  49.   <origin xyz="0 0 0" rpy="0 0 0" />
  50. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  51. <xacro:property name="wheel_length" value="0.05" />
  52. <xacro:property name="pi" value="3.14159" />
  53. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  54. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  55. <xacro:property name="default_origin">
  56.   <origin xyz="0 0 0" rpy="0 0 0" />
  57. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  58. <xacro:property name="wheel_length" value="0.05" />
  59. <xacro:property name="pi" value="3.14159" />
  60. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  61. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  62. <xacro:property name="default_origin">
  63.   <origin xyz="0 0 0" rpy="0 0 0" />
  64. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  65. <xacro:property name="wheel_length" value="0.05" />
  66. <xacro:property name="pi" value="3.14159" />
  67. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  68. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  69. <xacro:property name="default_origin">
  70.   <origin xyz="0 0 0" rpy="0 0 0" />
  71. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  72. <xacro:property name="wheel_length" value="0.05" />
  73. <xacro:property name="pi" value="3.14159" />
  74. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  75. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  76. <xacro:property name="default_origin">
  77.   <origin xyz="0 0 0" rpy="0 0 0" />
  78. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  79. <xacro:property name="wheel_length" value="0.05" />
  80. <xacro:property name="pi" value="3.14159" />
  81. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  82. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  83. <xacro:property name="default_origin">
  84.   <origin xyz="0 0 0" rpy="0 0 0" />
  85. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  86. <xacro:property name="wheel_length" value="0.05" />
  87. <xacro:property name="pi" value="3.14159" />
  88. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  89. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  90. <xacro:property name="default_origin">
  91.   <origin xyz="0 0 0" rpy="0 0 0" />
  92. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  93. <xacro:property name="wheel_length" value="0.05" />
  94. <xacro:property name="pi" value="3.14159" />
  95. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  96. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  97. <xacro:property name="default_origin">
  98.   <origin xyz="0 0 0" rpy="0 0 0" />
  99. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  100. <xacro:property name="wheel_length" value="0.05" />
  101. <xacro:property name="pi" value="3.14159" />
  102. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  103. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  104. <xacro:property name="default_origin">
  105.   <origin xyz="0 0 0" rpy="0 0 0" />
  106. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  107. <xacro:property name="wheel_length" value="0.05" />
  108. <xacro:property name="pi" value="3.14159" />
  109. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  110. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  111. <xacro:property name="default_origin">
  112.   <origin xyz="0 0 0" rpy="0 0 0" />
  113. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  114. <xacro:property name="wheel_length" value="0.05" />
  115. <xacro:property name="pi" value="3.14159" />
  116. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  117. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  118. <xacro:property name="default_origin">
  119.   <origin xyz="0 0 0" rpy="0 0 0" />
  120. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  121. <xacro:property name="wheel_length" value="0.05" />
  122. <xacro:property name="pi" value="3.14159" />
  123. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  124. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  125. <xacro:property name="default_origin">
  126.   <origin xyz="0 0 0" rpy="0 0 0" />
  127. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  128. <xacro:property name="wheel_length" value="0.05" />
  129. <xacro:property name="pi" value="3.14159" />
  130. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  131. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  132. <xacro:property name="default_origin">
  133.   <origin xyz="0 0 0" rpy="0 0 0" />
  134. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  135. <xacro:property name="wheel_length" value="0.05" />
  136. <xacro:property name="pi" value="3.14159" />
  137. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  138. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  139. <xacro:property name="default_origin">
  140.   <origin xyz="0 0 0" rpy="0 0 0" />
  141. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  142. <xacro:property name="wheel_length" value="0.05" />
  143. <xacro:property name="pi" value="3.14159" />
  144. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  145. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  146. <xacro:property name="default_origin">
  147.   <origin xyz="0 0 0" rpy="0 0 0" />
  148. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  149. <xacro:property name="wheel_length" value="0.05" />
  150. <xacro:property name="pi" value="3.14159" />
  151. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  152. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  153. <xacro:property name="default_origin">
  154.   <origin xyz="0 0 0" rpy="0 0 0" />
  155. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  156. <xacro:property name="wheel_length" value="0.05" />
  157. <xacro:property name="pi" value="3.14159" />
  158. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  159. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  160. <xacro:property name="default_origin">
  161.   <origin xyz="0 0 0" rpy="0 0 0" />
  162. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  163. <xacro:property name="wheel_length" value="0.05" />
  164. <xacro:property name="pi" value="3.14159" />
  165. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  166. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  167. <xacro:property name="default_origin">
  168.   <origin xyz="0 0 0" rpy="0 0 0" />
  169. </xacro:property>
复制代码
2.1.6 项目结构

一个完整的项目结构如下“
  1. my_robot_description/├── package.xml├── CMakeLists.txt├── urdf/│<xacro:property name="wheel_radius" value="0.1" />
  2. <xacro:property name="wheel_length" value="0.05" />
  3. <xacro:property name="pi" value="3.14159" />
  4. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6. <xacro:property name="default_origin">
  7.   <origin xyz="0 0 0" rpy="0 0 0" />
  8. </xacro:property> ├── robot.xacro<xacro:property name="wheel_radius" value="0.1" />
  9. <xacro:property name="wheel_length" value="0.05" />
  10. <xacro:property name="pi" value="3.14159" />
  11. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  12. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  13. <xacro:property name="default_origin">
  14.   <origin xyz="0 0 0" rpy="0 0 0" />
  15. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  16. <xacro:property name="wheel_length" value="0.05" />
  17. <xacro:property name="pi" value="3.14159" />
  18. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  19. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  20. <xacro:property name="default_origin">
  21.   <origin xyz="0 0 0" rpy="0 0 0" />
  22. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  23. <xacro:property name="wheel_length" value="0.05" />
  24. <xacro:property name="pi" value="3.14159" />
  25. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  26. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  27. <xacro:property name="default_origin">
  28.   <origin xyz="0 0 0" rpy="0 0 0" />
  29. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  30. <xacro:property name="wheel_length" value="0.05" />
  31. <xacro:property name="pi" value="3.14159" />
  32. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  33. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  34. <xacro:property name="default_origin">
  35.   <origin xyz="0 0 0" rpy="0 0 0" />
  36. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  37. <xacro:property name="wheel_length" value="0.05" />
  38. <xacro:property name="pi" value="3.14159" />
  39. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  40. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  41. <xacro:property name="default_origin">
  42.   <origin xyz="0 0 0" rpy="0 0 0" />
  43. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  44. <xacro:property name="wheel_length" value="0.05" />
  45. <xacro:property name="pi" value="3.14159" />
  46. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  47. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  48. <xacro:property name="default_origin">
  49.   <origin xyz="0 0 0" rpy="0 0 0" />
  50. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  51. <xacro:property name="wheel_length" value="0.05" />
  52. <xacro:property name="pi" value="3.14159" />
  53. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  54. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  55. <xacro:property name="default_origin">
  56.   <origin xyz="0 0 0" rpy="0 0 0" />
  57. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  58. <xacro:property name="wheel_length" value="0.05" />
  59. <xacro:property name="pi" value="3.14159" />
  60. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  61. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  62. <xacro:property name="default_origin">
  63.   <origin xyz="0 0 0" rpy="0 0 0" />
  64. </xacro:property> # 主文件│<xacro:property name="wheel_radius" value="0.1" />
  65. <xacro:property name="wheel_length" value="0.05" />
  66. <xacro:property name="pi" value="3.14159" />
  67. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  68. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  69. <xacro:property name="default_origin">
  70.   <origin xyz="0 0 0" rpy="0 0 0" />
  71. </xacro:property> ├── materials.xacro<xacro:property name="wheel_radius" value="0.1" />
  72. <xacro:property name="wheel_length" value="0.05" />
  73. <xacro:property name="pi" value="3.14159" />
  74. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  75. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  76. <xacro:property name="default_origin">
  77.   <origin xyz="0 0 0" rpy="0 0 0" />
  78. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  79. <xacro:property name="wheel_length" value="0.05" />
  80. <xacro:property name="pi" value="3.14159" />
  81. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  82. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  83. <xacro:property name="default_origin">
  84.   <origin xyz="0 0 0" rpy="0 0 0" />
  85. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  86. <xacro:property name="wheel_length" value="0.05" />
  87. <xacro:property name="pi" value="3.14159" />
  88. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  89. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  90. <xacro:property name="default_origin">
  91.   <origin xyz="0 0 0" rpy="0 0 0" />
  92. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  93. <xacro:property name="wheel_length" value="0.05" />
  94. <xacro:property name="pi" value="3.14159" />
  95. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  96. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  97. <xacro:property name="default_origin">
  98.   <origin xyz="0 0 0" rpy="0 0 0" />
  99. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  100. <xacro:property name="wheel_length" value="0.05" />
  101. <xacro:property name="pi" value="3.14159" />
  102. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  103. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  104. <xacro:property name="default_origin">
  105.   <origin xyz="0 0 0" rpy="0 0 0" />
  106. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  107. <xacro:property name="wheel_length" value="0.05" />
  108. <xacro:property name="pi" value="3.14159" />
  109. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  110. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  111. <xacro:property name="default_origin">
  112.   <origin xyz="0 0 0" rpy="0 0 0" />
  113. </xacro:property> # 材质定义│<xacro:property name="wheel_radius" value="0.1" />
  114. <xacro:property name="wheel_length" value="0.05" />
  115. <xacro:property name="pi" value="3.14159" />
  116. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  117. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  118. <xacro:property name="default_origin">
  119.   <origin xyz="0 0 0" rpy="0 0 0" />
  120. </xacro:property> ├── sensors/<xacro:property name="wheel_radius" value="0.1" />
  121. <xacro:property name="wheel_length" value="0.05" />
  122. <xacro:property name="pi" value="3.14159" />
  123. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  124. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  125. <xacro:property name="default_origin">
  126.   <origin xyz="0 0 0" rpy="0 0 0" />
  127. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  128. <xacro:property name="wheel_length" value="0.05" />
  129. <xacro:property name="pi" value="3.14159" />
  130. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  131. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  132. <xacro:property name="default_origin">
  133.   <origin xyz="0 0 0" rpy="0 0 0" />
  134. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  135. <xacro:property name="wheel_length" value="0.05" />
  136. <xacro:property name="pi" value="3.14159" />
  137. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  138. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  139. <xacro:property name="default_origin">
  140.   <origin xyz="0 0 0" rpy="0 0 0" />
  141. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  142. <xacro:property name="wheel_length" value="0.05" />
  143. <xacro:property name="pi" value="3.14159" />
  144. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  145. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  146. <xacro:property name="default_origin">
  147.   <origin xyz="0 0 0" rpy="0 0 0" />
  148. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  149. <xacro:property name="wheel_length" value="0.05" />
  150. <xacro:property name="pi" value="3.14159" />
  151. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  152. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  153. <xacro:property name="default_origin">
  154.   <origin xyz="0 0 0" rpy="0 0 0" />
  155. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  156. <xacro:property name="wheel_length" value="0.05" />
  157. <xacro:property name="pi" value="3.14159" />
  158. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  159. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  160. <xacro:property name="default_origin">
  161.   <origin xyz="0 0 0" rpy="0 0 0" />
  162. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  163. <xacro:property name="wheel_length" value="0.05" />
  164. <xacro:property name="pi" value="3.14159" />
  165. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  166. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  167. <xacro:property name="default_origin">
  168.   <origin xyz="0 0 0" rpy="0 0 0" />
  169. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  170. <xacro:property name="wheel_length" value="0.05" />
  171. <xacro:property name="pi" value="3.14159" />
  172. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  173. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  174. <xacro:property name="default_origin">
  175.   <origin xyz="0 0 0" rpy="0 0 0" />
  176. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  177. <xacro:property name="wheel_length" value="0.05" />
  178. <xacro:property name="pi" value="3.14159" />
  179. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  180. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  181. <xacro:property name="default_origin">
  182.   <origin xyz="0 0 0" rpy="0 0 0" />
  183. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  184. <xacro:property name="wheel_length" value="0.05" />
  185. <xacro:property name="pi" value="3.14159" />
  186. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  187. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  188. <xacro:property name="default_origin">
  189.   <origin xyz="0 0 0" rpy="0 0 0" />
  190. </xacro:property># 传感器模块│<xacro:property name="wheel_radius" value="0.1" />
  191. <xacro:property name="wheel_length" value="0.05" />
  192. <xacro:property name="pi" value="3.14159" />
  193. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  194. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  195. <xacro:property name="default_origin">
  196.   <origin xyz="0 0 0" rpy="0 0 0" />
  197. </xacro:property> │<xacro:property name="wheel_radius" value="0.1" />
  198. <xacro:property name="wheel_length" value="0.05" />
  199. <xacro:property name="pi" value="3.14159" />
  200. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  201. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  202. <xacro:property name="default_origin">
  203.   <origin xyz="0 0 0" rpy="0 0 0" />
  204. </xacro:property> ├── lidar.xacro│<xacro:property name="wheel_radius" value="0.1" />
  205. <xacro:property name="wheel_length" value="0.05" />
  206. <xacro:property name="pi" value="3.14159" />
  207. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  208. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  209. <xacro:property name="default_origin">
  210.   <origin xyz="0 0 0" rpy="0 0 0" />
  211. </xacro:property> │<xacro:property name="wheel_radius" value="0.1" />
  212. <xacro:property name="wheel_length" value="0.05" />
  213. <xacro:property name="pi" value="3.14159" />
  214. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  215. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  216. <xacro:property name="default_origin">
  217.   <origin xyz="0 0 0" rpy="0 0 0" />
  218. </xacro:property> └── camera.xacro│<xacro:property name="wheel_radius" value="0.1" />
  219. <xacro:property name="wheel_length" value="0.05" />
  220. <xacro:property name="pi" value="3.14159" />
  221. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  222. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  223. <xacro:property name="default_origin">
  224.   <origin xyz="0 0 0" rpy="0 0 0" />
  225. </xacro:property> ├── chassis.xacro<xacro:property name="wheel_radius" value="0.1" />
  226. <xacro:property name="wheel_length" value="0.05" />
  227. <xacro:property name="pi" value="3.14159" />
  228. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  229. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  230. <xacro:property name="default_origin">
  231.   <origin xyz="0 0 0" rpy="0 0 0" />
  232. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  233. <xacro:property name="wheel_length" value="0.05" />
  234. <xacro:property name="pi" value="3.14159" />
  235. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  236. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  237. <xacro:property name="default_origin">
  238.   <origin xyz="0 0 0" rpy="0 0 0" />
  239. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  240. <xacro:property name="wheel_length" value="0.05" />
  241. <xacro:property name="pi" value="3.14159" />
  242. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  243. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  244. <xacro:property name="default_origin">
  245.   <origin xyz="0 0 0" rpy="0 0 0" />
  246. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  247. <xacro:property name="wheel_length" value="0.05" />
  248. <xacro:property name="pi" value="3.14159" />
  249. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  250. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  251. <xacro:property name="default_origin">
  252.   <origin xyz="0 0 0" rpy="0 0 0" />
  253. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  254. <xacro:property name="wheel_length" value="0.05" />
  255. <xacro:property name="pi" value="3.14159" />
  256. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  257. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  258. <xacro:property name="default_origin">
  259.   <origin xyz="0 0 0" rpy="0 0 0" />
  260. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  261. <xacro:property name="wheel_length" value="0.05" />
  262. <xacro:property name="pi" value="3.14159" />
  263. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  264. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  265. <xacro:property name="default_origin">
  266.   <origin xyz="0 0 0" rpy="0 0 0" />
  267. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  268. <xacro:property name="wheel_length" value="0.05" />
  269. <xacro:property name="pi" value="3.14159" />
  270. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  271. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  272. <xacro:property name="default_origin">
  273.   <origin xyz="0 0 0" rpy="0 0 0" />
  274. </xacro:property> # 底盘│<xacro:property name="wheel_radius" value="0.1" />
  275. <xacro:property name="wheel_length" value="0.05" />
  276. <xacro:property name="pi" value="3.14159" />
  277. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  278. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  279. <xacro:property name="default_origin">
  280.   <origin xyz="0 0 0" rpy="0 0 0" />
  281. </xacro:property> └── wheels.xacro<xacro:property name="wheel_radius" value="0.1" />
  282. <xacro:property name="wheel_length" value="0.05" />
  283. <xacro:property name="pi" value="3.14159" />
  284. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  285. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  286. <xacro:property name="default_origin">
  287.   <origin xyz="0 0 0" rpy="0 0 0" />
  288. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  289. <xacro:property name="wheel_length" value="0.05" />
  290. <xacro:property name="pi" value="3.14159" />
  291. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  292. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  293. <xacro:property name="default_origin">
  294.   <origin xyz="0 0 0" rpy="0 0 0" />
  295. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  296. <xacro:property name="wheel_length" value="0.05" />
  297. <xacro:property name="pi" value="3.14159" />
  298. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  299. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  300. <xacro:property name="default_origin">
  301.   <origin xyz="0 0 0" rpy="0 0 0" />
  302. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  303. <xacro:property name="wheel_length" value="0.05" />
  304. <xacro:property name="pi" value="3.14159" />
  305. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  306. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  307. <xacro:property name="default_origin">
  308.   <origin xyz="0 0 0" rpy="0 0 0" />
  309. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  310. <xacro:property name="wheel_length" value="0.05" />
  311. <xacro:property name="pi" value="3.14159" />
  312. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  313. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  314. <xacro:property name="default_origin">
  315.   <origin xyz="0 0 0" rpy="0 0 0" />
  316. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  317. <xacro:property name="wheel_length" value="0.05" />
  318. <xacro:property name="pi" value="3.14159" />
  319. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  320. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  321. <xacro:property name="default_origin">
  322.   <origin xyz="0 0 0" rpy="0 0 0" />
  323. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  324. <xacro:property name="wheel_length" value="0.05" />
  325. <xacro:property name="pi" value="3.14159" />
  326. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  327. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  328. <xacro:property name="default_origin">
  329.   <origin xyz="0 0 0" rpy="0 0 0" />
  330. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  331. <xacro:property name="wheel_length" value="0.05" />
  332. <xacro:property name="pi" value="3.14159" />
  333. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  334. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  335. <xacro:property name="default_origin">
  336.   <origin xyz="0 0 0" rpy="0 0 0" />
  337. </xacro:property># 轮子定义├── meshes/<xacro:property name="wheel_radius" value="0.1" />
  338. <xacro:property name="wheel_length" value="0.05" />
  339. <xacro:property name="pi" value="3.14159" />
  340. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  341. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  342. <xacro:property name="default_origin">
  343.   <origin xyz="0 0 0" rpy="0 0 0" />
  344. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  345. <xacro:property name="wheel_length" value="0.05" />
  346. <xacro:property name="pi" value="3.14159" />
  347. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  348. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  349. <xacro:property name="default_origin">
  350.   <origin xyz="0 0 0" rpy="0 0 0" />
  351. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  352. <xacro:property name="wheel_length" value="0.05" />
  353. <xacro:property name="pi" value="3.14159" />
  354. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  355. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  356. <xacro:property name="default_origin">
  357.   <origin xyz="0 0 0" rpy="0 0 0" />
  358. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  359. <xacro:property name="wheel_length" value="0.05" />
  360. <xacro:property name="pi" value="3.14159" />
  361. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  362. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  363. <xacro:property name="default_origin">
  364.   <origin xyz="0 0 0" rpy="0 0 0" />
  365. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  366. <xacro:property name="wheel_length" value="0.05" />
  367. <xacro:property name="pi" value="3.14159" />
  368. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  369. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  370. <xacro:property name="default_origin">
  371.   <origin xyz="0 0 0" rpy="0 0 0" />
  372. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  373. <xacro:property name="wheel_length" value="0.05" />
  374. <xacro:property name="pi" value="3.14159" />
  375. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  376. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  377. <xacro:property name="default_origin">
  378.   <origin xyz="0 0 0" rpy="0 0 0" />
  379. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  380. <xacro:property name="wheel_length" value="0.05" />
  381. <xacro:property name="pi" value="3.14159" />
  382. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  383. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  384. <xacro:property name="default_origin">
  385.   <origin xyz="0 0 0" rpy="0 0 0" />
  386. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  387. <xacro:property name="wheel_length" value="0.05" />
  388. <xacro:property name="pi" value="3.14159" />
  389. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  390. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  391. <xacro:property name="default_origin">
  392.   <origin xyz="0 0 0" rpy="0 0 0" />
  393. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  394. <xacro:property name="wheel_length" value="0.05" />
  395. <xacro:property name="pi" value="3.14159" />
  396. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  397. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  398. <xacro:property name="default_origin">
  399.   <origin xyz="0 0 0" rpy="0 0 0" />
  400. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  401. <xacro:property name="wheel_length" value="0.05" />
  402. <xacro:property name="pi" value="3.14159" />
  403. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  404. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  405. <xacro:property name="default_origin">
  406.   <origin xyz="0 0 0" rpy="0 0 0" />
  407. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  408. <xacro:property name="wheel_length" value="0.05" />
  409. <xacro:property name="pi" value="3.14159" />
  410. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  411. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  412. <xacro:property name="default_origin">
  413.   <origin xyz="0 0 0" rpy="0 0 0" />
  414. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  415. <xacro:property name="wheel_length" value="0.05" />
  416. <xacro:property name="pi" value="3.14159" />
  417. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  418. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  419. <xacro:property name="default_origin">
  420.   <origin xyz="0 0 0" rpy="0 0 0" />
  421. </xacro:property> # 3D网格文件│<xacro:property name="wheel_radius" value="0.1" />
  422. <xacro:property name="wheel_length" value="0.05" />
  423. <xacro:property name="pi" value="3.14159" />
  424. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  425. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  426. <xacro:property name="default_origin">
  427.   <origin xyz="0 0 0" rpy="0 0 0" />
  428. </xacro:property> └── chassis.dae└── launch/<xacro:property name="wheel_radius" value="0.1" />
  429. <xacro:property name="wheel_length" value="0.05" />
  430. <xacro:property name="pi" value="3.14159" />
  431. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  432. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  433. <xacro:property name="default_origin">
  434.   <origin xyz="0 0 0" rpy="0 0 0" />
  435. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  436. <xacro:property name="wheel_length" value="0.05" />
  437. <xacro:property name="pi" value="3.14159" />
  438. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  439. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  440. <xacro:property name="default_origin">
  441.   <origin xyz="0 0 0" rpy="0 0 0" />
  442. </xacro:property>└── display.launch.py<xacro:property name="wheel_radius" value="0.1" />
  443. <xacro:property name="wheel_length" value="0.05" />
  444. <xacro:property name="pi" value="3.14159" />
  445. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  446. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  447. <xacro:property name="default_origin">
  448.   <origin xyz="0 0 0" rpy="0 0 0" />
  449. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  450. <xacro:property name="wheel_length" value="0.05" />
  451. <xacro:property name="pi" value="3.14159" />
  452. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  453. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  454. <xacro:property name="default_origin">
  455.   <origin xyz="0 0 0" rpy="0 0 0" />
  456. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  457. <xacro:property name="wheel_length" value="0.05" />
  458. <xacro:property name="pi" value="3.14159" />
  459. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  460. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  461. <xacro:property name="default_origin">
  462.   <origin xyz="0 0 0" rpy="0 0 0" />
  463. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  464. <xacro:property name="wheel_length" value="0.05" />
  465. <xacro:property name="pi" value="3.14159" />
  466. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  467. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  468. <xacro:property name="default_origin">
  469.   <origin xyz="0 0 0" rpy="0 0 0" />
  470. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  471. <xacro:property name="wheel_length" value="0.05" />
  472. <xacro:property name="pi" value="3.14159" />
  473. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  474. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  475. <xacro:property name="default_origin">
  476.   <origin xyz="0 0 0" rpy="0 0 0" />
  477. </xacro:property># 启动文件
复制代码
2.2 机器人仿真

创建my_learning_urdf的Python版本的功能包;
  1. pi@NanoPC-T6:~/dev_ws$ cd src
  2. pi@NanoPC-T6:~/dev_ws/src$ ros2 pkg create --build-type ament_python my_learning_gazebo
复制代码
在包中创建如下文件夹:

  • urdf:存放机器人模型的URDF或xacro文件;
  • meshes:放置URDF中引用的模型渲染文件;
  • launch:保存相关启动文件;
  • rviz:保存rviz的配置文件。
我们需要修改setup.py文件,添加配置文件:
  1. import osfrom glob import glob<xacro:property name="wheel_radius" value="0.1" />
  2. <xacro:property name="wheel_length" value="0.05" />
  3. <xacro:property name="pi" value="3.14159" />
  4. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6. <xacro:property name="default_origin">
  7.   <origin xyz="0 0 0" rpy="0 0 0" />
  8. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  9. <xacro:property name="wheel_length" value="0.05" />
  10. <xacro:property name="pi" value="3.14159" />
  11. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  12. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  13. <xacro:property name="default_origin">
  14.   <origin xyz="0 0 0" rpy="0 0 0" />
  15. </xacro:property>...<xacro:property name="wheel_radius" value="0.1" />
  16. <xacro:property name="wheel_length" value="0.05" />
  17. <xacro:property name="pi" value="3.14159" />
  18. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  19. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  20. <xacro:property name="default_origin">
  21.   <origin xyz="0 0 0" rpy="0 0 0" />
  22. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  23. <xacro:property name="wheel_length" value="0.05" />
  24. <xacro:property name="pi" value="3.14159" />
  25. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  26. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  27. <xacro:property name="default_origin">
  28.   <origin xyz="0 0 0" rpy="0 0 0" />
  29. </xacro:property>data_files=[<xacro:property name="wheel_radius" value="0.1" />
  30. <xacro:property name="wheel_length" value="0.05" />
  31. <xacro:property name="pi" value="3.14159" />
  32. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  33. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  34. <xacro:property name="default_origin">
  35.   <origin xyz="0 0 0" rpy="0 0 0" />
  36. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  37. <xacro:property name="wheel_length" value="0.05" />
  38. <xacro:property name="pi" value="3.14159" />
  39. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  40. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  41. <xacro:property name="default_origin">
  42.   <origin xyz="0 0 0" rpy="0 0 0" />
  43. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  44. <xacro:property name="wheel_length" value="0.05" />
  45. <xacro:property name="pi" value="3.14159" />
  46. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  47. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  48. <xacro:property name="default_origin">
  49.   <origin xyz="0 0 0" rpy="0 0 0" />
  50. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  51. <xacro:property name="wheel_length" value="0.05" />
  52. <xacro:property name="pi" value="3.14159" />
  53. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  54. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  55. <xacro:property name="default_origin">
  56.   <origin xyz="0 0 0" rpy="0 0 0" />
  57. </xacro:property>('share/ament_index/resource_index/packages',<xacro:property name="wheel_radius" value="0.1" />
  58. <xacro:property name="wheel_length" value="0.05" />
  59. <xacro:property name="pi" value="3.14159" />
  60. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  61. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  62. <xacro:property name="default_origin">
  63.   <origin xyz="0 0 0" rpy="0 0 0" />
  64. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  65. <xacro:property name="wheel_length" value="0.05" />
  66. <xacro:property name="pi" value="3.14159" />
  67. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  68. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  69. <xacro:property name="default_origin">
  70.   <origin xyz="0 0 0" rpy="0 0 0" />
  71. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  72. <xacro:property name="wheel_length" value="0.05" />
  73. <xacro:property name="pi" value="3.14159" />
  74. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  75. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  76. <xacro:property name="default_origin">
  77.   <origin xyz="0 0 0" rpy="0 0 0" />
  78. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  79. <xacro:property name="wheel_length" value="0.05" />
  80. <xacro:property name="pi" value="3.14159" />
  81. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  82. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  83. <xacro:property name="default_origin">
  84.   <origin xyz="0 0 0" rpy="0 0 0" />
  85. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  86. <xacro:property name="wheel_length" value="0.05" />
  87. <xacro:property name="pi" value="3.14159" />
  88. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  89. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  90. <xacro:property name="default_origin">
  91.   <origin xyz="0 0 0" rpy="0 0 0" />
  92. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  93. <xacro:property name="wheel_length" value="0.05" />
  94. <xacro:property name="pi" value="3.14159" />
  95. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  96. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  97. <xacro:property name="default_origin">
  98.   <origin xyz="0 0 0" rpy="0 0 0" />
  99. </xacro:property>['resource/' + package_name]),<xacro:property name="wheel_radius" value="0.1" />
  100. <xacro:property name="wheel_length" value="0.05" />
  101. <xacro:property name="pi" value="3.14159" />
  102. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  103. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  104. <xacro:property name="default_origin">
  105.   <origin xyz="0 0 0" rpy="0 0 0" />
  106. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  107. <xacro:property name="wheel_length" value="0.05" />
  108. <xacro:property name="pi" value="3.14159" />
  109. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  110. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  111. <xacro:property name="default_origin">
  112.   <origin xyz="0 0 0" rpy="0 0 0" />
  113. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  114. <xacro:property name="wheel_length" value="0.05" />
  115. <xacro:property name="pi" value="3.14159" />
  116. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  117. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  118. <xacro:property name="default_origin">
  119.   <origin xyz="0 0 0" rpy="0 0 0" />
  120. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  121. <xacro:property name="wheel_length" value="0.05" />
  122. <xacro:property name="pi" value="3.14159" />
  123. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  124. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  125. <xacro:property name="default_origin">
  126.   <origin xyz="0 0 0" rpy="0 0 0" />
  127. </xacro:property>('share/' + package_name, ['package.xml']),<xacro:property name="wheel_radius" value="0.1" />
  128. <xacro:property name="wheel_length" value="0.05" />
  129. <xacro:property name="pi" value="3.14159" />
  130. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  131. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  132. <xacro:property name="default_origin">
  133.   <origin xyz="0 0 0" rpy="0 0 0" />
  134. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  135. <xacro:property name="wheel_length" value="0.05" />
  136. <xacro:property name="pi" value="3.14159" />
  137. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  138. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  139. <xacro:property name="default_origin">
  140.   <origin xyz="0 0 0" rpy="0 0 0" />
  141. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  142. <xacro:property name="wheel_length" value="0.05" />
  143. <xacro:property name="pi" value="3.14159" />
  144. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  145. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  146. <xacro:property name="default_origin">
  147.   <origin xyz="0 0 0" rpy="0 0 0" />
  148. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  149. <xacro:property name="wheel_length" value="0.05" />
  150. <xacro:property name="pi" value="3.14159" />
  151. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  152. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  153. <xacro:property name="default_origin">
  154.   <origin xyz="0 0 0" rpy="0 0 0" />
  155. </xacro:property>(os.path.join('share', package_name, 'launch'), glob(os.path.join('launch', '*.launch.py'))),<xacro:property name="wheel_radius" value="0.1" />
  156. <xacro:property name="wheel_length" value="0.05" />
  157. <xacro:property name="pi" value="3.14159" />
  158. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  159. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  160. <xacro:property name="default_origin">
  161.   <origin xyz="0 0 0" rpy="0 0 0" />
  162. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  163. <xacro:property name="wheel_length" value="0.05" />
  164. <xacro:property name="pi" value="3.14159" />
  165. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  166. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  167. <xacro:property name="default_origin">
  168.   <origin xyz="0 0 0" rpy="0 0 0" />
  169. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  170. <xacro:property name="wheel_length" value="0.05" />
  171. <xacro:property name="pi" value="3.14159" />
  172. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  173. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  174. <xacro:property name="default_origin">
  175.   <origin xyz="0 0 0" rpy="0 0 0" />
  176. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  177. <xacro:property name="wheel_length" value="0.05" />
  178. <xacro:property name="pi" value="3.14159" />
  179. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  180. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  181. <xacro:property name="default_origin">
  182.   <origin xyz="0 0 0" rpy="0 0 0" />
  183. </xacro:property>(os.path.join('share', package_name, 'urdf'), glob(os.path.join('urdf', '*.*'))),<xacro:property name="wheel_radius" value="0.1" />
  184. <xacro:property name="wheel_length" value="0.05" />
  185. <xacro:property name="pi" value="3.14159" />
  186. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  187. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  188. <xacro:property name="default_origin">
  189.   <origin xyz="0 0 0" rpy="0 0 0" />
  190. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  191. <xacro:property name="wheel_length" value="0.05" />
  192. <xacro:property name="pi" value="3.14159" />
  193. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  194. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  195. <xacro:property name="default_origin">
  196.   <origin xyz="0 0 0" rpy="0 0 0" />
  197. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  198. <xacro:property name="wheel_length" value="0.05" />
  199. <xacro:property name="pi" value="3.14159" />
  200. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  201. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  202. <xacro:property name="default_origin">
  203.   <origin xyz="0 0 0" rpy="0 0 0" />
  204. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  205. <xacro:property name="wheel_length" value="0.05" />
  206. <xacro:property name="pi" value="3.14159" />
  207. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  208. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  209. <xacro:property name="default_origin">
  210.   <origin xyz="0 0 0" rpy="0 0 0" />
  211. </xacro:property>(os.path.join('share', package_name, 'urdf/sensors'), glob(os.path.join('urdf/sensors', '*.*'))),<xacro:property name="wheel_radius" value="0.1" />
  212. <xacro:property name="wheel_length" value="0.05" />
  213. <xacro:property name="pi" value="3.14159" />
  214. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  215. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  216. <xacro:property name="default_origin">
  217.   <origin xyz="0 0 0" rpy="0 0 0" />
  218. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  219. <xacro:property name="wheel_length" value="0.05" />
  220. <xacro:property name="pi" value="3.14159" />
  221. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  222. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  223. <xacro:property name="default_origin">
  224.   <origin xyz="0 0 0" rpy="0 0 0" />
  225. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  226. <xacro:property name="wheel_length" value="0.05" />
  227. <xacro:property name="pi" value="3.14159" />
  228. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  229. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  230. <xacro:property name="default_origin">
  231.   <origin xyz="0 0 0" rpy="0 0 0" />
  232. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  233. <xacro:property name="wheel_length" value="0.05" />
  234. <xacro:property name="pi" value="3.14159" />
  235. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  236. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  237. <xacro:property name="default_origin">
  238.   <origin xyz="0 0 0" rpy="0 0 0" />
  239. </xacro:property>(os.path.join('share', package_name, 'meshes'), glob(os.path.join('meshes', '*.*'))),<xacro:property name="wheel_radius" value="0.1" />
  240. <xacro:property name="wheel_length" value="0.05" />
  241. <xacro:property name="pi" value="3.14159" />
  242. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  243. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  244. <xacro:property name="default_origin">
  245.   <origin xyz="0 0 0" rpy="0 0 0" />
  246. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  247. <xacro:property name="wheel_length" value="0.05" />
  248. <xacro:property name="pi" value="3.14159" />
  249. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  250. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  251. <xacro:property name="default_origin">
  252.   <origin xyz="0 0 0" rpy="0 0 0" />
  253. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  254. <xacro:property name="wheel_length" value="0.05" />
  255. <xacro:property name="pi" value="3.14159" />
  256. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  257. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  258. <xacro:property name="default_origin">
  259.   <origin xyz="0 0 0" rpy="0 0 0" />
  260. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  261. <xacro:property name="wheel_length" value="0.05" />
  262. <xacro:property name="pi" value="3.14159" />
  263. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  264. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  265. <xacro:property name="default_origin">
  266.   <origin xyz="0 0 0" rpy="0 0 0" />
  267. </xacro:property>(os.path.join('share', package_name, 'rviz'), glob(os.path.join('rviz', '*.rviz'))),<xacro:property name="wheel_radius" value="0.1" />
  268. <xacro:property name="wheel_length" value="0.05" />
  269. <xacro:property name="pi" value="3.14159" />
  270. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  271. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  272. <xacro:property name="default_origin">
  273.   <origin xyz="0 0 0" rpy="0 0 0" />
  274. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  275. <xacro:property name="wheel_length" value="0.05" />
  276. <xacro:property name="pi" value="3.14159" />
  277. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  278. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  279. <xacro:property name="default_origin">
  280.   <origin xyz="0 0 0" rpy="0 0 0" />
  281. </xacro:property>],<xacro:property name="wheel_radius" value="0.1" />
  282. <xacro:property name="wheel_length" value="0.05" />
  283. <xacro:property name="pi" value="3.14159" />
  284. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  285. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  286. <xacro:property name="default_origin">
  287.   <origin xyz="0 0 0" rpy="0 0 0" />
  288. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  289. <xacro:property name="wheel_length" value="0.05" />
  290. <xacro:property name="pi" value="3.14159" />
  291. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  292. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  293. <xacro:property name="default_origin">
  294.   <origin xyz="0 0 0" rpy="0 0 0" />
  295. </xacro:property>...
复制代码
2.2.1 完善机器人仿真模型

在urdf下新建文件mbot_gazebo.xacro;
  1. <xacro:property name="wheel_radius" value="0.1" />
  2. <xacro:property name="wheel_length" value="0.05" />
  3. <xacro:property name="pi" value="3.14159" />
  4. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6. <xacro:property name="default_origin">
  7.   <origin xyz="0 0 0" rpy="0 0 0" />
  8. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  9. <xacro:property name="wheel_length" value="0.05" />
  10. <xacro:property name="pi" value="3.14159" />
  11. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  12. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  13. <xacro:property name="default_origin">
  14.   <origin xyz="0 0 0" rpy="0 0 0" />
  15. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  16. <xacro:property name="wheel_length" value="0.05" />
  17. <xacro:property name="pi" value="3.14159" />
  18. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  19. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  20. <xacro:property name="default_origin">
  21.   <origin xyz="0 0 0" rpy="0 0 0" />
  22. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  23. <xacro:property name="wheel_length" value="0.05" />
  24. <xacro:property name="pi" value="3.14159" />
  25. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  26. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  27. <xacro:property name="default_origin">
  28.   <origin xyz="0 0 0" rpy="0 0 0" />
  29. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  30. <xacro:property name="wheel_length" value="0.05" />
  31. <xacro:property name="pi" value="3.14159" />
  32. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  33. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  34. <xacro:property name="default_origin">
  35.   <origin xyz="0 0 0" rpy="0 0 0" />
  36. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  37. <xacro:property name="wheel_length" value="0.05" />
  38. <xacro:property name="pi" value="3.14159" />
  39. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  40. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  41. <xacro:property name="default_origin">
  42.   <origin xyz="0 0 0" rpy="0 0 0" />
  43. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  44. <xacro:property name="wheel_length" value="0.05" />
  45. <xacro:property name="pi" value="3.14159" />
  46. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  47. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  48. <xacro:property name="default_origin">
  49.   <origin xyz="0 0 0" rpy="0 0 0" />
  50. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  51. <xacro:property name="wheel_length" value="0.05" />
  52. <xacro:property name="pi" value="3.14159" />
  53. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  54. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  55. <xacro:property name="default_origin">
  56.   <origin xyz="0 0 0" rpy="0 0 0" />
  57. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  58. <xacro:property name="wheel_length" value="0.05" />
  59. <xacro:property name="pi" value="3.14159" />
  60. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  61. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  62. <xacro:property name="default_origin">
  63.   <origin xyz="0 0 0" rpy="0 0 0" />
  64. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  65. <xacro:property name="wheel_length" value="0.05" />
  66. <xacro:property name="pi" value="3.14159" />
  67. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  68. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  69. <xacro:property name="default_origin">
  70.   <origin xyz="0 0 0" rpy="0 0 0" />
  71. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  72. <xacro:property name="wheel_length" value="0.05" />
  73. <xacro:property name="pi" value="3.14159" />
  74. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  75. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  76. <xacro:property name="default_origin">
  77.   <origin xyz="0 0 0" rpy="0 0 0" />
  78. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  79. <xacro:property name="wheel_length" value="0.05" />
  80. <xacro:property name="pi" value="3.14159" />
  81. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  82. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  83. <xacro:property name="default_origin">
  84.   <origin xyz="0 0 0" rpy="0 0 0" />
  85. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  86. <xacro:property name="wheel_length" value="0.05" />
  87. <xacro:property name="pi" value="3.14159" />
  88. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  89. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  90. <xacro:property name="default_origin">
  91.   <origin xyz="0 0 0" rpy="0 0 0" />
  92. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  93. <xacro:property name="wheel_length" value="0.05" />
  94. <xacro:property name="pi" value="3.14159" />
  95. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  96. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  97. <xacro:property name="default_origin">
  98.   <origin xyz="0 0 0" rpy="0 0 0" />
  99. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  100. <xacro:property name="wheel_length" value="0.05" />
  101. <xacro:property name="pi" value="3.14159" />
  102. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  103. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  104. <xacro:property name="default_origin">
  105.   <origin xyz="0 0 0" rpy="0 0 0" />
  106. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  107. <xacro:property name="wheel_length" value="0.05" />
  108. <xacro:property name="pi" value="3.14159" />
  109. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  110. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  111. <xacro:property name="default_origin">
  112.   <origin xyz="0 0 0" rpy="0 0 0" />
  113. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  114. <xacro:property name="wheel_length" value="0.05" />
  115. <xacro:property name="pi" value="3.14159" />
  116. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  117. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  118. <xacro:property name="default_origin">
  119.   <origin xyz="0 0 0" rpy="0 0 0" />
  120. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  121. <xacro:property name="wheel_length" value="0.05" />
  122. <xacro:property name="pi" value="3.14159" />
  123. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  124. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  125. <xacro:property name="default_origin">
  126.   <origin xyz="0 0 0" rpy="0 0 0" />
  127. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  128. <xacro:property name="wheel_length" value="0.05" />
  129. <xacro:property name="pi" value="3.14159" />
  130. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  131. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  132. <xacro:property name="default_origin">
  133.   <origin xyz="0 0 0" rpy="0 0 0" />
  134. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  135. <xacro:property name="wheel_length" value="0.05" />
  136. <xacro:property name="pi" value="3.14159" />
  137. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  138. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  139. <xacro:property name="default_origin">
  140.   <origin xyz="0 0 0" rpy="0 0 0" />
  141. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  142. <xacro:property name="wheel_length" value="0.05" />
  143. <xacro:property name="pi" value="3.14159" />
  144. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  145. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  146. <xacro:property name="default_origin">
  147.   <origin xyz="0 0 0" rpy="0 0 0" />
  148. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  149. <xacro:property name="wheel_length" value="0.05" />
  150. <xacro:property name="pi" value="3.14159" />
  151. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  152. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  153. <xacro:property name="default_origin">
  154.   <origin xyz="0 0 0" rpy="0 0 0" />
  155. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  156. <xacro:property name="wheel_length" value="0.05" />
  157. <xacro:property name="pi" value="3.14159" />
  158. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  159. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  160. <xacro:property name="default_origin">
  161.   <origin xyz="0 0 0" rpy="0 0 0" />
  162. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  163. <xacro:property name="wheel_length" value="0.05" />
  164. <xacro:property name="pi" value="3.14159" />
  165. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  166. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  167. <xacro:property name="default_origin">
  168.   <origin xyz="0 0 0" rpy="0 0 0" />
  169. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  170. <xacro:property name="wheel_length" value="0.05" />
  171. <xacro:property name="pi" value="3.14159" />
  172. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  173. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  174. <xacro:property name="default_origin">
  175.   <origin xyz="0 0 0" rpy="0 0 0" />
  176. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  177. <xacro:property name="wheel_length" value="0.05" />
  178. <xacro:property name="pi" value="3.14159" />
  179. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  180. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  181. <xacro:property name="default_origin">
  182.   <origin xyz="0 0 0" rpy="0 0 0" />
  183. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  184. <xacro:property name="wheel_length" value="0.05" />
  185. <xacro:property name="pi" value="3.14159" />
  186. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  187. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  188. <xacro:property name="default_origin">
  189.   <origin xyz="0 0 0" rpy="0 0 0" />
  190. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  191. <xacro:property name="wheel_length" value="0.05" />
  192. <xacro:property name="pi" value="3.14159" />
  193. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  194. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  195. <xacro:property name="default_origin">
  196.   <origin xyz="0 0 0" rpy="0 0 0" />
  197. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  198. <xacro:property name="wheel_length" value="0.05" />
  199. <xacro:property name="pi" value="3.14159" />
  200. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  201. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  202. <xacro:property name="default_origin">
  203.   <origin xyz="0 0 0" rpy="0 0 0" />
  204. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  205. <xacro:property name="wheel_length" value="0.05" />
  206. <xacro:property name="pi" value="3.14159" />
  207. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  208. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  209. <xacro:property name="default_origin">
  210.   <origin xyz="0 0 0" rpy="0 0 0" />
  211. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  212. <xacro:property name="wheel_length" value="0.05" />
  213. <xacro:property name="pi" value="3.14159" />
  214. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  215. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  216. <xacro:property name="default_origin">
  217.   <origin xyz="0 0 0" rpy="0 0 0" />
  218. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  219. <xacro:property name="wheel_length" value="0.05" />
  220. <xacro:property name="pi" value="3.14159" />
  221. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  222. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  223. <xacro:property name="default_origin">
  224.   <origin xyz="0 0 0" rpy="0 0 0" />
  225. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  226. <xacro:property name="wheel_length" value="0.05" />
  227. <xacro:property name="pi" value="3.14159" />
  228. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  229. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  230. <xacro:property name="default_origin">
  231.   <origin xyz="0 0 0" rpy="0 0 0" />
  232. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  233. <xacro:property name="wheel_length" value="0.05" />
  234. <xacro:property name="pi" value="3.14159" />
  235. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  236. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  237. <xacro:property name="default_origin">
  238.   <origin xyz="0 0 0" rpy="0 0 0" />
  239. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  240. <xacro:property name="wheel_length" value="0.05" />
  241. <xacro:property name="pi" value="3.14159" />
  242. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  243. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  244. <xacro:property name="default_origin">
  245.   <origin xyz="0 0 0" rpy="0 0 0" />
  246. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  247. <xacro:property name="wheel_length" value="0.05" />
  248. <xacro:property name="pi" value="3.14159" />
  249. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  250. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  251. <xacro:property name="default_origin">
  252.   <origin xyz="0 0 0" rpy="0 0 0" />
  253. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  254. <xacro:property name="wheel_length" value="0.05" />
  255. <xacro:property name="pi" value="3.14159" />
  256. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  257. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  258. <xacro:property name="default_origin">
  259.   <origin xyz="0 0 0" rpy="0 0 0" />
  260. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  261. <xacro:property name="wheel_length" value="0.05" />
  262. <xacro:property name="pi" value="3.14159" />
  263. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  264. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  265. <xacro:property name="default_origin">
  266.   <origin xyz="0 0 0" rpy="0 0 0" />
  267. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  268. <xacro:property name="wheel_length" value="0.05" />
  269. <xacro:property name="pi" value="3.14159" />
  270. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  271. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  272. <xacro:property name="default_origin">
  273.   <origin xyz="0 0 0" rpy="0 0 0" />
  274. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  275. <xacro:property name="wheel_length" value="0.05" />
  276. <xacro:property name="pi" value="3.14159" />
  277. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  278. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  279. <xacro:property name="default_origin">
  280.   <origin xyz="0 0 0" rpy="0 0 0" />
  281. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  282. <xacro:property name="wheel_length" value="0.05" />
  283. <xacro:property name="pi" value="3.14159" />
  284. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  285. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  286. <xacro:property name="default_origin">
  287.   <origin xyz="0 0 0" rpy="0 0 0" />
  288. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  289. <xacro:property name="wheel_length" value="0.05" />
  290. <xacro:property name="pi" value="3.14159" />
  291. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  292. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  293. <xacro:property name="default_origin">
  294.   <origin xyz="0 0 0" rpy="0 0 0" />
  295. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  296. <xacro:property name="wheel_length" value="0.05" />
  297. <xacro:property name="pi" value="3.14159" />
  298. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  299. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  300. <xacro:property name="default_origin">
  301.   <origin xyz="0 0 0" rpy="0 0 0" />
  302. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  303. <xacro:property name="wheel_length" value="0.05" />
  304. <xacro:property name="pi" value="3.14159" />
  305. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  306. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  307. <xacro:property name="default_origin">
  308.   <origin xyz="0 0 0" rpy="0 0 0" />
  309. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  310. <xacro:property name="wheel_length" value="0.05" />
  311. <xacro:property name="pi" value="3.14159" />
  312. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  313. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  314. <xacro:property name="default_origin">
  315.   <origin xyz="0 0 0" rpy="0 0 0" />
  316. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  317. <xacro:property name="wheel_length" value="0.05" />
  318. <xacro:property name="pi" value="3.14159" />
  319. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  320. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  321. <xacro:property name="default_origin">
  322.   <origin xyz="0 0 0" rpy="0 0 0" />
  323. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  324. <xacro:property name="wheel_length" value="0.05" />
  325. <xacro:property name="pi" value="3.14159" />
  326. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  327. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  328. <xacro:property name="default_origin">
  329.   <origin xyz="0 0 0" rpy="0 0 0" />
  330. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  331. <xacro:property name="wheel_length" value="0.05" />
  332. <xacro:property name="pi" value="3.14159" />
  333. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  334. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  335. <xacro:property name="default_origin">
  336.   <origin xyz="0 0 0" rpy="0 0 0" />
  337. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  338. <xacro:property name="wheel_length" value="0.05" />
  339. <xacro:property name="pi" value="3.14159" />
  340. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  341. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  342. <xacro:property name="default_origin">
  343.   <origin xyz="0 0 0" rpy="0 0 0" />
  344. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  345. <xacro:property name="wheel_length" value="0.05" />
  346. <xacro:property name="pi" value="3.14159" />
  347. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  348. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  349. <xacro:property name="default_origin">
  350.   <origin xyz="0 0 0" rpy="0 0 0" />
  351. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  352. <xacro:property name="wheel_length" value="0.05" />
  353. <xacro:property name="pi" value="3.14159" />
  354. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  355. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  356. <xacro:property name="default_origin">
  357.   <origin xyz="0 0 0" rpy="0 0 0" />
  358. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  359. <xacro:property name="wheel_length" value="0.05" />
  360. <xacro:property name="pi" value="3.14159" />
  361. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  362. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  363. <xacro:property name="default_origin">
  364.   <origin xyz="0 0 0" rpy="0 0 0" />
  365. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  366. <xacro:property name="wheel_length" value="0.05" />
  367. <xacro:property name="pi" value="3.14159" />
  368. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  369. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  370. <xacro:property name="default_origin">
  371.   <origin xyz="0 0 0" rpy="0 0 0" />
  372. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  373. <xacro:property name="wheel_length" value="0.05" />
  374. <xacro:property name="pi" value="3.14159" />
  375. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  376. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  377. <xacro:property name="default_origin">
  378.   <origin xyz="0 0 0" rpy="0 0 0" />
  379. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  380. <xacro:property name="wheel_length" value="0.05" />
  381. <xacro:property name="pi" value="3.14159" />
  382. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  383. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  384. <xacro:property name="default_origin">
  385.   <origin xyz="0 0 0" rpy="0 0 0" />
  386. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  387. <xacro:property name="wheel_length" value="0.05" />
  388. <xacro:property name="pi" value="3.14159" />
  389. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  390. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  391. <xacro:property name="default_origin">
  392.   <origin xyz="0 0 0" rpy="0 0 0" />
  393. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  394. <xacro:property name="wheel_length" value="0.05" />
  395. <xacro:property name="pi" value="3.14159" />
  396. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  397. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  398. <xacro:property name="default_origin">
  399.   <origin xyz="0 0 0" rpy="0 0 0" />
  400. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  401. <xacro:property name="wheel_length" value="0.05" />
  402. <xacro:property name="pi" value="3.14159" />
  403. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  404. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  405. <xacro:property name="default_origin">
  406.   <origin xyz="0 0 0" rpy="0 0 0" />
  407. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  408. <xacro:property name="wheel_length" value="0.05" />
  409. <xacro:property name="pi" value="3.14159" />
  410. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  411. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  412. <xacro:property name="default_origin">
  413.   <origin xyz="0 0 0" rpy="0 0 0" />
  414. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  415. <xacro:property name="wheel_length" value="0.05" />
  416. <xacro:property name="pi" value="3.14159" />
  417. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  418. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  419. <xacro:property name="default_origin">
  420.   <origin xyz="0 0 0" rpy="0 0 0" />
  421. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  422. <xacro:property name="wheel_length" value="0.05" />
  423. <xacro:property name="pi" value="3.14159" />
  424. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  425. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  426. <xacro:property name="default_origin">
  427.   <origin xyz="0 0 0" rpy="0 0 0" />
  428. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  429. <xacro:property name="wheel_length" value="0.05" />
  430. <xacro:property name="pi" value="3.14159" />
  431. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  432. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  433. <xacro:property name="default_origin">
  434.   <origin xyz="0 0 0" rpy="0 0 0" />
  435. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  436. <xacro:property name="wheel_length" value="0.05" />
  437. <xacro:property name="pi" value="3.14159" />
  438. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  439. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  440. <xacro:property name="default_origin">
  441.   <origin xyz="0 0 0" rpy="0 0 0" />
  442. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  443. <xacro:property name="wheel_length" value="0.05" />
  444. <xacro:property name="pi" value="3.14159" />
  445. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  446. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  447. <xacro:property name="default_origin">
  448.   <origin xyz="0 0 0" rpy="0 0 0" />
  449. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  450. <xacro:property name="wheel_length" value="0.05" />
  451. <xacro:property name="pi" value="3.14159" />
  452. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  453. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  454. <xacro:property name="default_origin">
  455.   <origin xyz="0 0 0" rpy="0 0 0" />
  456. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  457. <xacro:property name="wheel_length" value="0.05" />
  458. <xacro:property name="pi" value="3.14159" />
  459. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  460. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  461. <xacro:property name="default_origin">
  462.   <origin xyz="0 0 0" rpy="0 0 0" />
  463. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  464. <xacro:property name="wheel_length" value="0.05" />
  465. <xacro:property name="pi" value="3.14159" />
  466. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  467. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  468. <xacro:property name="default_origin">
  469.   <origin xyz="0 0 0" rpy="0 0 0" />
  470. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  471. <xacro:property name="wheel_length" value="0.05" />
  472. <xacro:property name="pi" value="3.14159" />
  473. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  474. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  475. <xacro:property name="default_origin">
  476.   <origin xyz="0 0 0" rpy="0 0 0" />
  477. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  478. <xacro:property name="wheel_length" value="0.05" />
  479. <xacro:property name="pi" value="3.14159" />
  480. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  481. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  482. <xacro:property name="default_origin">
  483.   <origin xyz="0 0 0" rpy="0 0 0" />
  484. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  485. <xacro:property name="wheel_length" value="0.05" />
  486. <xacro:property name="pi" value="3.14159" />
  487. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  488. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  489. <xacro:property name="default_origin">
  490.   <origin xyz="0 0 0" rpy="0 0 0" />
  491. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  492. <xacro:property name="wheel_length" value="0.05" />
  493. <xacro:property name="pi" value="3.14159" />
  494. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  495. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  496. <xacro:property name="default_origin">
  497.   <origin xyz="0 0 0" rpy="0 0 0" />
  498. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  499. <xacro:property name="wheel_length" value="0.05" />
  500. <xacro:property name="pi" value="3.14159" />
  501. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  502. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  503. <xacro:property name="default_origin">
  504.   <origin xyz="0 0 0" rpy="0 0 0" />
  505. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  506. <xacro:property name="wheel_length" value="0.05" />
  507. <xacro:property name="pi" value="3.14159" />
  508. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  509. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  510. <xacro:property name="default_origin">
  511.   <origin xyz="0 0 0" rpy="0 0 0" />
  512. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  513. <xacro:property name="wheel_length" value="0.05" />
  514. <xacro:property name="pi" value="3.14159" />
  515. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  516. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  517. <xacro:property name="default_origin">
  518.   <origin xyz="0 0 0" rpy="0 0 0" />
  519. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  520. <xacro:property name="wheel_length" value="0.05" />
  521. <xacro:property name="pi" value="3.14159" />
  522. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  523. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  524. <xacro:property name="default_origin">
  525.   <origin xyz="0 0 0" rpy="0 0 0" />
  526. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  527. <xacro:property name="wheel_length" value="0.05" />
  528. <xacro:property name="pi" value="3.14159" />
  529. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  530. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  531. <xacro:property name="default_origin">
  532.   <origin xyz="0 0 0" rpy="0 0 0" />
  533. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  534. <xacro:property name="wheel_length" value="0.05" />
  535. <xacro:property name="pi" value="3.14159" />
  536. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  537. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  538. <xacro:property name="default_origin">
  539.   <origin xyz="0 0 0" rpy="0 0 0" />
  540. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  541. <xacro:property name="wheel_length" value="0.05" />
  542. <xacro:property name="pi" value="3.14159" />
  543. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  544. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  545. <xacro:property name="default_origin">
  546.   <origin xyz="0 0 0" rpy="0 0 0" />
  547. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  548. <xacro:property name="wheel_length" value="0.05" />
  549. <xacro:property name="pi" value="3.14159" />
  550. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  551. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  552. <xacro:property name="default_origin">
  553.   <origin xyz="0 0 0" rpy="0 0 0" />
  554. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  555. <xacro:property name="wheel_length" value="0.05" />
  556. <xacro:property name="pi" value="3.14159" />
  557. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  558. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  559. <xacro:property name="default_origin">
  560.   <origin xyz="0 0 0" rpy="0 0 0" />
  561. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  562. <xacro:property name="wheel_length" value="0.05" />
  563. <xacro:property name="pi" value="3.14159" />
  564. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  565. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  566. <xacro:property name="default_origin">
  567.   <origin xyz="0 0 0" rpy="0 0 0" />
  568. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  569. <xacro:property name="wheel_length" value="0.05" />
  570. <xacro:property name="pi" value="3.14159" />
  571. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  572. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  573. <xacro:property name="default_origin">
  574.   <origin xyz="0 0 0" rpy="0 0 0" />
  575. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  576. <xacro:property name="wheel_length" value="0.05" />
  577. <xacro:property name="pi" value="3.14159" />
  578. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  579. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  580. <xacro:property name="default_origin">
  581.   <origin xyz="0 0 0" rpy="0 0 0" />
  582. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  583. <xacro:property name="wheel_length" value="0.05" />
  584. <xacro:property name="pi" value="3.14159" />
  585. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  586. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  587. <xacro:property name="default_origin">
  588.   <origin xyz="0 0 0" rpy="0 0 0" />
  589. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  590. <xacro:property name="wheel_length" value="0.05" />
  591. <xacro:property name="pi" value="3.14159" />
  592. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  593. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  594. <xacro:property name="default_origin">
  595.   <origin xyz="0 0 0" rpy="0 0 0" />
  596. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  597. <xacro:property name="wheel_length" value="0.05" />
  598. <xacro:property name="pi" value="3.14159" />
  599. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  600. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  601. <xacro:property name="default_origin">
  602.   <origin xyz="0 0 0" rpy="0 0 0" />
  603. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  604. <xacro:property name="wheel_length" value="0.05" />
  605. <xacro:property name="pi" value="3.14159" />
  606. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  607. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  608. <xacro:property name="default_origin">
  609.   <origin xyz="0 0 0" rpy="0 0 0" />
  610. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  611. <xacro:property name="wheel_length" value="0.05" />
  612. <xacro:property name="pi" value="3.14159" />
  613. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  614. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  615. <xacro:property name="default_origin">
  616.   <origin xyz="0 0 0" rpy="0 0 0" />
  617. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  618. <xacro:property name="wheel_length" value="0.05" />
  619. <xacro:property name="pi" value="3.14159" />
  620. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  621. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  622. <xacro:property name="default_origin">
  623.   <origin xyz="0 0 0" rpy="0 0 0" />
  624. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  625. <xacro:property name="wheel_length" value="0.05" />
  626. <xacro:property name="pi" value="3.14159" />
  627. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  628. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  629. <xacro:property name="default_origin">
  630.   <origin xyz="0 0 0" rpy="0 0 0" />
  631. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  632. <xacro:property name="wheel_length" value="0.05" />
  633. <xacro:property name="pi" value="3.14159" />
  634. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  635. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  636. <xacro:property name="default_origin">
  637.   <origin xyz="0 0 0" rpy="0 0 0" />
  638. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  639. <xacro:property name="wheel_length" value="0.05" />
  640. <xacro:property name="pi" value="3.14159" />
  641. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  642. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  643. <xacro:property name="default_origin">
  644.   <origin xyz="0 0 0" rpy="0 0 0" />
  645. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  646. <xacro:property name="wheel_length" value="0.05" />
  647. <xacro:property name="pi" value="3.14159" />
  648. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  649. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  650. <xacro:property name="default_origin">
  651.   <origin xyz="0 0 0" rpy="0 0 0" />
  652. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  653. <xacro:property name="wheel_length" value="0.05" />
  654. <xacro:property name="pi" value="3.14159" />
  655. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  656. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  657. <xacro:property name="default_origin">
  658.   <origin xyz="0 0 0" rpy="0 0 0" />
  659. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  660. <xacro:property name="wheel_length" value="0.05" />
  661. <xacro:property name="pi" value="3.14159" />
  662. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  663. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  664. <xacro:property name="default_origin">
  665.   <origin xyz="0 0 0" rpy="0 0 0" />
  666. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  667. <xacro:property name="wheel_length" value="0.05" />
  668. <xacro:property name="pi" value="3.14159" />
  669. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  670. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  671. <xacro:property name="default_origin">
  672.   <origin xyz="0 0 0" rpy="0 0 0" />
  673. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  674. <xacro:property name="wheel_length" value="0.05" />
  675. <xacro:property name="pi" value="3.14159" />
  676. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  677. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  678. <xacro:property name="default_origin">
  679.   <origin xyz="0 0 0" rpy="0 0 0" />
  680. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  681. <xacro:property name="wheel_length" value="0.05" />
  682. <xacro:property name="pi" value="3.14159" />
  683. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  684. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  685. <xacro:property name="default_origin">
  686.   <origin xyz="0 0 0" rpy="0 0 0" />
  687. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  688. <xacro:property name="wheel_length" value="0.05" />
  689. <xacro:property name="pi" value="3.14159" />
  690. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  691. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  692. <xacro:property name="default_origin">
  693.   <origin xyz="0 0 0" rpy="0 0 0" />
  694. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  695. <xacro:property name="wheel_length" value="0.05" />
  696. <xacro:property name="pi" value="3.14159" />
  697. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  698. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  699. <xacro:property name="default_origin">
  700.   <origin xyz="0 0 0" rpy="0 0 0" />
  701. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  702. <xacro:property name="wheel_length" value="0.05" />
  703. <xacro:property name="pi" value="3.14159" />
  704. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  705. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  706. <xacro:property name="default_origin">
  707.   <origin xyz="0 0 0" rpy="0 0 0" />
  708. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  709. <xacro:property name="wheel_length" value="0.05" />
  710. <xacro:property name="pi" value="3.14159" />
  711. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  712. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  713. <xacro:property name="default_origin">
  714.   <origin xyz="0 0 0" rpy="0 0 0" />
  715. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  716. <xacro:property name="wheel_length" value="0.05" />
  717. <xacro:property name="pi" value="3.14159" />
  718. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  719. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  720. <xacro:property name="default_origin">
  721.   <origin xyz="0 0 0" rpy="0 0 0" />
  722. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  723. <xacro:property name="wheel_length" value="0.05" />
  724. <xacro:property name="pi" value="3.14159" />
  725. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  726. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  727. <xacro:property name="default_origin">
  728.   <origin xyz="0 0 0" rpy="0 0 0" />
  729. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  730. <xacro:property name="wheel_length" value="0.05" />
  731. <xacro:property name="pi" value="3.14159" />
  732. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  733. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  734. <xacro:property name="default_origin">
  735.   <origin xyz="0 0 0" rpy="0 0 0" />
  736. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  737. <xacro:property name="wheel_length" value="0.05" />
  738. <xacro:property name="pi" value="3.14159" />
  739. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  740. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  741. <xacro:property name="default_origin">
  742.   <origin xyz="0 0 0" rpy="0 0 0" />
  743. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  744. <xacro:property name="wheel_length" value="0.05" />
  745. <xacro:property name="pi" value="3.14159" />
  746. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  747. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  748. <xacro:property name="default_origin">
  749.   <origin xyz="0 0 0" rpy="0 0 0" />
  750. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  751. <xacro:property name="wheel_length" value="0.05" />
  752. <xacro:property name="pi" value="3.14159" />
  753. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  754. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  755. <xacro:property name="default_origin">
  756.   <origin xyz="0 0 0" rpy="0 0 0" />
  757. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  758. <xacro:property name="wheel_length" value="0.05" />
  759. <xacro:property name="pi" value="3.14159" />
  760. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  761. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  762. <xacro:property name="default_origin">
  763.   <origin xyz="0 0 0" rpy="0 0 0" />
  764. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  765. <xacro:property name="wheel_length" value="0.05" />
  766. <xacro:property name="pi" value="3.14159" />
  767. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  768. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  769. <xacro:property name="default_origin">
  770.   <origin xyz="0 0 0" rpy="0 0 0" />
  771. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  772. <xacro:property name="wheel_length" value="0.05" />
  773. <xacro:property name="pi" value="3.14159" />
  774. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  775. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  776. <xacro:property name="default_origin">
  777.   <origin xyz="0 0 0" rpy="0 0 0" />
  778. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  779. <xacro:property name="wheel_length" value="0.05" />
  780. <xacro:property name="pi" value="3.14159" />
  781. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  782. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  783. <xacro:property name="default_origin">
  784.   <origin xyz="0 0 0" rpy="0 0 0" />
  785. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  786. <xacro:property name="wheel_length" value="0.05" />
  787. <xacro:property name="pi" value="3.14159" />
  788. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  789. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  790. <xacro:property name="default_origin">
  791.   <origin xyz="0 0 0" rpy="0 0 0" />
  792. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  793. <xacro:property name="wheel_length" value="0.05" />
  794. <xacro:property name="pi" value="3.14159" />
  795. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  796. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  797. <xacro:property name="default_origin">
  798.   <origin xyz="0 0 0" rpy="0 0 0" />
  799. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  800. <xacro:property name="wheel_length" value="0.05" />
  801. <xacro:property name="pi" value="3.14159" />
  802. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  803. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  804. <xacro:property name="default_origin">
  805.   <origin xyz="0 0 0" rpy="0 0 0" />
  806. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  807. <xacro:property name="wheel_length" value="0.05" />
  808. <xacro:property name="pi" value="3.14159" />
  809. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  810. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  811. <xacro:property name="default_origin">
  812.   <origin xyz="0 0 0" rpy="0 0 0" />
  813. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  814. <xacro:property name="wheel_length" value="0.05" />
  815. <xacro:property name="pi" value="3.14159" />
  816. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  817. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  818. <xacro:property name="default_origin">
  819.   <origin xyz="0 0 0" rpy="0 0 0" />
  820. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  821. <xacro:property name="wheel_length" value="0.05" />
  822. <xacro:property name="pi" value="3.14159" />
  823. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  824. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  825. <xacro:property name="default_origin">
  826.   <origin xyz="0 0 0" rpy="0 0 0" />
  827. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  828. <xacro:property name="wheel_length" value="0.05" />
  829. <xacro:property name="pi" value="3.14159" />
  830. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  831. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  832. <xacro:property name="default_origin">
  833.   <origin xyz="0 0 0" rpy="0 0 0" />
  834. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  835. <xacro:property name="wheel_length" value="0.05" />
  836. <xacro:property name="pi" value="3.14159" />
  837. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  838. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  839. <xacro:property name="default_origin">
  840.   <origin xyz="0 0 0" rpy="0 0 0" />
  841. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  842. <xacro:property name="wheel_length" value="0.05" />
  843. <xacro:property name="pi" value="3.14159" />
  844. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  845. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  846. <xacro:property name="default_origin">
  847.   <origin xyz="0 0 0" rpy="0 0 0" />
  848. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  849. <xacro:property name="wheel_length" value="0.05" />
  850. <xacro:property name="pi" value="3.14159" />
  851. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  852. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  853. <xacro:property name="default_origin">
  854.   <origin xyz="0 0 0" rpy="0 0 0" />
  855. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  856. <xacro:property name="wheel_length" value="0.05" />
  857. <xacro:property name="pi" value="3.14159" />
  858. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  859. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  860. <xacro:property name="default_origin">
  861.   <origin xyz="0 0 0" rpy="0 0 0" />
  862. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  863. <xacro:property name="wheel_length" value="0.05" />
  864. <xacro:property name="pi" value="3.14159" />
  865. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  866. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  867. <xacro:property name="default_origin">
  868.   <origin xyz="0 0 0" rpy="0 0 0" />
  869. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  870. <xacro:property name="wheel_length" value="0.05" />
  871. <xacro:property name="pi" value="3.14159" />
  872. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  873. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  874. <xacro:property name="default_origin">
  875.   <origin xyz="0 0 0" rpy="0 0 0" />
  876. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  877. <xacro:property name="wheel_length" value="0.05" />
  878. <xacro:property name="pi" value="3.14159" />
  879. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  880. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  881. <xacro:property name="default_origin">
  882.   <origin xyz="0 0 0" rpy="0 0 0" />
  883. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  884. <xacro:property name="wheel_length" value="0.05" />
  885. <xacro:property name="pi" value="3.14159" />
  886. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  887. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  888. <xacro:property name="default_origin">
  889.   <origin xyz="0 0 0" rpy="0 0 0" />
  890. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  891. <xacro:property name="wheel_length" value="0.05" />
  892. <xacro:property name="pi" value="3.14159" />
  893. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  894. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  895. <xacro:property name="default_origin">
  896.   <origin xyz="0 0 0" rpy="0 0 0" />
  897. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  898. <xacro:property name="wheel_length" value="0.05" />
  899. <xacro:property name="pi" value="3.14159" />
  900. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  901. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  902. <xacro:property name="default_origin">
  903.   <origin xyz="0 0 0" rpy="0 0 0" />
  904. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  905. <xacro:property name="wheel_length" value="0.05" />
  906. <xacro:property name="pi" value="3.14159" />
  907. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  908. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  909. <xacro:property name="default_origin">
  910.   <origin xyz="0 0 0" rpy="0 0 0" />
  911. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  912. <xacro:property name="wheel_length" value="0.05" />
  913. <xacro:property name="pi" value="3.14159" />
  914. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  915. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  916. <xacro:property name="default_origin">
  917.   <origin xyz="0 0 0" rpy="0 0 0" />
  918. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  919. <xacro:property name="wheel_length" value="0.05" />
  920. <xacro:property name="pi" value="3.14159" />
  921. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  922. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  923. <xacro:property name="default_origin">
  924.   <origin xyz="0 0 0" rpy="0 0 0" />
  925. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  926. <xacro:property name="wheel_length" value="0.05" />
  927. <xacro:property name="pi" value="3.14159" />
  928. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  929. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  930. <xacro:property name="default_origin">
  931.   <origin xyz="0 0 0" rpy="0 0 0" />
  932. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  933. <xacro:property name="wheel_length" value="0.05" />
  934. <xacro:property name="pi" value="3.14159" />
  935. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  936. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  937. <xacro:property name="default_origin">
  938.   <origin xyz="0 0 0" rpy="0 0 0" />
  939. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  940. <xacro:property name="wheel_length" value="0.05" />
  941. <xacro:property name="pi" value="3.14159" />
  942. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  943. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  944. <xacro:property name="default_origin">
  945.   <origin xyz="0 0 0" rpy="0 0 0" />
  946. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  947. <xacro:property name="wheel_length" value="0.05" />
  948. <xacro:property name="pi" value="3.14159" />
  949. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  950. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  951. <xacro:property name="default_origin">
  952.   <origin xyz="0 0 0" rpy="0 0 0" />
  953. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  954. <xacro:property name="wheel_length" value="0.05" />
  955. <xacro:property name="pi" value="3.14159" />
  956. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  957. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  958. <xacro:property name="default_origin">
  959.   <origin xyz="0 0 0" rpy="0 0 0" />
  960. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  961. <xacro:property name="wheel_length" value="0.05" />
  962. <xacro:property name="pi" value="3.14159" />
  963. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  964. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  965. <xacro:property name="default_origin">
  966.   <origin xyz="0 0 0" rpy="0 0 0" />
  967. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  968. <xacro:property name="wheel_length" value="0.05" />
  969. <xacro:property name="pi" value="3.14159" />
  970. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  971. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  972. <xacro:property name="default_origin">
  973.   <origin xyz="0 0 0" rpy="0 0 0" />
  974. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  975. <xacro:property name="wheel_length" value="0.05" />
  976. <xacro:property name="pi" value="3.14159" />
  977. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  978. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  979. <xacro:property name="default_origin">
  980.   <origin xyz="0 0 0" rpy="0 0 0" />
  981. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  982. <xacro:property name="wheel_length" value="0.05" />
  983. <xacro:property name="pi" value="3.14159" />
  984. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  985. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  986. <xacro:property name="default_origin">
  987.   <origin xyz="0 0 0" rpy="0 0 0" />
  988. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  989. <xacro:property name="wheel_length" value="0.05" />
  990. <xacro:property name="pi" value="3.14159" />
  991. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  992. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  993. <xacro:property name="default_origin">
  994.   <origin xyz="0 0 0" rpy="0 0 0" />
  995. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  996. <xacro:property name="wheel_length" value="0.05" />
  997. <xacro:property name="pi" value="3.14159" />
  998. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  999. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1000. <xacro:property name="default_origin">
  1001.   <origin xyz="0 0 0" rpy="0 0 0" />
  1002. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1003. <xacro:property name="wheel_length" value="0.05" />
  1004. <xacro:property name="pi" value="3.14159" />
  1005. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1006. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1007. <xacro:property name="default_origin">
  1008.   <origin xyz="0 0 0" rpy="0 0 0" />
  1009. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1010. <xacro:property name="wheel_length" value="0.05" />
  1011. <xacro:property name="pi" value="3.14159" />
  1012. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1013. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1014. <xacro:property name="default_origin">
  1015.   <origin xyz="0 0 0" rpy="0 0 0" />
  1016. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1017. <xacro:property name="wheel_length" value="0.05" />
  1018. <xacro:property name="pi" value="3.14159" />
  1019. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1020. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1021. <xacro:property name="default_origin">
  1022.   <origin xyz="0 0 0" rpy="0 0 0" />
  1023. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1024. <xacro:property name="wheel_length" value="0.05" />
  1025. <xacro:property name="pi" value="3.14159" />
  1026. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1027. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1028. <xacro:property name="default_origin">
  1029.   <origin xyz="0 0 0" rpy="0 0 0" />
  1030. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1031. <xacro:property name="wheel_length" value="0.05" />
  1032. <xacro:property name="pi" value="3.14159" />
  1033. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1034. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1035. <xacro:property name="default_origin">
  1036.   <origin xyz="0 0 0" rpy="0 0 0" />
  1037. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1038. <xacro:property name="wheel_length" value="0.05" />
  1039. <xacro:property name="pi" value="3.14159" />
  1040. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1041. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1042. <xacro:property name="default_origin">
  1043.   <origin xyz="0 0 0" rpy="0 0 0" />
  1044. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1045. <xacro:property name="wheel_length" value="0.05" />
  1046. <xacro:property name="pi" value="3.14159" />
  1047. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1048. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1049. <xacro:property name="default_origin">
  1050.   <origin xyz="0 0 0" rpy="0 0 0" />
  1051. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1052. <xacro:property name="wheel_length" value="0.05" />
  1053. <xacro:property name="pi" value="3.14159" />
  1054. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1055. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1056. <xacro:property name="default_origin">
  1057.   <origin xyz="0 0 0" rpy="0 0 0" />
  1058. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1059. <xacro:property name="wheel_length" value="0.05" />
  1060. <xacro:property name="pi" value="3.14159" />
  1061. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1062. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1063. <xacro:property name="default_origin">
  1064.   <origin xyz="0 0 0" rpy="0 0 0" />
  1065. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1066. <xacro:property name="wheel_length" value="0.05" />
  1067. <xacro:property name="pi" value="3.14159" />
  1068. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1069. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1070. <xacro:property name="default_origin">
  1071.   <origin xyz="0 0 0" rpy="0 0 0" />
  1072. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1073. <xacro:property name="wheel_length" value="0.05" />
  1074. <xacro:property name="pi" value="3.14159" />
  1075. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1076. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1077. <xacro:property name="default_origin">
  1078.   <origin xyz="0 0 0" rpy="0 0 0" />
  1079. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1080. <xacro:property name="wheel_length" value="0.05" />
  1081. <xacro:property name="pi" value="3.14159" />
  1082. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1083. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1084. <xacro:property name="default_origin">
  1085.   <origin xyz="0 0 0" rpy="0 0 0" />
  1086. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1087. <xacro:property name="wheel_length" value="0.05" />
  1088. <xacro:property name="pi" value="3.14159" />
  1089. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1090. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1091. <xacro:property name="default_origin">
  1092.   <origin xyz="0 0 0" rpy="0 0 0" />
  1093. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1094. <xacro:property name="wheel_length" value="0.05" />
  1095. <xacro:property name="pi" value="3.14159" />
  1096. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1097. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1098. <xacro:property name="default_origin">
  1099.   <origin xyz="0 0 0" rpy="0 0 0" />
  1100. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1101. <xacro:property name="wheel_length" value="0.05" />
  1102. <xacro:property name="pi" value="3.14159" />
  1103. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1104. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1105. <xacro:property name="default_origin">
  1106.   <origin xyz="0 0 0" rpy="0 0 0" />
  1107. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1108. <xacro:property name="wheel_length" value="0.05" />
  1109. <xacro:property name="pi" value="3.14159" />
  1110. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1111. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1112. <xacro:property name="default_origin">
  1113.   <origin xyz="0 0 0" rpy="0 0 0" />
  1114. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1115. <xacro:property name="wheel_length" value="0.05" />
  1116. <xacro:property name="pi" value="3.14159" />
  1117. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1118. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1119. <xacro:property name="default_origin">
  1120.   <origin xyz="0 0 0" rpy="0 0 0" />
  1121. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1122. <xacro:property name="wheel_length" value="0.05" />
  1123. <xacro:property name="pi" value="3.14159" />
  1124. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1125. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1126. <xacro:property name="default_origin">
  1127.   <origin xyz="0 0 0" rpy="0 0 0" />
  1128. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1129. <xacro:property name="wheel_length" value="0.05" />
  1130. <xacro:property name="pi" value="3.14159" />
  1131. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1132. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1133. <xacro:property name="default_origin">
  1134.   <origin xyz="0 0 0" rpy="0 0 0" />
  1135. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1136. <xacro:property name="wheel_length" value="0.05" />
  1137. <xacro:property name="pi" value="3.14159" />
  1138. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1139. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1140. <xacro:property name="default_origin">
  1141.   <origin xyz="0 0 0" rpy="0 0 0" />
  1142. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1143. <xacro:property name="wheel_length" value="0.05" />
  1144. <xacro:property name="pi" value="3.14159" />
  1145. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1146. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1147. <xacro:property name="default_origin">
  1148.   <origin xyz="0 0 0" rpy="0 0 0" />
  1149. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1150. <xacro:property name="wheel_length" value="0.05" />
  1151. <xacro:property name="pi" value="3.14159" />
  1152. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1153. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1154. <xacro:property name="default_origin">
  1155.   <origin xyz="0 0 0" rpy="0 0 0" />
  1156. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1157. <xacro:property name="wheel_length" value="0.05" />
  1158. <xacro:property name="pi" value="3.14159" />
  1159. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1160. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1161. <xacro:property name="default_origin">
  1162.   <origin xyz="0 0 0" rpy="0 0 0" />
  1163. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1164. <xacro:property name="wheel_length" value="0.05" />
  1165. <xacro:property name="pi" value="3.14159" />
  1166. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1167. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1168. <xacro:property name="default_origin">
  1169.   <origin xyz="0 0 0" rpy="0 0 0" />
  1170. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1171. <xacro:property name="wheel_length" value="0.05" />
  1172. <xacro:property name="pi" value="3.14159" />
  1173. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1174. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1175. <xacro:property name="default_origin">
  1176.   <origin xyz="0 0 0" rpy="0 0 0" />
  1177. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1178. <xacro:property name="wheel_length" value="0.05" />
  1179. <xacro:property name="pi" value="3.14159" />
  1180. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1181. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1182. <xacro:property name="default_origin">
  1183.   <origin xyz="0 0 0" rpy="0 0 0" />
  1184. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1185. <xacro:property name="wheel_length" value="0.05" />
  1186. <xacro:property name="pi" value="3.14159" />
  1187. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1188. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1189. <xacro:property name="default_origin">
  1190.   <origin xyz="0 0 0" rpy="0 0 0" />
  1191. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1192. <xacro:property name="wheel_length" value="0.05" />
  1193. <xacro:property name="pi" value="3.14159" />
  1194. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1195. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1196. <xacro:property name="default_origin">
  1197.   <origin xyz="0 0 0" rpy="0 0 0" />
  1198. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1199. <xacro:property name="wheel_length" value="0.05" />
  1200. <xacro:property name="pi" value="3.14159" />
  1201. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1202. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1203. <xacro:property name="default_origin">
  1204.   <origin xyz="0 0 0" rpy="0 0 0" />
  1205. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1206. <xacro:property name="wheel_length" value="0.05" />
  1207. <xacro:property name="pi" value="3.14159" />
  1208. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1209. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1210. <xacro:property name="default_origin">
  1211.   <origin xyz="0 0 0" rpy="0 0 0" />
  1212. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1213. <xacro:property name="wheel_length" value="0.05" />
  1214. <xacro:property name="pi" value="3.14159" />
  1215. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1216. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1217. <xacro:property name="default_origin">
  1218.   <origin xyz="0 0 0" rpy="0 0 0" />
  1219. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1220. <xacro:property name="wheel_length" value="0.05" />
  1221. <xacro:property name="pi" value="3.14159" />
  1222. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1223. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1224. <xacro:property name="default_origin">
  1225.   <origin xyz="0 0 0" rpy="0 0 0" />
  1226. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1227. <xacro:property name="wheel_length" value="0.05" />
  1228. <xacro:property name="pi" value="3.14159" />
  1229. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1230. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1231. <xacro:property name="default_origin">
  1232.   <origin xyz="0 0 0" rpy="0 0 0" />
  1233. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1234. <xacro:property name="wheel_length" value="0.05" />
  1235. <xacro:property name="pi" value="3.14159" />
  1236. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1237. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1238. <xacro:property name="default_origin">
  1239.   <origin xyz="0 0 0" rpy="0 0 0" />
  1240. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1241. <xacro:property name="wheel_length" value="0.05" />
  1242. <xacro:property name="pi" value="3.14159" />
  1243. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1244. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1245. <xacro:property name="default_origin">
  1246.   <origin xyz="0 0 0" rpy="0 0 0" />
  1247. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1248. <xacro:property name="wheel_length" value="0.05" />
  1249. <xacro:property name="pi" value="3.14159" />
  1250. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1251. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1252. <xacro:property name="default_origin">
  1253.   <origin xyz="0 0 0" rpy="0 0 0" />
  1254. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1255. <xacro:property name="wheel_length" value="0.05" />
  1256. <xacro:property name="pi" value="3.14159" />
  1257. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1258. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1259. <xacro:property name="default_origin">
  1260.   <origin xyz="0 0 0" rpy="0 0 0" />
  1261. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1262. <xacro:property name="wheel_length" value="0.05" />
  1263. <xacro:property name="pi" value="3.14159" />
  1264. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1265. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1266. <xacro:property name="default_origin">
  1267.   <origin xyz="0 0 0" rpy="0 0 0" />
  1268. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1269. <xacro:property name="wheel_length" value="0.05" />
  1270. <xacro:property name="pi" value="3.14159" />
  1271. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1272. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1273. <xacro:property name="default_origin">
  1274.   <origin xyz="0 0 0" rpy="0 0 0" />
  1275. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1276. <xacro:property name="wheel_length" value="0.05" />
  1277. <xacro:property name="pi" value="3.14159" />
  1278. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1279. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1280. <xacro:property name="default_origin">
  1281.   <origin xyz="0 0 0" rpy="0 0 0" />
  1282. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1283. <xacro:property name="wheel_length" value="0.05" />
  1284. <xacro:property name="pi" value="3.14159" />
  1285. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1286. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1287. <xacro:property name="default_origin">
  1288.   <origin xyz="0 0 0" rpy="0 0 0" />
  1289. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1290. <xacro:property name="wheel_length" value="0.05" />
  1291. <xacro:property name="pi" value="3.14159" />
  1292. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1293. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1294. <xacro:property name="default_origin">
  1295.   <origin xyz="0 0 0" rpy="0 0 0" />
  1296. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1297. <xacro:property name="wheel_length" value="0.05" />
  1298. <xacro:property name="pi" value="3.14159" />
  1299. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1300. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1301. <xacro:property name="default_origin">
  1302.   <origin xyz="0 0 0" rpy="0 0 0" />
  1303. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1304. <xacro:property name="wheel_length" value="0.05" />
  1305. <xacro:property name="pi" value="3.14159" />
  1306. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1307. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1308. <xacro:property name="default_origin">
  1309.   <origin xyz="0 0 0" rpy="0 0 0" />
  1310. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1311. <xacro:property name="wheel_length" value="0.05" />
  1312. <xacro:property name="pi" value="3.14159" />
  1313. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1314. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1315. <xacro:property name="default_origin">
  1316.   <origin xyz="0 0 0" rpy="0 0 0" />
  1317. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1318. <xacro:property name="wheel_length" value="0.05" />
  1319. <xacro:property name="pi" value="3.14159" />
  1320. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1321. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1322. <xacro:property name="default_origin">
  1323.   <origin xyz="0 0 0" rpy="0 0 0" />
  1324. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1325. <xacro:property name="wheel_length" value="0.05" />
  1326. <xacro:property name="pi" value="3.14159" />
  1327. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1328. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1329. <xacro:property name="default_origin">
  1330.   <origin xyz="0 0 0" rpy="0 0 0" />
  1331. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1332. <xacro:property name="wheel_length" value="0.05" />
  1333. <xacro:property name="pi" value="3.14159" />
  1334. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1335. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1336. <xacro:property name="default_origin">
  1337.   <origin xyz="0 0 0" rpy="0 0 0" />
  1338. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1339. <xacro:property name="wheel_length" value="0.05" />
  1340. <xacro:property name="pi" value="3.14159" />
  1341. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1342. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1343. <xacro:property name="default_origin">
  1344.   <origin xyz="0 0 0" rpy="0 0 0" />
  1345. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1346. <xacro:property name="wheel_length" value="0.05" />
  1347. <xacro:property name="pi" value="3.14159" />
  1348. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1349. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1350. <xacro:property name="default_origin">
  1351.   <origin xyz="0 0 0" rpy="0 0 0" />
  1352. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1353. <xacro:property name="wheel_length" value="0.05" />
  1354. <xacro:property name="pi" value="3.14159" />
  1355. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1356. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1357. <xacro:property name="default_origin">
  1358.   <origin xyz="0 0 0" rpy="0 0 0" />
  1359. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1360. <xacro:property name="wheel_length" value="0.05" />
  1361. <xacro:property name="pi" value="3.14159" />
  1362. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1363. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1364. <xacro:property name="default_origin">
  1365.   <origin xyz="0 0 0" rpy="0 0 0" />
  1366. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1367. <xacro:property name="wheel_length" value="0.05" />
  1368. <xacro:property name="pi" value="3.14159" />
  1369. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1370. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1371. <xacro:property name="default_origin">
  1372.   <origin xyz="0 0 0" rpy="0 0 0" />
  1373. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1374. <xacro:property name="wheel_length" value="0.05" />
  1375. <xacro:property name="pi" value="3.14159" />
  1376. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1377. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1378. <xacro:property name="default_origin">
  1379.   <origin xyz="0 0 0" rpy="0 0 0" />
  1380. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1381. <xacro:property name="wheel_length" value="0.05" />
  1382. <xacro:property name="pi" value="3.14159" />
  1383. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1384. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1385. <xacro:property name="default_origin">
  1386.   <origin xyz="0 0 0" rpy="0 0 0" />
  1387. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1388. <xacro:property name="wheel_length" value="0.05" />
  1389. <xacro:property name="pi" value="3.14159" />
  1390. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1391. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1392. <xacro:property name="default_origin">
  1393.   <origin xyz="0 0 0" rpy="0 0 0" />
  1394. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1395. <xacro:property name="wheel_length" value="0.05" />
  1396. <xacro:property name="pi" value="3.14159" />
  1397. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1398. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1399. <xacro:property name="default_origin">
  1400.   <origin xyz="0 0 0" rpy="0 0 0" />
  1401. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1402. <xacro:property name="wheel_length" value="0.05" />
  1403. <xacro:property name="pi" value="3.14159" />
  1404. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1405. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1406. <xacro:property name="default_origin">
  1407.   <origin xyz="0 0 0" rpy="0 0 0" />
  1408. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1409. <xacro:property name="wheel_length" value="0.05" />
  1410. <xacro:property name="pi" value="3.14159" />
  1411. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1412. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1413. <xacro:property name="default_origin">
  1414.   <origin xyz="0 0 0" rpy="0 0 0" />
  1415. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1416. <xacro:property name="wheel_length" value="0.05" />
  1417. <xacro:property name="pi" value="3.14159" />
  1418. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1419. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1420. <xacro:property name="default_origin">
  1421.   <origin xyz="0 0 0" rpy="0 0 0" />
  1422. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1423. <xacro:property name="wheel_length" value="0.05" />
  1424. <xacro:property name="pi" value="3.14159" />
  1425. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1426. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1427. <xacro:property name="default_origin">
  1428.   <origin xyz="0 0 0" rpy="0 0 0" />
  1429. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1430. <xacro:property name="wheel_length" value="0.05" />
  1431. <xacro:property name="pi" value="3.14159" />
  1432. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1433. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1434. <xacro:property name="default_origin">
  1435.   <origin xyz="0 0 0" rpy="0 0 0" />
  1436. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1437. <xacro:property name="wheel_length" value="0.05" />
  1438. <xacro:property name="pi" value="3.14159" />
  1439. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1440. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1441. <xacro:property name="default_origin">
  1442.   <origin xyz="0 0 0" rpy="0 0 0" />
  1443. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1444. <xacro:property name="wheel_length" value="0.05" />
  1445. <xacro:property name="pi" value="3.14159" />
  1446. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1447. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1448. <xacro:property name="default_origin">
  1449.   <origin xyz="0 0 0" rpy="0 0 0" />
  1450. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1451. <xacro:property name="wheel_length" value="0.05" />
  1452. <xacro:property name="pi" value="3.14159" />
  1453. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1454. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1455. <xacro:property name="default_origin">
  1456.   <origin xyz="0 0 0" rpy="0 0 0" />
  1457. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1458. <xacro:property name="wheel_length" value="0.05" />
  1459. <xacro:property name="pi" value="3.14159" />
  1460. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1461. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1462. <xacro:property name="default_origin">
  1463.   <origin xyz="0 0 0" rpy="0 0 0" />
  1464. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1465. <xacro:property name="wheel_length" value="0.05" />
  1466. <xacro:property name="pi" value="3.14159" />
  1467. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1468. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1469. <xacro:property name="default_origin">
  1470.   <origin xyz="0 0 0" rpy="0 0 0" />
  1471. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1472. <xacro:property name="wheel_length" value="0.05" />
  1473. <xacro:property name="pi" value="3.14159" />
  1474. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1475. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1476. <xacro:property name="default_origin">
  1477.   <origin xyz="0 0 0" rpy="0 0 0" />
  1478. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1479. <xacro:property name="wheel_length" value="0.05" />
  1480. <xacro:property name="pi" value="3.14159" />
  1481. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1482. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1483. <xacro:property name="default_origin">
  1484.   <origin xyz="0 0 0" rpy="0 0 0" />
  1485. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1486. <xacro:property name="wheel_length" value="0.05" />
  1487. <xacro:property name="pi" value="3.14159" />
  1488. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1489. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1490. <xacro:property name="default_origin">
  1491.   <origin xyz="0 0 0" rpy="0 0 0" />
  1492. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1493. <xacro:property name="wheel_length" value="0.05" />
  1494. <xacro:property name="pi" value="3.14159" />
  1495. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1496. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1497. <xacro:property name="default_origin">
  1498.   <origin xyz="0 0 0" rpy="0 0 0" />
  1499. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1500. <xacro:property name="wheel_length" value="0.05" />
  1501. <xacro:property name="pi" value="3.14159" />
  1502. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1503. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1504. <xacro:property name="default_origin">
  1505.   <origin xyz="0 0 0" rpy="0 0 0" />
  1506. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1507. <xacro:property name="wheel_length" value="0.05" />
  1508. <xacro:property name="pi" value="3.14159" />
  1509. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1510. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1511. <xacro:property name="default_origin">
  1512.   <origin xyz="0 0 0" rpy="0 0 0" />
  1513. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1514. <xacro:property name="wheel_length" value="0.05" />
  1515. <xacro:property name="pi" value="3.14159" />
  1516. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1517. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1518. <xacro:property name="default_origin">
  1519.   <origin xyz="0 0 0" rpy="0 0 0" />
  1520. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1521. <xacro:property name="wheel_length" value="0.05" />
  1522. <xacro:property name="pi" value="3.14159" />
  1523. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1524. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1525. <xacro:property name="default_origin">
  1526.   <origin xyz="0 0 0" rpy="0 0 0" />
  1527. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1528. <xacro:property name="wheel_length" value="0.05" />
  1529. <xacro:property name="pi" value="3.14159" />
  1530. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1531. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1532. <xacro:property name="default_origin">
  1533.   <origin xyz="0 0 0" rpy="0 0 0" />
  1534. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1535. <xacro:property name="wheel_length" value="0.05" />
  1536. <xacro:property name="pi" value="3.14159" />
  1537. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1538. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1539. <xacro:property name="default_origin">
  1540.   <origin xyz="0 0 0" rpy="0 0 0" />
  1541. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1542. <xacro:property name="wheel_length" value="0.05" />
  1543. <xacro:property name="pi" value="3.14159" />
  1544. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1545. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1546. <xacro:property name="default_origin">
  1547.   <origin xyz="0 0 0" rpy="0 0 0" />
  1548. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1549. <xacro:property name="wheel_length" value="0.05" />
  1550. <xacro:property name="pi" value="3.14159" />
  1551. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1552. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1553. <xacro:property name="default_origin">
  1554.   <origin xyz="0 0 0" rpy="0 0 0" />
  1555. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1556. <xacro:property name="wheel_length" value="0.05" />
  1557. <xacro:property name="pi" value="3.14159" />
  1558. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1559. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1560. <xacro:property name="default_origin">
  1561.   <origin xyz="0 0 0" rpy="0 0 0" />
  1562. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1563. <xacro:property name="wheel_length" value="0.05" />
  1564. <xacro:property name="pi" value="3.14159" />
  1565. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1566. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1567. <xacro:property name="default_origin">
  1568.   <origin xyz="0 0 0" rpy="0 0 0" />
  1569. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1570. <xacro:property name="wheel_length" value="0.05" />
  1571. <xacro:property name="pi" value="3.14159" />
  1572. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1573. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1574. <xacro:property name="default_origin">
  1575.   <origin xyz="0 0 0" rpy="0 0 0" />
  1576. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1577. <xacro:property name="wheel_length" value="0.05" />
  1578. <xacro:property name="pi" value="3.14159" />
  1579. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1580. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1581. <xacro:property name="default_origin">
  1582.   <origin xyz="0 0 0" rpy="0 0 0" />
  1583. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1584. <xacro:property name="wheel_length" value="0.05" />
  1585. <xacro:property name="pi" value="3.14159" />
  1586. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1587. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1588. <xacro:property name="default_origin">
  1589.   <origin xyz="0 0 0" rpy="0 0 0" />
  1590. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1591. <xacro:property name="wheel_length" value="0.05" />
  1592. <xacro:property name="pi" value="3.14159" />
  1593. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1594. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1595. <xacro:property name="default_origin">
  1596.   <origin xyz="0 0 0" rpy="0 0 0" />
  1597. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1598. <xacro:property name="wheel_length" value="0.05" />
  1599. <xacro:property name="pi" value="3.14159" />
  1600. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1601. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1602. <xacro:property name="default_origin">
  1603.   <origin xyz="0 0 0" rpy="0 0 0" />
  1604. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1605. <xacro:property name="wheel_length" value="0.05" />
  1606. <xacro:property name="pi" value="3.14159" />
  1607. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1608. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1609. <xacro:property name="default_origin">
  1610.   <origin xyz="0 0 0" rpy="0 0 0" />
  1611. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1612. <xacro:property name="wheel_length" value="0.05" />
  1613. <xacro:property name="pi" value="3.14159" />
  1614. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1615. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1616. <xacro:property name="default_origin">
  1617.   <origin xyz="0 0 0" rpy="0 0 0" />
  1618. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1619. <xacro:property name="wheel_length" value="0.05" />
  1620. <xacro:property name="pi" value="3.14159" />
  1621. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1622. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1623. <xacro:property name="default_origin">
  1624.   <origin xyz="0 0 0" rpy="0 0 0" />
  1625. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1626. <xacro:property name="wheel_length" value="0.05" />
  1627. <xacro:property name="pi" value="3.14159" />
  1628. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1629. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1630. <xacro:property name="default_origin">
  1631.   <origin xyz="0 0 0" rpy="0 0 0" />
  1632. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1633. <xacro:property name="wheel_length" value="0.05" />
  1634. <xacro:property name="pi" value="3.14159" />
  1635. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1636. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1637. <xacro:property name="default_origin">
  1638.   <origin xyz="0 0 0" rpy="0 0 0" />
  1639. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1640. <xacro:property name="wheel_length" value="0.05" />
  1641. <xacro:property name="pi" value="3.14159" />
  1642. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1643. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1644. <xacro:property name="default_origin">
  1645.   <origin xyz="0 0 0" rpy="0 0 0" />
  1646. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1647. <xacro:property name="wheel_length" value="0.05" />
  1648. <xacro:property name="pi" value="3.14159" />
  1649. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1650. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1651. <xacro:property name="default_origin">
  1652.   <origin xyz="0 0 0" rpy="0 0 0" />
  1653. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1654. <xacro:property name="wheel_length" value="0.05" />
  1655. <xacro:property name="pi" value="3.14159" />
  1656. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1657. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1658. <xacro:property name="default_origin">
  1659.   <origin xyz="0 0 0" rpy="0 0 0" />
  1660. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1661. <xacro:property name="wheel_length" value="0.05" />
  1662. <xacro:property name="pi" value="3.14159" />
  1663. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1664. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1665. <xacro:property name="default_origin">
  1666.   <origin xyz="0 0 0" rpy="0 0 0" />
  1667. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1668. <xacro:property name="wheel_length" value="0.05" />
  1669. <xacro:property name="pi" value="3.14159" />
  1670. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1671. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1672. <xacro:property name="default_origin">
  1673.   <origin xyz="0 0 0" rpy="0 0 0" />
  1674. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1675. <xacro:property name="wheel_length" value="0.05" />
  1676. <xacro:property name="pi" value="3.14159" />
  1677. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1678. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1679. <xacro:property name="default_origin">
  1680.   <origin xyz="0 0 0" rpy="0 0 0" />
  1681. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1682. <xacro:property name="wheel_length" value="0.05" />
  1683. <xacro:property name="pi" value="3.14159" />
  1684. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1685. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1686. <xacro:property name="default_origin">
  1687.   <origin xyz="0 0 0" rpy="0 0 0" />
  1688. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1689. <xacro:property name="wheel_length" value="0.05" />
  1690. <xacro:property name="pi" value="3.14159" />
  1691. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1692. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1693. <xacro:property name="default_origin">
  1694.   <origin xyz="0 0 0" rpy="0 0 0" />
  1695. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1696. <xacro:property name="wheel_length" value="0.05" />
  1697. <xacro:property name="pi" value="3.14159" />
  1698. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1699. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1700. <xacro:property name="default_origin">
  1701.   <origin xyz="0 0 0" rpy="0 0 0" />
  1702. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1703. <xacro:property name="wheel_length" value="0.05" />
  1704. <xacro:property name="pi" value="3.14159" />
  1705. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1706. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1707. <xacro:property name="default_origin">
  1708.   <origin xyz="0 0 0" rpy="0 0 0" />
  1709. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1710. <xacro:property name="wheel_length" value="0.05" />
  1711. <xacro:property name="pi" value="3.14159" />
  1712. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1713. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1714. <xacro:property name="default_origin">
  1715.   <origin xyz="0 0 0" rpy="0 0 0" />
  1716. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1717. <xacro:property name="wheel_length" value="0.05" />
  1718. <xacro:property name="pi" value="3.14159" />
  1719. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1720. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1721. <xacro:property name="default_origin">
  1722.   <origin xyz="0 0 0" rpy="0 0 0" />
  1723. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1724. <xacro:property name="wheel_length" value="0.05" />
  1725. <xacro:property name="pi" value="3.14159" />
  1726. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1727. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1728. <xacro:property name="default_origin">
  1729.   <origin xyz="0 0 0" rpy="0 0 0" />
  1730. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1731. <xacro:property name="wheel_length" value="0.05" />
  1732. <xacro:property name="pi" value="3.14159" />
  1733. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1734. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1735. <xacro:property name="default_origin">
  1736.   <origin xyz="0 0 0" rpy="0 0 0" />
  1737. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1738. <xacro:property name="wheel_length" value="0.05" />
  1739. <xacro:property name="pi" value="3.14159" />
  1740. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1741. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1742. <xacro:property name="default_origin">
  1743.   <origin xyz="0 0 0" rpy="0 0 0" />
  1744. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1745. <xacro:property name="wheel_length" value="0.05" />
  1746. <xacro:property name="pi" value="3.14159" />
  1747. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1748. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1749. <xacro:property name="default_origin">
  1750.   <origin xyz="0 0 0" rpy="0 0 0" />
  1751. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1752. <xacro:property name="wheel_length" value="0.05" />
  1753. <xacro:property name="pi" value="3.14159" />
  1754. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1755. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1756. <xacro:property name="default_origin">
  1757.   <origin xyz="0 0 0" rpy="0 0 0" />
  1758. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1759. <xacro:property name="wheel_length" value="0.05" />
  1760. <xacro:property name="pi" value="3.14159" />
  1761. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1762. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1763. <xacro:property name="default_origin">
  1764.   <origin xyz="0 0 0" rpy="0 0 0" />
  1765. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1766. <xacro:property name="wheel_length" value="0.05" />
  1767. <xacro:property name="pi" value="3.14159" />
  1768. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1769. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1770. <xacro:property name="default_origin">
  1771.   <origin xyz="0 0 0" rpy="0 0 0" />
  1772. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1773. <xacro:property name="wheel_length" value="0.05" />
  1774. <xacro:property name="pi" value="3.14159" />
  1775. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1776. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1777. <xacro:property name="default_origin">
  1778.   <origin xyz="0 0 0" rpy="0 0 0" />
  1779. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1780. <xacro:property name="wheel_length" value="0.05" />
  1781. <xacro:property name="pi" value="3.14159" />
  1782. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1783. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1784. <xacro:property name="default_origin">
  1785.   <origin xyz="0 0 0" rpy="0 0 0" />
  1786. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1787. <xacro:property name="wheel_length" value="0.05" />
  1788. <xacro:property name="pi" value="3.14159" />
  1789. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1790. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1791. <xacro:property name="default_origin">
  1792.   <origin xyz="0 0 0" rpy="0 0 0" />
  1793. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1794. <xacro:property name="wheel_length" value="0.05" />
  1795. <xacro:property name="pi" value="3.14159" />
  1796. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1797. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1798. <xacro:property name="default_origin">
  1799.   <origin xyz="0 0 0" rpy="0 0 0" />
  1800. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1801. <xacro:property name="wheel_length" value="0.05" />
  1802. <xacro:property name="pi" value="3.14159" />
  1803. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1804. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1805. <xacro:property name="default_origin">
  1806.   <origin xyz="0 0 0" rpy="0 0 0" />
  1807. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1808. <xacro:property name="wheel_length" value="0.05" />
  1809. <xacro:property name="pi" value="3.14159" />
  1810. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1811. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1812. <xacro:property name="default_origin">
  1813.   <origin xyz="0 0 0" rpy="0 0 0" />
  1814. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1815. <xacro:property name="wheel_length" value="0.05" />
  1816. <xacro:property name="pi" value="3.14159" />
  1817. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1818. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1819. <xacro:property name="default_origin">
  1820.   <origin xyz="0 0 0" rpy="0 0 0" />
  1821. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1822. <xacro:property name="wheel_length" value="0.05" />
  1823. <xacro:property name="pi" value="3.14159" />
  1824. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1825. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1826. <xacro:property name="default_origin">
  1827.   <origin xyz="0 0 0" rpy="0 0 0" />
  1828. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1829. <xacro:property name="wheel_length" value="0.05" />
  1830. <xacro:property name="pi" value="3.14159" />
  1831. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1832. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1833. <xacro:property name="default_origin">
  1834.   <origin xyz="0 0 0" rpy="0 0 0" />
  1835. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1836. <xacro:property name="wheel_length" value="0.05" />
  1837. <xacro:property name="pi" value="3.14159" />
  1838. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1839. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1840. <xacro:property name="default_origin">
  1841.   <origin xyz="0 0 0" rpy="0 0 0" />
  1842. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1843. <xacro:property name="wheel_length" value="0.05" />
  1844. <xacro:property name="pi" value="3.14159" />
  1845. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1846. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1847. <xacro:property name="default_origin">
  1848.   <origin xyz="0 0 0" rpy="0 0 0" />
  1849. </xacro:property>Gazebo/Gray<xacro:property name="wheel_radius" value="0.1" />
  1850. <xacro:property name="wheel_length" value="0.05" />
  1851. <xacro:property name="pi" value="3.14159" />
  1852. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1853. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1854. <xacro:property name="default_origin">
  1855.   <origin xyz="0 0 0" rpy="0 0 0" />
  1856. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1857. <xacro:property name="wheel_length" value="0.05" />
  1858. <xacro:property name="pi" value="3.14159" />
  1859. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1860. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1861. <xacro:property name="default_origin">
  1862.   <origin xyz="0 0 0" rpy="0 0 0" />
  1863. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1864. <xacro:property name="wheel_length" value="0.05" />
  1865. <xacro:property name="pi" value="3.14159" />
  1866. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1867. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1868. <xacro:property name="default_origin">
  1869.   <origin xyz="0 0 0" rpy="0 0 0" />
  1870. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1871. <xacro:property name="wheel_length" value="0.05" />
  1872. <xacro:property name="pi" value="3.14159" />
  1873. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1874. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1875. <xacro:property name="default_origin">
  1876.   <origin xyz="0 0 0" rpy="0 0 0" />
  1877. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1878. <xacro:property name="wheel_length" value="0.05" />
  1879. <xacro:property name="pi" value="3.14159" />
  1880. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1881. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1882. <xacro:property name="default_origin">
  1883.   <origin xyz="0 0 0" rpy="0 0 0" />
  1884. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1885. <xacro:property name="wheel_length" value="0.05" />
  1886. <xacro:property name="pi" value="3.14159" />
  1887. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1888. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1889. <xacro:property name="default_origin">
  1890.   <origin xyz="0 0 0" rpy="0 0 0" />
  1891. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1892. <xacro:property name="wheel_length" value="0.05" />
  1893. <xacro:property name="pi" value="3.14159" />
  1894. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1895. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1896. <xacro:property name="default_origin">
  1897.   <origin xyz="0 0 0" rpy="0 0 0" />
  1898. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1899. <xacro:property name="wheel_length" value="0.05" />
  1900. <xacro:property name="pi" value="3.14159" />
  1901. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1902. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1903. <xacro:property name="default_origin">
  1904.   <origin xyz="0 0 0" rpy="0 0 0" />
  1905. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1906. <xacro:property name="wheel_length" value="0.05" />
  1907. <xacro:property name="pi" value="3.14159" />
  1908. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1909. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1910. <xacro:property name="default_origin">
  1911.   <origin xyz="0 0 0" rpy="0 0 0" />
  1912. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1913. <xacro:property name="wheel_length" value="0.05" />
  1914. <xacro:property name="pi" value="3.14159" />
  1915. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1916. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1917. <xacro:property name="default_origin">
  1918.   <origin xyz="0 0 0" rpy="0 0 0" />
  1919. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1920. <xacro:property name="wheel_length" value="0.05" />
  1921. <xacro:property name="pi" value="3.14159" />
  1922. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1923. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1924. <xacro:property name="default_origin">
  1925.   <origin xyz="0 0 0" rpy="0 0 0" />
  1926. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1927. <xacro:property name="wheel_length" value="0.05" />
  1928. <xacro:property name="pi" value="3.14159" />
  1929. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1930. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1931. <xacro:property name="default_origin">
  1932.   <origin xyz="0 0 0" rpy="0 0 0" />
  1933. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1934. <xacro:property name="wheel_length" value="0.05" />
  1935. <xacro:property name="pi" value="3.14159" />
  1936. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1937. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1938. <xacro:property name="default_origin">
  1939.   <origin xyz="0 0 0" rpy="0 0 0" />
  1940. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1941. <xacro:property name="wheel_length" value="0.05" />
  1942. <xacro:property name="pi" value="3.14159" />
  1943. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1944. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1945. <xacro:property name="default_origin">
  1946.   <origin xyz="0 0 0" rpy="0 0 0" />
  1947. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1948. <xacro:property name="wheel_length" value="0.05" />
  1949. <xacro:property name="pi" value="3.14159" />
  1950. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1951. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1952. <xacro:property name="default_origin">
  1953.   <origin xyz="0 0 0" rpy="0 0 0" />
  1954. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1955. <xacro:property name="wheel_length" value="0.05" />
  1956. <xacro:property name="pi" value="3.14159" />
  1957. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1958. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1959. <xacro:property name="default_origin">
  1960.   <origin xyz="0 0 0" rpy="0 0 0" />
  1961. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1962. <xacro:property name="wheel_length" value="0.05" />
  1963. <xacro:property name="pi" value="3.14159" />
  1964. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1965. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1966. <xacro:property name="default_origin">
  1967.   <origin xyz="0 0 0" rpy="0 0 0" />
  1968. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1969. <xacro:property name="wheel_length" value="0.05" />
  1970. <xacro:property name="pi" value="3.14159" />
  1971. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1972. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1973. <xacro:property name="default_origin">
  1974.   <origin xyz="0 0 0" rpy="0 0 0" />
  1975. </xacro:property>transmission_interface/SimpleTransmission<xacro:property name="wheel_radius" value="0.1" />
  1976. <xacro:property name="wheel_length" value="0.05" />
  1977. <xacro:property name="pi" value="3.14159" />
  1978. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1979. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1980. <xacro:property name="default_origin">
  1981.   <origin xyz="0 0 0" rpy="0 0 0" />
  1982. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1983. <xacro:property name="wheel_length" value="0.05" />
  1984. <xacro:property name="pi" value="3.14159" />
  1985. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1986. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1987. <xacro:property name="default_origin">
  1988.   <origin xyz="0 0 0" rpy="0 0 0" />
  1989. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1990. <xacro:property name="wheel_length" value="0.05" />
  1991. <xacro:property name="pi" value="3.14159" />
  1992. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  1993. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  1994. <xacro:property name="default_origin">
  1995.   <origin xyz="0 0 0" rpy="0 0 0" />
  1996. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  1997. <xacro:property name="wheel_length" value="0.05" />
  1998. <xacro:property name="pi" value="3.14159" />
  1999. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2000. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2001. <xacro:property name="default_origin">
  2002.   <origin xyz="0 0 0" rpy="0 0 0" />
  2003. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2004. <xacro:property name="wheel_length" value="0.05" />
  2005. <xacro:property name="pi" value="3.14159" />
  2006. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2007. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2008. <xacro:property name="default_origin">
  2009.   <origin xyz="0 0 0" rpy="0 0 0" />
  2010. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2011. <xacro:property name="wheel_length" value="0.05" />
  2012. <xacro:property name="pi" value="3.14159" />
  2013. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2014. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2015. <xacro:property name="default_origin">
  2016.   <origin xyz="0 0 0" rpy="0 0 0" />
  2017. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2018. <xacro:property name="wheel_length" value="0.05" />
  2019. <xacro:property name="pi" value="3.14159" />
  2020. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2021. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2022. <xacro:property name="default_origin">
  2023.   <origin xyz="0 0 0" rpy="0 0 0" />
  2024. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2025. <xacro:property name="wheel_length" value="0.05" />
  2026. <xacro:property name="pi" value="3.14159" />
  2027. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2028. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2029. <xacro:property name="default_origin">
  2030.   <origin xyz="0 0 0" rpy="0 0 0" />
  2031. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2032. <xacro:property name="wheel_length" value="0.05" />
  2033. <xacro:property name="pi" value="3.14159" />
  2034. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2035. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2036. <xacro:property name="default_origin">
  2037.   <origin xyz="0 0 0" rpy="0 0 0" />
  2038. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2039. <xacro:property name="wheel_length" value="0.05" />
  2040. <xacro:property name="pi" value="3.14159" />
  2041. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2042. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2043. <xacro:property name="default_origin">
  2044.   <origin xyz="0 0 0" rpy="0 0 0" />
  2045. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2046. <xacro:property name="wheel_length" value="0.05" />
  2047. <xacro:property name="pi" value="3.14159" />
  2048. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2049. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2050. <xacro:property name="default_origin">
  2051.   <origin xyz="0 0 0" rpy="0 0 0" />
  2052. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2053. <xacro:property name="wheel_length" value="0.05" />
  2054. <xacro:property name="pi" value="3.14159" />
  2055. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2056. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2057. <xacro:property name="default_origin">
  2058.   <origin xyz="0 0 0" rpy="0 0 0" />
  2059. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2060. <xacro:property name="wheel_length" value="0.05" />
  2061. <xacro:property name="pi" value="3.14159" />
  2062. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2063. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2064. <xacro:property name="default_origin">
  2065.   <origin xyz="0 0 0" rpy="0 0 0" />
  2066. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2067. <xacro:property name="wheel_length" value="0.05" />
  2068. <xacro:property name="pi" value="3.14159" />
  2069. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2070. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2071. <xacro:property name="default_origin">
  2072.   <origin xyz="0 0 0" rpy="0 0 0" />
  2073. </xacro:property>hardware_interface/VelocityJointInterface<xacro:property name="wheel_radius" value="0.1" />
  2074. <xacro:property name="wheel_length" value="0.05" />
  2075. <xacro:property name="pi" value="3.14159" />
  2076. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2077. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2078. <xacro:property name="default_origin">
  2079.   <origin xyz="0 0 0" rpy="0 0 0" />
  2080. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2081. <xacro:property name="wheel_length" value="0.05" />
  2082. <xacro:property name="pi" value="3.14159" />
  2083. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2084. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2085. <xacro:property name="default_origin">
  2086.   <origin xyz="0 0 0" rpy="0 0 0" />
  2087. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2088. <xacro:property name="wheel_length" value="0.05" />
  2089. <xacro:property name="pi" value="3.14159" />
  2090. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2091. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2092. <xacro:property name="default_origin">
  2093.   <origin xyz="0 0 0" rpy="0 0 0" />
  2094. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2095. <xacro:property name="wheel_length" value="0.05" />
  2096. <xacro:property name="pi" value="3.14159" />
  2097. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2098. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2099. <xacro:property name="default_origin">
  2100.   <origin xyz="0 0 0" rpy="0 0 0" />
  2101. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2102. <xacro:property name="wheel_length" value="0.05" />
  2103. <xacro:property name="pi" value="3.14159" />
  2104. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2105. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2106. <xacro:property name="default_origin">
  2107.   <origin xyz="0 0 0" rpy="0 0 0" />
  2108. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2109. <xacro:property name="wheel_length" value="0.05" />
  2110. <xacro:property name="pi" value="3.14159" />
  2111. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2112. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2113. <xacro:property name="default_origin">
  2114.   <origin xyz="0 0 0" rpy="0 0 0" />
  2115. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2116. <xacro:property name="wheel_length" value="0.05" />
  2117. <xacro:property name="pi" value="3.14159" />
  2118. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2119. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2120. <xacro:property name="default_origin">
  2121.   <origin xyz="0 0 0" rpy="0 0 0" />
  2122. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2123. <xacro:property name="wheel_length" value="0.05" />
  2124. <xacro:property name="pi" value="3.14159" />
  2125. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2126. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2127. <xacro:property name="default_origin">
  2128.   <origin xyz="0 0 0" rpy="0 0 0" />
  2129. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2130. <xacro:property name="wheel_length" value="0.05" />
  2131. <xacro:property name="pi" value="3.14159" />
  2132. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2133. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2134. <xacro:property name="default_origin">
  2135.   <origin xyz="0 0 0" rpy="0 0 0" />
  2136. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2137. <xacro:property name="wheel_length" value="0.05" />
  2138. <xacro:property name="pi" value="3.14159" />
  2139. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2140. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2141. <xacro:property name="default_origin">
  2142.   <origin xyz="0 0 0" rpy="0 0 0" />
  2143. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2144. <xacro:property name="wheel_length" value="0.05" />
  2145. <xacro:property name="pi" value="3.14159" />
  2146. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2147. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2148. <xacro:property name="default_origin">
  2149.   <origin xyz="0 0 0" rpy="0 0 0" />
  2150. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2151. <xacro:property name="wheel_length" value="0.05" />
  2152. <xacro:property name="pi" value="3.14159" />
  2153. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2154. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2155. <xacro:property name="default_origin">
  2156.   <origin xyz="0 0 0" rpy="0 0 0" />
  2157. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2158. <xacro:property name="wheel_length" value="0.05" />
  2159. <xacro:property name="pi" value="3.14159" />
  2160. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2161. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2162. <xacro:property name="default_origin">
  2163.   <origin xyz="0 0 0" rpy="0 0 0" />
  2164. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2165. <xacro:property name="wheel_length" value="0.05" />
  2166. <xacro:property name="pi" value="3.14159" />
  2167. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2168. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2169. <xacro:property name="default_origin">
  2170.   <origin xyz="0 0 0" rpy="0 0 0" />
  2171. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2172. <xacro:property name="wheel_length" value="0.05" />
  2173. <xacro:property name="pi" value="3.14159" />
  2174. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2175. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2176. <xacro:property name="default_origin">
  2177.   <origin xyz="0 0 0" rpy="0 0 0" />
  2178. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2179. <xacro:property name="wheel_length" value="0.05" />
  2180. <xacro:property name="pi" value="3.14159" />
  2181. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2182. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2183. <xacro:property name="default_origin">
  2184.   <origin xyz="0 0 0" rpy="0 0 0" />
  2185. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2186. <xacro:property name="wheel_length" value="0.05" />
  2187. <xacro:property name="pi" value="3.14159" />
  2188. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2189. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2190. <xacro:property name="default_origin">
  2191.   <origin xyz="0 0 0" rpy="0 0 0" />
  2192. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2193. <xacro:property name="wheel_length" value="0.05" />
  2194. <xacro:property name="pi" value="3.14159" />
  2195. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2196. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2197. <xacro:property name="default_origin">
  2198.   <origin xyz="0 0 0" rpy="0 0 0" />
  2199. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2200. <xacro:property name="wheel_length" value="0.05" />
  2201. <xacro:property name="pi" value="3.14159" />
  2202. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2203. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2204. <xacro:property name="default_origin">
  2205.   <origin xyz="0 0 0" rpy="0 0 0" />
  2206. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2207. <xacro:property name="wheel_length" value="0.05" />
  2208. <xacro:property name="pi" value="3.14159" />
  2209. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2210. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2211. <xacro:property name="default_origin">
  2212.   <origin xyz="0 0 0" rpy="0 0 0" />
  2213. </xacro:property>hardware_interface/VelocityJointInterface<xacro:property name="wheel_radius" value="0.1" />
  2214. <xacro:property name="wheel_length" value="0.05" />
  2215. <xacro:property name="pi" value="3.14159" />
  2216. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2217. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2218. <xacro:property name="default_origin">
  2219.   <origin xyz="0 0 0" rpy="0 0 0" />
  2220. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2221. <xacro:property name="wheel_length" value="0.05" />
  2222. <xacro:property name="pi" value="3.14159" />
  2223. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2224. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2225. <xacro:property name="default_origin">
  2226.   <origin xyz="0 0 0" rpy="0 0 0" />
  2227. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2228. <xacro:property name="wheel_length" value="0.05" />
  2229. <xacro:property name="pi" value="3.14159" />
  2230. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2231. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2232. <xacro:property name="default_origin">
  2233.   <origin xyz="0 0 0" rpy="0 0 0" />
  2234. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2235. <xacro:property name="wheel_length" value="0.05" />
  2236. <xacro:property name="pi" value="3.14159" />
  2237. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2238. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2239. <xacro:property name="default_origin">
  2240.   <origin xyz="0 0 0" rpy="0 0 0" />
  2241. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2242. <xacro:property name="wheel_length" value="0.05" />
  2243. <xacro:property name="pi" value="3.14159" />
  2244. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2245. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2246. <xacro:property name="default_origin">
  2247.   <origin xyz="0 0 0" rpy="0 0 0" />
  2248. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2249. <xacro:property name="wheel_length" value="0.05" />
  2250. <xacro:property name="pi" value="3.14159" />
  2251. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2252. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2253. <xacro:property name="default_origin">
  2254.   <origin xyz="0 0 0" rpy="0 0 0" />
  2255. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2256. <xacro:property name="wheel_length" value="0.05" />
  2257. <xacro:property name="pi" value="3.14159" />
  2258. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2259. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2260. <xacro:property name="default_origin">
  2261.   <origin xyz="0 0 0" rpy="0 0 0" />
  2262. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2263. <xacro:property name="wheel_length" value="0.05" />
  2264. <xacro:property name="pi" value="3.14159" />
  2265. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2266. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2267. <xacro:property name="default_origin">
  2268.   <origin xyz="0 0 0" rpy="0 0 0" />
  2269. </xacro:property>1<xacro:property name="wheel_radius" value="0.1" />
  2270. <xacro:property name="wheel_length" value="0.05" />
  2271. <xacro:property name="pi" value="3.14159" />
  2272. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2273. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2274. <xacro:property name="default_origin">
  2275.   <origin xyz="0 0 0" rpy="0 0 0" />
  2276. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2277. <xacro:property name="wheel_length" value="0.05" />
  2278. <xacro:property name="pi" value="3.14159" />
  2279. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2280. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2281. <xacro:property name="default_origin">
  2282.   <origin xyz="0 0 0" rpy="0 0 0" />
  2283. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2284. <xacro:property name="wheel_length" value="0.05" />
  2285. <xacro:property name="pi" value="3.14159" />
  2286. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2287. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2288. <xacro:property name="default_origin">
  2289.   <origin xyz="0 0 0" rpy="0 0 0" />
  2290. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2291. <xacro:property name="wheel_length" value="0.05" />
  2292. <xacro:property name="pi" value="3.14159" />
  2293. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2294. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2295. <xacro:property name="default_origin">
  2296.   <origin xyz="0 0 0" rpy="0 0 0" />
  2297. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2298. <xacro:property name="wheel_length" value="0.05" />
  2299. <xacro:property name="pi" value="3.14159" />
  2300. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2301. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2302. <xacro:property name="default_origin">
  2303.   <origin xyz="0 0 0" rpy="0 0 0" />
  2304. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2305. <xacro:property name="wheel_length" value="0.05" />
  2306. <xacro:property name="pi" value="3.14159" />
  2307. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2308. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2309. <xacro:property name="default_origin">
  2310.   <origin xyz="0 0 0" rpy="0 0 0" />
  2311. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2312. <xacro:property name="wheel_length" value="0.05" />
  2313. <xacro:property name="pi" value="3.14159" />
  2314. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2315. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2316. <xacro:property name="default_origin">
  2317.   <origin xyz="0 0 0" rpy="0 0 0" />
  2318. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2319. <xacro:property name="wheel_length" value="0.05" />
  2320. <xacro:property name="pi" value="3.14159" />
  2321. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2322. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2323. <xacro:property name="default_origin">
  2324.   <origin xyz="0 0 0" rpy="0 0 0" />
  2325. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2326. <xacro:property name="wheel_length" value="0.05" />
  2327. <xacro:property name="pi" value="3.14159" />
  2328. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2329. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2330. <xacro:property name="default_origin">
  2331.   <origin xyz="0 0 0" rpy="0 0 0" />
  2332. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2333. <xacro:property name="wheel_length" value="0.05" />
  2334. <xacro:property name="pi" value="3.14159" />
  2335. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2336. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2337. <xacro:property name="default_origin">
  2338.   <origin xyz="0 0 0" rpy="0 0 0" />
  2339. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2340. <xacro:property name="wheel_length" value="0.05" />
  2341. <xacro:property name="pi" value="3.14159" />
  2342. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2343. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2344. <xacro:property name="default_origin">
  2345.   <origin xyz="0 0 0" rpy="0 0 0" />
  2346. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2347. <xacro:property name="wheel_length" value="0.05" />
  2348. <xacro:property name="pi" value="3.14159" />
  2349. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2350. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2351. <xacro:property name="default_origin">
  2352.   <origin xyz="0 0 0" rpy="0 0 0" />
  2353. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2354. <xacro:property name="wheel_length" value="0.05" />
  2355. <xacro:property name="pi" value="3.14159" />
  2356. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2357. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2358. <xacro:property name="default_origin">
  2359.   <origin xyz="0 0 0" rpy="0 0 0" />
  2360. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2361. <xacro:property name="wheel_length" value="0.05" />
  2362. <xacro:property name="pi" value="3.14159" />
  2363. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2364. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2365. <xacro:property name="default_origin">
  2366.   <origin xyz="0 0 0" rpy="0 0 0" />
  2367. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2368. <xacro:property name="wheel_length" value="0.05" />
  2369. <xacro:property name="pi" value="3.14159" />
  2370. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2371. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2372. <xacro:property name="default_origin">
  2373.   <origin xyz="0 0 0" rpy="0 0 0" />
  2374. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2375. <xacro:property name="wheel_length" value="0.05" />
  2376. <xacro:property name="pi" value="3.14159" />
  2377. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2378. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2379. <xacro:property name="default_origin">
  2380.   <origin xyz="0 0 0" rpy="0 0 0" />
  2381. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2382. <xacro:property name="wheel_length" value="0.05" />
  2383. <xacro:property name="pi" value="3.14159" />
  2384. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2385. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2386. <xacro:property name="default_origin">
  2387.   <origin xyz="0 0 0" rpy="0 0 0" />
  2388. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2389. <xacro:property name="wheel_length" value="0.05" />
  2390. <xacro:property name="pi" value="3.14159" />
  2391. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2392. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2393. <xacro:property name="default_origin">
  2394.   <origin xyz="0 0 0" rpy="0 0 0" />
  2395. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2396. <xacro:property name="wheel_length" value="0.05" />
  2397. <xacro:property name="pi" value="3.14159" />
  2398. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2399. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2400. <xacro:property name="default_origin">
  2401.   <origin xyz="0 0 0" rpy="0 0 0" />
  2402. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2403. <xacro:property name="wheel_length" value="0.05" />
  2404. <xacro:property name="pi" value="3.14159" />
  2405. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2406. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2407. <xacro:property name="default_origin">
  2408.   <origin xyz="0 0 0" rpy="0 0 0" />
  2409. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2410. <xacro:property name="wheel_length" value="0.05" />
  2411. <xacro:property name="pi" value="3.14159" />
  2412. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2413. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2414. <xacro:property name="default_origin">
  2415.   <origin xyz="0 0 0" rpy="0 0 0" />
  2416. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2417. <xacro:property name="wheel_length" value="0.05" />
  2418. <xacro:property name="pi" value="3.14159" />
  2419. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2420. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2421. <xacro:property name="default_origin">
  2422.   <origin xyz="0 0 0" rpy="0 0 0" />
  2423. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2424. <xacro:property name="wheel_length" value="0.05" />
  2425. <xacro:property name="pi" value="3.14159" />
  2426. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2427. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2428. <xacro:property name="default_origin">
  2429.   <origin xyz="0 0 0" rpy="0 0 0" />
  2430. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2431. <xacro:property name="wheel_length" value="0.05" />
  2432. <xacro:property name="pi" value="3.14159" />
  2433. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2434. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2435. <xacro:property name="default_origin">
  2436.   <origin xyz="0 0 0" rpy="0 0 0" />
  2437. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2438. <xacro:property name="wheel_length" value="0.05" />
  2439. <xacro:property name="pi" value="3.14159" />
  2440. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2441. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2442. <xacro:property name="default_origin">
  2443.   <origin xyz="0 0 0" rpy="0 0 0" />
  2444. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2445. <xacro:property name="wheel_length" value="0.05" />
  2446. <xacro:property name="pi" value="3.14159" />
  2447. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2448. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2449. <xacro:property name="default_origin">
  2450.   <origin xyz="0 0 0" rpy="0 0 0" />
  2451. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2452. <xacro:property name="wheel_length" value="0.05" />
  2453. <xacro:property name="pi" value="3.14159" />
  2454. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2455. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2456. <xacro:property name="default_origin">
  2457.   <origin xyz="0 0 0" rpy="0 0 0" />
  2458. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2459. <xacro:property name="wheel_length" value="0.05" />
  2460. <xacro:property name="pi" value="3.14159" />
  2461. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2462. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2463. <xacro:property name="default_origin">
  2464.   <origin xyz="0 0 0" rpy="0 0 0" />
  2465. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2466. <xacro:property name="wheel_length" value="0.05" />
  2467. <xacro:property name="pi" value="3.14159" />
  2468. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2469. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2470. <xacro:property name="default_origin">
  2471.   <origin xyz="0 0 0" rpy="0 0 0" />
  2472. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2473. <xacro:property name="wheel_length" value="0.05" />
  2474. <xacro:property name="pi" value="3.14159" />
  2475. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2476. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2477. <xacro:property name="default_origin">
  2478.   <origin xyz="0 0 0" rpy="0 0 0" />
  2479. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2480. <xacro:property name="wheel_length" value="0.05" />
  2481. <xacro:property name="pi" value="3.14159" />
  2482. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2483. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2484. <xacro:property name="default_origin">
  2485.   <origin xyz="0 0 0" rpy="0 0 0" />
  2486. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2487. <xacro:property name="wheel_length" value="0.05" />
  2488. <xacro:property name="pi" value="3.14159" />
  2489. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2490. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2491. <xacro:property name="default_origin">
  2492.   <origin xyz="0 0 0" rpy="0 0 0" />
  2493. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2494. <xacro:property name="wheel_length" value="0.05" />
  2495. <xacro:property name="pi" value="3.14159" />
  2496. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2497. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2498. <xacro:property name="default_origin">
  2499.   <origin xyz="0 0 0" rpy="0 0 0" />
  2500. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2501. <xacro:property name="wheel_length" value="0.05" />
  2502. <xacro:property name="pi" value="3.14159" />
  2503. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2504. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2505. <xacro:property name="default_origin">
  2506.   <origin xyz="0 0 0" rpy="0 0 0" />
  2507. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2508. <xacro:property name="wheel_length" value="0.05" />
  2509. <xacro:property name="pi" value="3.14159" />
  2510. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2511. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2512. <xacro:property name="default_origin">
  2513.   <origin xyz="0 0 0" rpy="0 0 0" />
  2514. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2515. <xacro:property name="wheel_length" value="0.05" />
  2516. <xacro:property name="pi" value="3.14159" />
  2517. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2518. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2519. <xacro:property name="default_origin">
  2520.   <origin xyz="0 0 0" rpy="0 0 0" />
  2521. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2522. <xacro:property name="wheel_length" value="0.05" />
  2523. <xacro:property name="pi" value="3.14159" />
  2524. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2525. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2526. <xacro:property name="default_origin">
  2527.   <origin xyz="0 0 0" rpy="0 0 0" />
  2528. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2529. <xacro:property name="wheel_length" value="0.05" />
  2530. <xacro:property name="pi" value="3.14159" />
  2531. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2532. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2533. <xacro:property name="default_origin">
  2534.   <origin xyz="0 0 0" rpy="0 0 0" />
  2535. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2536. <xacro:property name="wheel_length" value="0.05" />
  2537. <xacro:property name="pi" value="3.14159" />
  2538. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2539. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2540. <xacro:property name="default_origin">
  2541.   <origin xyz="0 0 0" rpy="0 0 0" />
  2542. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2543. <xacro:property name="wheel_length" value="0.05" />
  2544. <xacro:property name="pi" value="3.14159" />
  2545. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2546. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2547. <xacro:property name="default_origin">
  2548.   <origin xyz="0 0 0" rpy="0 0 0" />
  2549. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2550. <xacro:property name="wheel_length" value="0.05" />
  2551. <xacro:property name="pi" value="3.14159" />
  2552. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2553. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2554. <xacro:property name="default_origin">
  2555.   <origin xyz="0 0 0" rpy="0 0 0" />
  2556. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2557. <xacro:property name="wheel_length" value="0.05" />
  2558. <xacro:property name="pi" value="3.14159" />
  2559. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2560. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2561. <xacro:property name="default_origin">
  2562.   <origin xyz="0 0 0" rpy="0 0 0" />
  2563. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2564. <xacro:property name="wheel_length" value="0.05" />
  2565. <xacro:property name="pi" value="3.14159" />
  2566. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2567. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2568. <xacro:property name="default_origin">
  2569.   <origin xyz="0 0 0" rpy="0 0 0" />
  2570. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2571. <xacro:property name="wheel_length" value="0.05" />
  2572. <xacro:property name="pi" value="3.14159" />
  2573. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2574. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2575. <xacro:property name="default_origin">
  2576.   <origin xyz="0 0 0" rpy="0 0 0" />
  2577. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2578. <xacro:property name="wheel_length" value="0.05" />
  2579. <xacro:property name="pi" value="3.14159" />
  2580. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2581. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2582. <xacro:property name="default_origin">
  2583.   <origin xyz="0 0 0" rpy="0 0 0" />
  2584. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2585. <xacro:property name="wheel_length" value="0.05" />
  2586. <xacro:property name="pi" value="3.14159" />
  2587. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2588. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2589. <xacro:property name="default_origin">
  2590.   <origin xyz="0 0 0" rpy="0 0 0" />
  2591. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2592. <xacro:property name="wheel_length" value="0.05" />
  2593. <xacro:property name="pi" value="3.14159" />
  2594. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2595. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2596. <xacro:property name="default_origin">
  2597.   <origin xyz="0 0 0" rpy="0 0 0" />
  2598. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2599. <xacro:property name="wheel_length" value="0.05" />
  2600. <xacro:property name="pi" value="3.14159" />
  2601. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2602. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2603. <xacro:property name="default_origin">
  2604.   <origin xyz="0 0 0" rpy="0 0 0" />
  2605. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2606. <xacro:property name="wheel_length" value="0.05" />
  2607. <xacro:property name="pi" value="3.14159" />
  2608. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2609. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2610. <xacro:property name="default_origin">
  2611.   <origin xyz="0 0 0" rpy="0 0 0" />
  2612. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2613. <xacro:property name="wheel_length" value="0.05" />
  2614. <xacro:property name="pi" value="3.14159" />
  2615. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2616. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2617. <xacro:property name="default_origin">
  2618.   <origin xyz="0 0 0" rpy="0 0 0" />
  2619. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2620. <xacro:property name="wheel_length" value="0.05" />
  2621. <xacro:property name="pi" value="3.14159" />
  2622. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2623. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2624. <xacro:property name="default_origin">
  2625.   <origin xyz="0 0 0" rpy="0 0 0" />
  2626. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2627. <xacro:property name="wheel_length" value="0.05" />
  2628. <xacro:property name="pi" value="3.14159" />
  2629. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2630. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2631. <xacro:property name="default_origin">
  2632.   <origin xyz="0 0 0" rpy="0 0 0" />
  2633. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2634. <xacro:property name="wheel_length" value="0.05" />
  2635. <xacro:property name="pi" value="3.14159" />
  2636. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2637. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2638. <xacro:property name="default_origin">
  2639.   <origin xyz="0 0 0" rpy="0 0 0" />
  2640. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2641. <xacro:property name="wheel_length" value="0.05" />
  2642. <xacro:property name="pi" value="3.14159" />
  2643. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2644. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2645. <xacro:property name="default_origin">
  2646.   <origin xyz="0 0 0" rpy="0 0 0" />
  2647. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2648. <xacro:property name="wheel_length" value="0.05" />
  2649. <xacro:property name="pi" value="3.14159" />
  2650. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2651. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2652. <xacro:property name="default_origin">
  2653.   <origin xyz="0 0 0" rpy="0 0 0" />
  2654. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2655. <xacro:property name="wheel_length" value="0.05" />
  2656. <xacro:property name="pi" value="3.14159" />
  2657. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2658. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2659. <xacro:property name="default_origin">
  2660.   <origin xyz="0 0 0" rpy="0 0 0" />
  2661. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2662. <xacro:property name="wheel_length" value="0.05" />
  2663. <xacro:property name="pi" value="3.14159" />
  2664. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2665. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2666. <xacro:property name="default_origin">
  2667.   <origin xyz="0 0 0" rpy="0 0 0" />
  2668. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2669. <xacro:property name="wheel_length" value="0.05" />
  2670. <xacro:property name="pi" value="3.14159" />
  2671. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2672. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2673. <xacro:property name="default_origin">
  2674.   <origin xyz="0 0 0" rpy="0 0 0" />
  2675. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2676. <xacro:property name="wheel_length" value="0.05" />
  2677. <xacro:property name="pi" value="3.14159" />
  2678. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2679. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2680. <xacro:property name="default_origin">
  2681.   <origin xyz="0 0 0" rpy="0 0 0" />
  2682. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2683. <xacro:property name="wheel_length" value="0.05" />
  2684. <xacro:property name="pi" value="3.14159" />
  2685. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2686. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2687. <xacro:property name="default_origin">
  2688.   <origin xyz="0 0 0" rpy="0 0 0" />
  2689. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2690. <xacro:property name="wheel_length" value="0.05" />
  2691. <xacro:property name="pi" value="3.14159" />
  2692. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2693. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2694. <xacro:property name="default_origin">
  2695.   <origin xyz="0 0 0" rpy="0 0 0" />
  2696. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2697. <xacro:property name="wheel_length" value="0.05" />
  2698. <xacro:property name="pi" value="3.14159" />
  2699. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2700. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2701. <xacro:property name="default_origin">
  2702.   <origin xyz="0 0 0" rpy="0 0 0" />
  2703. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2704. <xacro:property name="wheel_length" value="0.05" />
  2705. <xacro:property name="pi" value="3.14159" />
  2706. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2707. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2708. <xacro:property name="default_origin">
  2709.   <origin xyz="0 0 0" rpy="0 0 0" />
  2710. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2711. <xacro:property name="wheel_length" value="0.05" />
  2712. <xacro:property name="pi" value="3.14159" />
  2713. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2714. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2715. <xacro:property name="default_origin">
  2716.   <origin xyz="0 0 0" rpy="0 0 0" />
  2717. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2718. <xacro:property name="wheel_length" value="0.05" />
  2719. <xacro:property name="pi" value="3.14159" />
  2720. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2721. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2722. <xacro:property name="default_origin">
  2723.   <origin xyz="0 0 0" rpy="0 0 0" />
  2724. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2725. <xacro:property name="wheel_length" value="0.05" />
  2726. <xacro:property name="pi" value="3.14159" />
  2727. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2728. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2729. <xacro:property name="default_origin">
  2730.   <origin xyz="0 0 0" rpy="0 0 0" />
  2731. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2732. <xacro:property name="wheel_length" value="0.05" />
  2733. <xacro:property name="pi" value="3.14159" />
  2734. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2735. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2736. <xacro:property name="default_origin">
  2737.   <origin xyz="0 0 0" rpy="0 0 0" />
  2738. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2739. <xacro:property name="wheel_length" value="0.05" />
  2740. <xacro:property name="pi" value="3.14159" />
  2741. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2742. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2743. <xacro:property name="default_origin">
  2744.   <origin xyz="0 0 0" rpy="0 0 0" />
  2745. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2746. <xacro:property name="wheel_length" value="0.05" />
  2747. <xacro:property name="pi" value="3.14159" />
  2748. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2749. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2750. <xacro:property name="default_origin">
  2751.   <origin xyz="0 0 0" rpy="0 0 0" />
  2752. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2753. <xacro:property name="wheel_length" value="0.05" />
  2754. <xacro:property name="pi" value="3.14159" />
  2755. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2756. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2757. <xacro:property name="default_origin">
  2758.   <origin xyz="0 0 0" rpy="0 0 0" />
  2759. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2760. <xacro:property name="wheel_length" value="0.05" />
  2761. <xacro:property name="pi" value="3.14159" />
  2762. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2763. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2764. <xacro:property name="default_origin">
  2765.   <origin xyz="0 0 0" rpy="0 0 0" />
  2766. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2767. <xacro:property name="wheel_length" value="0.05" />
  2768. <xacro:property name="pi" value="3.14159" />
  2769. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2770. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2771. <xacro:property name="default_origin">
  2772.   <origin xyz="0 0 0" rpy="0 0 0" />
  2773. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2774. <xacro:property name="wheel_length" value="0.05" />
  2775. <xacro:property name="pi" value="3.14159" />
  2776. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2777. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2778. <xacro:property name="default_origin">
  2779.   <origin xyz="0 0 0" rpy="0 0 0" />
  2780. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2781. <xacro:property name="wheel_length" value="0.05" />
  2782. <xacro:property name="pi" value="3.14159" />
  2783. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2784. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2785. <xacro:property name="default_origin">
  2786.   <origin xyz="0 0 0" rpy="0 0 0" />
  2787. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2788. <xacro:property name="wheel_length" value="0.05" />
  2789. <xacro:property name="pi" value="3.14159" />
  2790. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2791. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2792. <xacro:property name="default_origin">
  2793.   <origin xyz="0 0 0" rpy="0 0 0" />
  2794. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2795. <xacro:property name="wheel_length" value="0.05" />
  2796. <xacro:property name="pi" value="3.14159" />
  2797. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2798. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2799. <xacro:property name="default_origin">
  2800.   <origin xyz="0 0 0" rpy="0 0 0" />
  2801. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2802. <xacro:property name="wheel_length" value="0.05" />
  2803. <xacro:property name="pi" value="3.14159" />
  2804. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2805. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2806. <xacro:property name="default_origin">
  2807.   <origin xyz="0 0 0" rpy="0 0 0" />
  2808. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2809. <xacro:property name="wheel_length" value="0.05" />
  2810. <xacro:property name="pi" value="3.14159" />
  2811. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2812. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2813. <xacro:property name="default_origin">
  2814.   <origin xyz="0 0 0" rpy="0 0 0" />
  2815. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2816. <xacro:property name="wheel_length" value="0.05" />
  2817. <xacro:property name="pi" value="3.14159" />
  2818. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2819. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2820. <xacro:property name="default_origin">
  2821.   <origin xyz="0 0 0" rpy="0 0 0" />
  2822. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2823. <xacro:property name="wheel_length" value="0.05" />
  2824. <xacro:property name="pi" value="3.14159" />
  2825. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2826. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2827. <xacro:property name="default_origin">
  2828.   <origin xyz="0 0 0" rpy="0 0 0" />
  2829. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2830. <xacro:property name="wheel_length" value="0.05" />
  2831. <xacro:property name="pi" value="3.14159" />
  2832. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2833. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2834. <xacro:property name="default_origin">
  2835.   <origin xyz="0 0 0" rpy="0 0 0" />
  2836. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2837. <xacro:property name="wheel_length" value="0.05" />
  2838. <xacro:property name="pi" value="3.14159" />
  2839. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2840. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2841. <xacro:property name="default_origin">
  2842.   <origin xyz="0 0 0" rpy="0 0 0" />
  2843. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2844. <xacro:property name="wheel_length" value="0.05" />
  2845. <xacro:property name="pi" value="3.14159" />
  2846. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2847. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2848. <xacro:property name="default_origin">
  2849.   <origin xyz="0 0 0" rpy="0 0 0" />
  2850. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2851. <xacro:property name="wheel_length" value="0.05" />
  2852. <xacro:property name="pi" value="3.14159" />
  2853. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2854. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2855. <xacro:property name="default_origin">
  2856.   <origin xyz="0 0 0" rpy="0 0 0" />
  2857. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2858. <xacro:property name="wheel_length" value="0.05" />
  2859. <xacro:property name="pi" value="3.14159" />
  2860. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2861. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2862. <xacro:property name="default_origin">
  2863.   <origin xyz="0 0 0" rpy="0 0 0" />
  2864. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2865. <xacro:property name="wheel_length" value="0.05" />
  2866. <xacro:property name="pi" value="3.14159" />
  2867. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2868. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2869. <xacro:property name="default_origin">
  2870.   <origin xyz="0 0 0" rpy="0 0 0" />
  2871. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2872. <xacro:property name="wheel_length" value="0.05" />
  2873. <xacro:property name="pi" value="3.14159" />
  2874. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2875. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2876. <xacro:property name="default_origin">
  2877.   <origin xyz="0 0 0" rpy="0 0 0" />
  2878. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2879. <xacro:property name="wheel_length" value="0.05" />
  2880. <xacro:property name="pi" value="3.14159" />
  2881. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2882. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2883. <xacro:property name="default_origin">
  2884.   <origin xyz="0 0 0" rpy="0 0 0" />
  2885. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2886. <xacro:property name="wheel_length" value="0.05" />
  2887. <xacro:property name="pi" value="3.14159" />
  2888. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2889. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2890. <xacro:property name="default_origin">
  2891.   <origin xyz="0 0 0" rpy="0 0 0" />
  2892. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2893. <xacro:property name="wheel_length" value="0.05" />
  2894. <xacro:property name="pi" value="3.14159" />
  2895. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2896. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2897. <xacro:property name="default_origin">
  2898.   <origin xyz="0 0 0" rpy="0 0 0" />
  2899. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2900. <xacro:property name="wheel_length" value="0.05" />
  2901. <xacro:property name="pi" value="3.14159" />
  2902. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2903. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2904. <xacro:property name="default_origin">
  2905.   <origin xyz="0 0 0" rpy="0 0 0" />
  2906. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2907. <xacro:property name="wheel_length" value="0.05" />
  2908. <xacro:property name="pi" value="3.14159" />
  2909. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2910. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2911. <xacro:property name="default_origin">
  2912.   <origin xyz="0 0 0" rpy="0 0 0" />
  2913. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2914. <xacro:property name="wheel_length" value="0.05" />
  2915. <xacro:property name="pi" value="3.14159" />
  2916. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2917. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2918. <xacro:property name="default_origin">
  2919.   <origin xyz="0 0 0" rpy="0 0 0" />
  2920. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2921. <xacro:property name="wheel_length" value="0.05" />
  2922. <xacro:property name="pi" value="3.14159" />
  2923. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2924. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2925. <xacro:property name="default_origin">
  2926.   <origin xyz="0 0 0" rpy="0 0 0" />
  2927. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2928. <xacro:property name="wheel_length" value="0.05" />
  2929. <xacro:property name="pi" value="3.14159" />
  2930. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2931. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2932. <xacro:property name="default_origin">
  2933.   <origin xyz="0 0 0" rpy="0 0 0" />
  2934. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2935. <xacro:property name="wheel_length" value="0.05" />
  2936. <xacro:property name="pi" value="3.14159" />
  2937. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2938. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2939. <xacro:property name="default_origin">
  2940.   <origin xyz="0 0 0" rpy="0 0 0" />
  2941. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2942. <xacro:property name="wheel_length" value="0.05" />
  2943. <xacro:property name="pi" value="3.14159" />
  2944. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2945. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2946. <xacro:property name="default_origin">
  2947.   <origin xyz="0 0 0" rpy="0 0 0" />
  2948. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2949. <xacro:property name="wheel_length" value="0.05" />
  2950. <xacro:property name="pi" value="3.14159" />
  2951. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2952. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2953. <xacro:property name="default_origin">
  2954.   <origin xyz="0 0 0" rpy="0 0 0" />
  2955. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2956. <xacro:property name="wheel_length" value="0.05" />
  2957. <xacro:property name="pi" value="3.14159" />
  2958. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2959. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2960. <xacro:property name="default_origin">
  2961.   <origin xyz="0 0 0" rpy="0 0 0" />
  2962. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2963. <xacro:property name="wheel_length" value="0.05" />
  2964. <xacro:property name="pi" value="3.14159" />
  2965. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2966. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2967. <xacro:property name="default_origin">
  2968.   <origin xyz="0 0 0" rpy="0 0 0" />
  2969. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2970. <xacro:property name="wheel_length" value="0.05" />
  2971. <xacro:property name="pi" value="3.14159" />
  2972. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2973. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2974. <xacro:property name="default_origin">
  2975.   <origin xyz="0 0 0" rpy="0 0 0" />
  2976. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2977. <xacro:property name="wheel_length" value="0.05" />
  2978. <xacro:property name="pi" value="3.14159" />
  2979. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2980. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2981. <xacro:property name="default_origin">
  2982.   <origin xyz="0 0 0" rpy="0 0 0" />
  2983. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2984. <xacro:property name="wheel_length" value="0.05" />
  2985. <xacro:property name="pi" value="3.14159" />
  2986. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2987. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2988. <xacro:property name="default_origin">
  2989.   <origin xyz="0 0 0" rpy="0 0 0" />
  2990. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2991. <xacro:property name="wheel_length" value="0.05" />
  2992. <xacro:property name="pi" value="3.14159" />
  2993. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  2994. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  2995. <xacro:property name="default_origin">
  2996.   <origin xyz="0 0 0" rpy="0 0 0" />
  2997. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  2998. <xacro:property name="wheel_length" value="0.05" />
  2999. <xacro:property name="pi" value="3.14159" />
  3000. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3001. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3002. <xacro:property name="default_origin">
  3003.   <origin xyz="0 0 0" rpy="0 0 0" />
  3004. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3005. <xacro:property name="wheel_length" value="0.05" />
  3006. <xacro:property name="pi" value="3.14159" />
  3007. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3008. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3009. <xacro:property name="default_origin">
  3010.   <origin xyz="0 0 0" rpy="0 0 0" />
  3011. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3012. <xacro:property name="wheel_length" value="0.05" />
  3013. <xacro:property name="pi" value="3.14159" />
  3014. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3015. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3016. <xacro:property name="default_origin">
  3017.   <origin xyz="0 0 0" rpy="0 0 0" />
  3018. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3019. <xacro:property name="wheel_length" value="0.05" />
  3020. <xacro:property name="pi" value="3.14159" />
  3021. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3022. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3023. <xacro:property name="default_origin">
  3024.   <origin xyz="0 0 0" rpy="0 0 0" />
  3025. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3026. <xacro:property name="wheel_length" value="0.05" />
  3027. <xacro:property name="pi" value="3.14159" />
  3028. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3029. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3030. <xacro:property name="default_origin">
  3031.   <origin xyz="0 0 0" rpy="0 0 0" />
  3032. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3033. <xacro:property name="wheel_length" value="0.05" />
  3034. <xacro:property name="pi" value="3.14159" />
  3035. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3036. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3037. <xacro:property name="default_origin">
  3038.   <origin xyz="0 0 0" rpy="0 0 0" />
  3039. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3040. <xacro:property name="wheel_length" value="0.05" />
  3041. <xacro:property name="pi" value="3.14159" />
  3042. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3043. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3044. <xacro:property name="default_origin">
  3045.   <origin xyz="0 0 0" rpy="0 0 0" />
  3046. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3047. <xacro:property name="wheel_length" value="0.05" />
  3048. <xacro:property name="pi" value="3.14159" />
  3049. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3050. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3051. <xacro:property name="default_origin">
  3052.   <origin xyz="0 0 0" rpy="0 0 0" />
  3053. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3054. <xacro:property name="wheel_length" value="0.05" />
  3055. <xacro:property name="pi" value="3.14159" />
  3056. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3057. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3058. <xacro:property name="default_origin">
  3059.   <origin xyz="0 0 0" rpy="0 0 0" />
  3060. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3061. <xacro:property name="wheel_length" value="0.05" />
  3062. <xacro:property name="pi" value="3.14159" />
  3063. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3064. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3065. <xacro:property name="default_origin">
  3066.   <origin xyz="0 0 0" rpy="0 0 0" />
  3067. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3068. <xacro:property name="wheel_length" value="0.05" />
  3069. <xacro:property name="pi" value="3.14159" />
  3070. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3071. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3072. <xacro:property name="default_origin">
  3073.   <origin xyz="0 0 0" rpy="0 0 0" />
  3074. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3075. <xacro:property name="wheel_length" value="0.05" />
  3076. <xacro:property name="pi" value="3.14159" />
  3077. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3078. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3079. <xacro:property name="default_origin">
  3080.   <origin xyz="0 0 0" rpy="0 0 0" />
  3081. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3082. <xacro:property name="wheel_length" value="0.05" />
  3083. <xacro:property name="pi" value="3.14159" />
  3084. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3085. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3086. <xacro:property name="default_origin">
  3087.   <origin xyz="0 0 0" rpy="0 0 0" />
  3088. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3089. <xacro:property name="wheel_length" value="0.05" />
  3090. <xacro:property name="pi" value="3.14159" />
  3091. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3092. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3093. <xacro:property name="default_origin">
  3094.   <origin xyz="0 0 0" rpy="0 0 0" />
  3095. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3096. <xacro:property name="wheel_length" value="0.05" />
  3097. <xacro:property name="pi" value="3.14159" />
  3098. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3099. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3100. <xacro:property name="default_origin">
  3101.   <origin xyz="0 0 0" rpy="0 0 0" />
  3102. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3103. <xacro:property name="wheel_length" value="0.05" />
  3104. <xacro:property name="pi" value="3.14159" />
  3105. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3106. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3107. <xacro:property name="default_origin">
  3108.   <origin xyz="0 0 0" rpy="0 0 0" />
  3109. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3110. <xacro:property name="wheel_length" value="0.05" />
  3111. <xacro:property name="pi" value="3.14159" />
  3112. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3113. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3114. <xacro:property name="default_origin">
  3115.   <origin xyz="0 0 0" rpy="0 0 0" />
  3116. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3117. <xacro:property name="wheel_length" value="0.05" />
  3118. <xacro:property name="pi" value="3.14159" />
  3119. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3120. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3121. <xacro:property name="default_origin">
  3122.   <origin xyz="0 0 0" rpy="0 0 0" />
  3123. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3124. <xacro:property name="wheel_length" value="0.05" />
  3125. <xacro:property name="pi" value="3.14159" />
  3126. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3127. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3128. <xacro:property name="default_origin">
  3129.   <origin xyz="0 0 0" rpy="0 0 0" />
  3130. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3131. <xacro:property name="wheel_length" value="0.05" />
  3132. <xacro:property name="pi" value="3.14159" />
  3133. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3134. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3135. <xacro:property name="default_origin">
  3136.   <origin xyz="0 0 0" rpy="0 0 0" />
  3137. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3138. <xacro:property name="wheel_length" value="0.05" />
  3139. <xacro:property name="pi" value="3.14159" />
  3140. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3141. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3142. <xacro:property name="default_origin">
  3143.   <origin xyz="0 0 0" rpy="0 0 0" />
  3144. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3145. <xacro:property name="wheel_length" value="0.05" />
  3146. <xacro:property name="pi" value="3.14159" />
  3147. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3148. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3149. <xacro:property name="default_origin">
  3150.   <origin xyz="0 0 0" rpy="0 0 0" />
  3151. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3152. <xacro:property name="wheel_length" value="0.05" />
  3153. <xacro:property name="pi" value="3.14159" />
  3154. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3155. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3156. <xacro:property name="default_origin">
  3157.   <origin xyz="0 0 0" rpy="0 0 0" />
  3158. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3159. <xacro:property name="wheel_length" value="0.05" />
  3160. <xacro:property name="pi" value="3.14159" />
  3161. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3162. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3163. <xacro:property name="default_origin">
  3164.   <origin xyz="0 0 0" rpy="0 0 0" />
  3165. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3166. <xacro:property name="wheel_length" value="0.05" />
  3167. <xacro:property name="pi" value="3.14159" />
  3168. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3169. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3170. <xacro:property name="default_origin">
  3171.   <origin xyz="0 0 0" rpy="0 0 0" />
  3172. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3173. <xacro:property name="wheel_length" value="0.05" />
  3174. <xacro:property name="pi" value="3.14159" />
  3175. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3176. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3177. <xacro:property name="default_origin">
  3178.   <origin xyz="0 0 0" rpy="0 0 0" />
  3179. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3180. <xacro:property name="wheel_length" value="0.05" />
  3181. <xacro:property name="pi" value="3.14159" />
  3182. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3183. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3184. <xacro:property name="default_origin">
  3185.   <origin xyz="0 0 0" rpy="0 0 0" />
  3186. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3187. <xacro:property name="wheel_length" value="0.05" />
  3188. <xacro:property name="pi" value="3.14159" />
  3189. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3190. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3191. <xacro:property name="default_origin">
  3192.   <origin xyz="0 0 0" rpy="0 0 0" />
  3193. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3194. <xacro:property name="wheel_length" value="0.05" />
  3195. <xacro:property name="pi" value="3.14159" />
  3196. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3197. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3198. <xacro:property name="default_origin">
  3199.   <origin xyz="0 0 0" rpy="0 0 0" />
  3200. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3201. <xacro:property name="wheel_length" value="0.05" />
  3202. <xacro:property name="pi" value="3.14159" />
  3203. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3204. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3205. <xacro:property name="default_origin">
  3206.   <origin xyz="0 0 0" rpy="0 0 0" />
  3207. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3208. <xacro:property name="wheel_length" value="0.05" />
  3209. <xacro:property name="pi" value="3.14159" />
  3210. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3211. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3212. <xacro:property name="default_origin">
  3213.   <origin xyz="0 0 0" rpy="0 0 0" />
  3214. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3215. <xacro:property name="wheel_length" value="0.05" />
  3216. <xacro:property name="pi" value="3.14159" />
  3217. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3218. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3219. <xacro:property name="default_origin">
  3220.   <origin xyz="0 0 0" rpy="0 0 0" />
  3221. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3222. <xacro:property name="wheel_length" value="0.05" />
  3223. <xacro:property name="pi" value="3.14159" />
  3224. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3225. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3226. <xacro:property name="default_origin">
  3227.   <origin xyz="0 0 0" rpy="0 0 0" />
  3228. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3229. <xacro:property name="wheel_length" value="0.05" />
  3230. <xacro:property name="pi" value="3.14159" />
  3231. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3232. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3233. <xacro:property name="default_origin">
  3234.   <origin xyz="0 0 0" rpy="0 0 0" />
  3235. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3236. <xacro:property name="wheel_length" value="0.05" />
  3237. <xacro:property name="pi" value="3.14159" />
  3238. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3239. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3240. <xacro:property name="default_origin">
  3241.   <origin xyz="0 0 0" rpy="0 0 0" />
  3242. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3243. <xacro:property name="wheel_length" value="0.05" />
  3244. <xacro:property name="pi" value="3.14159" />
  3245. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3246. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3247. <xacro:property name="default_origin">
  3248.   <origin xyz="0 0 0" rpy="0 0 0" />
  3249. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3250. <xacro:property name="wheel_length" value="0.05" />
  3251. <xacro:property name="pi" value="3.14159" />
  3252. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3253. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3254. <xacro:property name="default_origin">
  3255.   <origin xyz="0 0 0" rpy="0 0 0" />
  3256. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3257. <xacro:property name="wheel_length" value="0.05" />
  3258. <xacro:property name="pi" value="3.14159" />
  3259. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3260. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3261. <xacro:property name="default_origin">
  3262.   <origin xyz="0 0 0" rpy="0 0 0" />
  3263. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3264. <xacro:property name="wheel_length" value="0.05" />
  3265. <xacro:property name="pi" value="3.14159" />
  3266. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3267. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3268. <xacro:property name="default_origin">
  3269.   <origin xyz="0 0 0" rpy="0 0 0" />
  3270. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3271. <xacro:property name="wheel_length" value="0.05" />
  3272. <xacro:property name="pi" value="3.14159" />
  3273. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3274. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3275. <xacro:property name="default_origin">
  3276.   <origin xyz="0 0 0" rpy="0 0 0" />
  3277. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3278. <xacro:property name="wheel_length" value="0.05" />
  3279. <xacro:property name="pi" value="3.14159" />
  3280. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3281. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3282. <xacro:property name="default_origin">
  3283.   <origin xyz="0 0 0" rpy="0 0 0" />
  3284. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3285. <xacro:property name="wheel_length" value="0.05" />
  3286. <xacro:property name="pi" value="3.14159" />
  3287. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3288. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3289. <xacro:property name="default_origin">
  3290.   <origin xyz="0 0 0" rpy="0 0 0" />
  3291. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3292. <xacro:property name="wheel_length" value="0.05" />
  3293. <xacro:property name="pi" value="3.14159" />
  3294. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3295. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3296. <xacro:property name="default_origin">
  3297.   <origin xyz="0 0 0" rpy="0 0 0" />
  3298. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3299. <xacro:property name="wheel_length" value="0.05" />
  3300. <xacro:property name="pi" value="3.14159" />
  3301. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3302. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3303. <xacro:property name="default_origin">
  3304.   <origin xyz="0 0 0" rpy="0 0 0" />
  3305. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3306. <xacro:property name="wheel_length" value="0.05" />
  3307. <xacro:property name="pi" value="3.14159" />
  3308. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3309. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3310. <xacro:property name="default_origin">
  3311.   <origin xyz="0 0 0" rpy="0 0 0" />
  3312. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3313. <xacro:property name="wheel_length" value="0.05" />
  3314. <xacro:property name="pi" value="3.14159" />
  3315. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3316. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3317. <xacro:property name="default_origin">
  3318.   <origin xyz="0 0 0" rpy="0 0 0" />
  3319. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3320. <xacro:property name="wheel_length" value="0.05" />
  3321. <xacro:property name="pi" value="3.14159" />
  3322. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3323. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3324. <xacro:property name="default_origin">
  3325.   <origin xyz="0 0 0" rpy="0 0 0" />
  3326. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3327. <xacro:property name="wheel_length" value="0.05" />
  3328. <xacro:property name="pi" value="3.14159" />
  3329. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3330. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3331. <xacro:property name="default_origin">
  3332.   <origin xyz="0 0 0" rpy="0 0 0" />
  3333. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3334. <xacro:property name="wheel_length" value="0.05" />
  3335. <xacro:property name="pi" value="3.14159" />
  3336. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3337. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3338. <xacro:property name="default_origin">
  3339.   <origin xyz="0 0 0" rpy="0 0 0" />
  3340. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3341. <xacro:property name="wheel_length" value="0.05" />
  3342. <xacro:property name="pi" value="3.14159" />
  3343. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3344. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3345. <xacro:property name="default_origin">
  3346.   <origin xyz="0 0 0" rpy="0 0 0" />
  3347. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3348. <xacro:property name="wheel_length" value="0.05" />
  3349. <xacro:property name="pi" value="3.14159" />
  3350. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3351. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3352. <xacro:property name="default_origin">
  3353.   <origin xyz="0 0 0" rpy="0 0 0" />
  3354. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3355. <xacro:property name="wheel_length" value="0.05" />
  3356. <xacro:property name="pi" value="3.14159" />
  3357. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3358. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3359. <xacro:property name="default_origin">
  3360.   <origin xyz="0 0 0" rpy="0 0 0" />
  3361. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3362. <xacro:property name="wheel_length" value="0.05" />
  3363. <xacro:property name="pi" value="3.14159" />
  3364. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3365. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3366. <xacro:property name="default_origin">
  3367.   <origin xyz="0 0 0" rpy="0 0 0" />
  3368. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3369. <xacro:property name="wheel_length" value="0.05" />
  3370. <xacro:property name="pi" value="3.14159" />
  3371. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3372. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3373. <xacro:property name="default_origin">
  3374.   <origin xyz="0 0 0" rpy="0 0 0" />
  3375. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3376. <xacro:property name="wheel_length" value="0.05" />
  3377. <xacro:property name="pi" value="3.14159" />
  3378. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3379. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3380. <xacro:property name="default_origin">
  3381.   <origin xyz="0 0 0" rpy="0 0 0" />
  3382. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3383. <xacro:property name="wheel_length" value="0.05" />
  3384. <xacro:property name="pi" value="3.14159" />
  3385. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3386. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3387. <xacro:property name="default_origin">
  3388.   <origin xyz="0 0 0" rpy="0 0 0" />
  3389. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3390. <xacro:property name="wheel_length" value="0.05" />
  3391. <xacro:property name="pi" value="3.14159" />
  3392. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3393. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3394. <xacro:property name="default_origin">
  3395.   <origin xyz="0 0 0" rpy="0 0 0" />
  3396. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3397. <xacro:property name="wheel_length" value="0.05" />
  3398. <xacro:property name="pi" value="3.14159" />
  3399. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3400. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3401. <xacro:property name="default_origin">
  3402.   <origin xyz="0 0 0" rpy="0 0 0" />
  3403. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3404. <xacro:property name="wheel_length" value="0.05" />
  3405. <xacro:property name="pi" value="3.14159" />
  3406. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3407. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3408. <xacro:property name="default_origin">
  3409.   <origin xyz="0 0 0" rpy="0 0 0" />
  3410. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3411. <xacro:property name="wheel_length" value="0.05" />
  3412. <xacro:property name="pi" value="3.14159" />
  3413. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3414. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3415. <xacro:property name="default_origin">
  3416.   <origin xyz="0 0 0" rpy="0 0 0" />
  3417. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3418. <xacro:property name="wheel_length" value="0.05" />
  3419. <xacro:property name="pi" value="3.14159" />
  3420. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3421. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3422. <xacro:property name="default_origin">
  3423.   <origin xyz="0 0 0" rpy="0 0 0" />
  3424. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3425. <xacro:property name="wheel_length" value="0.05" />
  3426. <xacro:property name="pi" value="3.14159" />
  3427. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3428. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3429. <xacro:property name="default_origin">
  3430.   <origin xyz="0 0 0" rpy="0 0 0" />
  3431. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3432. <xacro:property name="wheel_length" value="0.05" />
  3433. <xacro:property name="pi" value="3.14159" />
  3434. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3435. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3436. <xacro:property name="default_origin">
  3437.   <origin xyz="0 0 0" rpy="0 0 0" />
  3438. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3439. <xacro:property name="wheel_length" value="0.05" />
  3440. <xacro:property name="pi" value="3.14159" />
  3441. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3442. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3443. <xacro:property name="default_origin">
  3444.   <origin xyz="0 0 0" rpy="0 0 0" />
  3445. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3446. <xacro:property name="wheel_length" value="0.05" />
  3447. <xacro:property name="pi" value="3.14159" />
  3448. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3449. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3450. <xacro:property name="default_origin">
  3451.   <origin xyz="0 0 0" rpy="0 0 0" />
  3452. </xacro:property>Gazebo/Black<xacro:property name="wheel_radius" value="0.1" />
  3453. <xacro:property name="wheel_length" value="0.05" />
  3454. <xacro:property name="pi" value="3.14159" />
  3455. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3456. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3457. <xacro:property name="default_origin">
  3458.   <origin xyz="0 0 0" rpy="0 0 0" />
  3459. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3460. <xacro:property name="wheel_length" value="0.05" />
  3461. <xacro:property name="pi" value="3.14159" />
  3462. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3463. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3464. <xacro:property name="default_origin">
  3465.   <origin xyz="0 0 0" rpy="0 0 0" />
  3466. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3467. <xacro:property name="wheel_length" value="0.05" />
  3468. <xacro:property name="pi" value="3.14159" />
  3469. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3470. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3471. <xacro:property name="default_origin">
  3472.   <origin xyz="0 0 0" rpy="0 0 0" />
  3473. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3474. <xacro:property name="wheel_length" value="0.05" />
  3475. <xacro:property name="pi" value="3.14159" />
  3476. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3477. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3478. <xacro:property name="default_origin">
  3479.   <origin xyz="0 0 0" rpy="0 0 0" />
  3480. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3481. <xacro:property name="wheel_length" value="0.05" />
  3482. <xacro:property name="pi" value="3.14159" />
  3483. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3484. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3485. <xacro:property name="default_origin">
  3486.   <origin xyz="0 0 0" rpy="0 0 0" />
  3487. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3488. <xacro:property name="wheel_length" value="0.05" />
  3489. <xacro:property name="pi" value="3.14159" />
  3490. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3491. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3492. <xacro:property name="default_origin">
  3493.   <origin xyz="0 0 0" rpy="0 0 0" />
  3494. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3495. <xacro:property name="wheel_length" value="0.05" />
  3496. <xacro:property name="pi" value="3.14159" />
  3497. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3498. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3499. <xacro:property name="default_origin">
  3500.   <origin xyz="0 0 0" rpy="0 0 0" />
  3501. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3502. <xacro:property name="wheel_length" value="0.05" />
  3503. <xacro:property name="pi" value="3.14159" />
  3504. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3505. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3506. <xacro:property name="default_origin">
  3507.   <origin xyz="0 0 0" rpy="0 0 0" />
  3508. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3509. <xacro:property name="wheel_length" value="0.05" />
  3510. <xacro:property name="pi" value="3.14159" />
  3511. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3512. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3513. <xacro:property name="default_origin">
  3514.   <origin xyz="0 0 0" rpy="0 0 0" />
  3515. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3516. <xacro:property name="wheel_length" value="0.05" />
  3517. <xacro:property name="pi" value="3.14159" />
  3518. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3519. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3520. <xacro:property name="default_origin">
  3521.   <origin xyz="0 0 0" rpy="0 0 0" />
  3522. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3523. <xacro:property name="wheel_length" value="0.05" />
  3524. <xacro:property name="pi" value="3.14159" />
  3525. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3526. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3527. <xacro:property name="default_origin">
  3528.   <origin xyz="0 0 0" rpy="0 0 0" />
  3529. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3530. <xacro:property name="wheel_length" value="0.05" />
  3531. <xacro:property name="pi" value="3.14159" />
  3532. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3533. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3534. <xacro:property name="default_origin">
  3535.   <origin xyz="0 0 0" rpy="0 0 0" />
  3536. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3537. <xacro:property name="wheel_length" value="0.05" />
  3538. <xacro:property name="pi" value="3.14159" />
  3539. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3540. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3541. <xacro:property name="default_origin">
  3542.   <origin xyz="0 0 0" rpy="0 0 0" />
  3543. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3544. <xacro:property name="wheel_length" value="0.05" />
  3545. <xacro:property name="pi" value="3.14159" />
  3546. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3547. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3548. <xacro:property name="default_origin">
  3549.   <origin xyz="0 0 0" rpy="0 0 0" />
  3550. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3551. <xacro:property name="wheel_length" value="0.05" />
  3552. <xacro:property name="pi" value="3.14159" />
  3553. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3554. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3555. <xacro:property name="default_origin">
  3556.   <origin xyz="0 0 0" rpy="0 0 0" />
  3557. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3558. <xacro:property name="wheel_length" value="0.05" />
  3559. <xacro:property name="pi" value="3.14159" />
  3560. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3561. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3562. <xacro:property name="default_origin">
  3563.   <origin xyz="0 0 0" rpy="0 0 0" />
  3564. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3565. <xacro:property name="wheel_length" value="0.05" />
  3566. <xacro:property name="pi" value="3.14159" />
  3567. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3568. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3569. <xacro:property name="default_origin">
  3570.   <origin xyz="0 0 0" rpy="0 0 0" />
  3571. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3572. <xacro:property name="wheel_length" value="0.05" />
  3573. <xacro:property name="pi" value="3.14159" />
  3574. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3575. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3576. <xacro:property name="default_origin">
  3577.   <origin xyz="0 0 0" rpy="0 0 0" />
  3578. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3579. <xacro:property name="wheel_length" value="0.05" />
  3580. <xacro:property name="pi" value="3.14159" />
  3581. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3582. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3583. <xacro:property name="default_origin">
  3584.   <origin xyz="0 0 0" rpy="0 0 0" />
  3585. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3586. <xacro:property name="wheel_length" value="0.05" />
  3587. <xacro:property name="pi" value="3.14159" />
  3588. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3589. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3590. <xacro:property name="default_origin">
  3591.   <origin xyz="0 0 0" rpy="0 0 0" />
  3592. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3593. <xacro:property name="wheel_length" value="0.05" />
  3594. <xacro:property name="pi" value="3.14159" />
  3595. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3596. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3597. <xacro:property name="default_origin">
  3598.   <origin xyz="0 0 0" rpy="0 0 0" />
  3599. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3600. <xacro:property name="wheel_length" value="0.05" />
  3601. <xacro:property name="pi" value="3.14159" />
  3602. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3603. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3604. <xacro:property name="default_origin">
  3605.   <origin xyz="0 0 0" rpy="0 0 0" />
  3606. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3607. <xacro:property name="wheel_length" value="0.05" />
  3608. <xacro:property name="pi" value="3.14159" />
  3609. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3610. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3611. <xacro:property name="default_origin">
  3612.   <origin xyz="0 0 0" rpy="0 0 0" />
  3613. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3614. <xacro:property name="wheel_length" value="0.05" />
  3615. <xacro:property name="pi" value="3.14159" />
  3616. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3617. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3618. <xacro:property name="default_origin">
  3619.   <origin xyz="0 0 0" rpy="0 0 0" />
  3620. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3621. <xacro:property name="wheel_length" value="0.05" />
  3622. <xacro:property name="pi" value="3.14159" />
  3623. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3624. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3625. <xacro:property name="default_origin">
  3626.   <origin xyz="0 0 0" rpy="0 0 0" />
  3627. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3628. <xacro:property name="wheel_length" value="0.05" />
  3629. <xacro:property name="pi" value="3.14159" />
  3630. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3631. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3632. <xacro:property name="default_origin">
  3633.   <origin xyz="0 0 0" rpy="0 0 0" />
  3634. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3635. <xacro:property name="wheel_length" value="0.05" />
  3636. <xacro:property name="pi" value="3.14159" />
  3637. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3638. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3639. <xacro:property name="default_origin">
  3640.   <origin xyz="0 0 0" rpy="0 0 0" />
  3641. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3642. <xacro:property name="wheel_length" value="0.05" />
  3643. <xacro:property name="pi" value="3.14159" />
  3644. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3645. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3646. <xacro:property name="default_origin">
  3647.   <origin xyz="0 0 0" rpy="0 0 0" />
  3648. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3649. <xacro:property name="wheel_length" value="0.05" />
  3650. <xacro:property name="pi" value="3.14159" />
  3651. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3652. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3653. <xacro:property name="default_origin">
  3654.   <origin xyz="0 0 0" rpy="0 0 0" />
  3655. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3656. <xacro:property name="wheel_length" value="0.05" />
  3657. <xacro:property name="pi" value="3.14159" />
  3658. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3659. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3660. <xacro:property name="default_origin">
  3661.   <origin xyz="0 0 0" rpy="0 0 0" />
  3662. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3663. <xacro:property name="wheel_length" value="0.05" />
  3664. <xacro:property name="pi" value="3.14159" />
  3665. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3666. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3667. <xacro:property name="default_origin">
  3668.   <origin xyz="0 0 0" rpy="0 0 0" />
  3669. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3670. <xacro:property name="wheel_length" value="0.05" />
  3671. <xacro:property name="pi" value="3.14159" />
  3672. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3673. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3674. <xacro:property name="default_origin">
  3675.   <origin xyz="0 0 0" rpy="0 0 0" />
  3676. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3677. <xacro:property name="wheel_length" value="0.05" />
  3678. <xacro:property name="pi" value="3.14159" />
  3679. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3680. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3681. <xacro:property name="default_origin">
  3682.   <origin xyz="0 0 0" rpy="0 0 0" />
  3683. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3684. <xacro:property name="wheel_length" value="0.05" />
  3685. <xacro:property name="pi" value="3.14159" />
  3686. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3687. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3688. <xacro:property name="default_origin">
  3689.   <origin xyz="0 0 0" rpy="0 0 0" />
  3690. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3691. <xacro:property name="wheel_length" value="0.05" />
  3692. <xacro:property name="pi" value="3.14159" />
  3693. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3694. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3695. <xacro:property name="default_origin">
  3696.   <origin xyz="0 0 0" rpy="0 0 0" />
  3697. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3698. <xacro:property name="wheel_length" value="0.05" />
  3699. <xacro:property name="pi" value="3.14159" />
  3700. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3701. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3702. <xacro:property name="default_origin">
  3703.   <origin xyz="0 0 0" rpy="0 0 0" />
  3704. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3705. <xacro:property name="wheel_length" value="0.05" />
  3706. <xacro:property name="pi" value="3.14159" />
  3707. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3708. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3709. <xacro:property name="default_origin">
  3710.   <origin xyz="0 0 0" rpy="0 0 0" />
  3711. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3712. <xacro:property name="wheel_length" value="0.05" />
  3713. <xacro:property name="pi" value="3.14159" />
  3714. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3715. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3716. <xacro:property name="default_origin">
  3717.   <origin xyz="0 0 0" rpy="0 0 0" />
  3718. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3719. <xacro:property name="wheel_length" value="0.05" />
  3720. <xacro:property name="pi" value="3.14159" />
  3721. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3722. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3723. <xacro:property name="default_origin">
  3724.   <origin xyz="0 0 0" rpy="0 0 0" />
  3725. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3726. <xacro:property name="wheel_length" value="0.05" />
  3727. <xacro:property name="pi" value="3.14159" />
  3728. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3729. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3730. <xacro:property name="default_origin">
  3731.   <origin xyz="0 0 0" rpy="0 0 0" />
  3732. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3733. <xacro:property name="wheel_length" value="0.05" />
  3734. <xacro:property name="pi" value="3.14159" />
  3735. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3736. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3737. <xacro:property name="default_origin">
  3738.   <origin xyz="0 0 0" rpy="0 0 0" />
  3739. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3740. <xacro:property name="wheel_length" value="0.05" />
  3741. <xacro:property name="pi" value="3.14159" />
  3742. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3743. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3744. <xacro:property name="default_origin">
  3745.   <origin xyz="0 0 0" rpy="0 0 0" />
  3746. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3747. <xacro:property name="wheel_length" value="0.05" />
  3748. <xacro:property name="pi" value="3.14159" />
  3749. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3750. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3751. <xacro:property name="default_origin">
  3752.   <origin xyz="0 0 0" rpy="0 0 0" />
  3753. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3754. <xacro:property name="wheel_length" value="0.05" />
  3755. <xacro:property name="pi" value="3.14159" />
  3756. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3757. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3758. <xacro:property name="default_origin">
  3759.   <origin xyz="0 0 0" rpy="0 0 0" />
  3760. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3761. <xacro:property name="wheel_length" value="0.05" />
  3762. <xacro:property name="pi" value="3.14159" />
  3763. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3764. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3765. <xacro:property name="default_origin">
  3766.   <origin xyz="0 0 0" rpy="0 0 0" />
  3767. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3768. <xacro:property name="wheel_length" value="0.05" />
  3769. <xacro:property name="pi" value="3.14159" />
  3770. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3771. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3772. <xacro:property name="default_origin">
  3773.   <origin xyz="0 0 0" rpy="0 0 0" />
  3774. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3775. <xacro:property name="wheel_length" value="0.05" />
  3776. <xacro:property name="pi" value="3.14159" />
  3777. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3778. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3779. <xacro:property name="default_origin">
  3780.   <origin xyz="0 0 0" rpy="0 0 0" />
  3781. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3782. <xacro:property name="wheel_length" value="0.05" />
  3783. <xacro:property name="pi" value="3.14159" />
  3784. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3785. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3786. <xacro:property name="default_origin">
  3787.   <origin xyz="0 0 0" rpy="0 0 0" />
  3788. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3789. <xacro:property name="wheel_length" value="0.05" />
  3790. <xacro:property name="pi" value="3.14159" />
  3791. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3792. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3793. <xacro:property name="default_origin">
  3794.   <origin xyz="0 0 0" rpy="0 0 0" />
  3795. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3796. <xacro:property name="wheel_length" value="0.05" />
  3797. <xacro:property name="pi" value="3.14159" />
  3798. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3799. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3800. <xacro:property name="default_origin">
  3801.   <origin xyz="0 0 0" rpy="0 0 0" />
  3802. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3803. <xacro:property name="wheel_length" value="0.05" />
  3804. <xacro:property name="pi" value="3.14159" />
  3805. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3806. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3807. <xacro:property name="default_origin">
  3808.   <origin xyz="0 0 0" rpy="0 0 0" />
  3809. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3810. <xacro:property name="wheel_length" value="0.05" />
  3811. <xacro:property name="pi" value="3.14159" />
  3812. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3813. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3814. <xacro:property name="default_origin">
  3815.   <origin xyz="0 0 0" rpy="0 0 0" />
  3816. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3817. <xacro:property name="wheel_length" value="0.05" />
  3818. <xacro:property name="pi" value="3.14159" />
  3819. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3820. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3821. <xacro:property name="default_origin">
  3822.   <origin xyz="0 0 0" rpy="0 0 0" />
  3823. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3824. <xacro:property name="wheel_length" value="0.05" />
  3825. <xacro:property name="pi" value="3.14159" />
  3826. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3827. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3828. <xacro:property name="default_origin">
  3829.   <origin xyz="0 0 0" rpy="0 0 0" />
  3830. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3831. <xacro:property name="wheel_length" value="0.05" />
  3832. <xacro:property name="pi" value="3.14159" />
  3833. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3834. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3835. <xacro:property name="default_origin">
  3836.   <origin xyz="0 0 0" rpy="0 0 0" />
  3837. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3838. <xacro:property name="wheel_length" value="0.05" />
  3839. <xacro:property name="pi" value="3.14159" />
  3840. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3841. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3842. <xacro:property name="default_origin">
  3843.   <origin xyz="0 0 0" rpy="0 0 0" />
  3844. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3845. <xacro:property name="wheel_length" value="0.05" />
  3846. <xacro:property name="pi" value="3.14159" />
  3847. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3848. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3849. <xacro:property name="default_origin">
  3850.   <origin xyz="0 0 0" rpy="0 0 0" />
  3851. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3852. <xacro:property name="wheel_length" value="0.05" />
  3853. <xacro:property name="pi" value="3.14159" />
  3854. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3855. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3856. <xacro:property name="default_origin">
  3857.   <origin xyz="0 0 0" rpy="0 0 0" />
  3858. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3859. <xacro:property name="wheel_length" value="0.05" />
  3860. <xacro:property name="pi" value="3.14159" />
  3861. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3862. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3863. <xacro:property name="default_origin">
  3864.   <origin xyz="0 0 0" rpy="0 0 0" />
  3865. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3866. <xacro:property name="wheel_length" value="0.05" />
  3867. <xacro:property name="pi" value="3.14159" />
  3868. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3869. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3870. <xacro:property name="default_origin">
  3871.   <origin xyz="0 0 0" rpy="0 0 0" />
  3872. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3873. <xacro:property name="wheel_length" value="0.05" />
  3874. <xacro:property name="pi" value="3.14159" />
  3875. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3876. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3877. <xacro:property name="default_origin">
  3878.   <origin xyz="0 0 0" rpy="0 0 0" />
  3879. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3880. <xacro:property name="wheel_length" value="0.05" />
  3881. <xacro:property name="pi" value="3.14159" />
  3882. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3883. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3884. <xacro:property name="default_origin">
  3885.   <origin xyz="0 0 0" rpy="0 0 0" />
  3886. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3887. <xacro:property name="wheel_length" value="0.05" />
  3888. <xacro:property name="pi" value="3.14159" />
  3889. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3890. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3891. <xacro:property name="default_origin">
  3892.   <origin xyz="0 0 0" rpy="0 0 0" />
  3893. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3894. <xacro:property name="wheel_length" value="0.05" />
  3895. <xacro:property name="pi" value="3.14159" />
  3896. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3897. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3898. <xacro:property name="default_origin">
  3899.   <origin xyz="0 0 0" rpy="0 0 0" />
  3900. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3901. <xacro:property name="wheel_length" value="0.05" />
  3902. <xacro:property name="pi" value="3.14159" />
  3903. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3904. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3905. <xacro:property name="default_origin">
  3906.   <origin xyz="0 0 0" rpy="0 0 0" />
  3907. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3908. <xacro:property name="wheel_length" value="0.05" />
  3909. <xacro:property name="pi" value="3.14159" />
  3910. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3911. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3912. <xacro:property name="default_origin">
  3913.   <origin xyz="0 0 0" rpy="0 0 0" />
  3914. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3915. <xacro:property name="wheel_length" value="0.05" />
  3916. <xacro:property name="pi" value="3.14159" />
  3917. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3918. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3919. <xacro:property name="default_origin">
  3920.   <origin xyz="0 0 0" rpy="0 0 0" />
  3921. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3922. <xacro:property name="wheel_length" value="0.05" />
  3923. <xacro:property name="pi" value="3.14159" />
  3924. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3925. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3926. <xacro:property name="default_origin">
  3927.   <origin xyz="0 0 0" rpy="0 0 0" />
  3928. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3929. <xacro:property name="wheel_length" value="0.05" />
  3930. <xacro:property name="pi" value="3.14159" />
  3931. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3932. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3933. <xacro:property name="default_origin">
  3934.   <origin xyz="0 0 0" rpy="0 0 0" />
  3935. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3936. <xacro:property name="wheel_length" value="0.05" />
  3937. <xacro:property name="pi" value="3.14159" />
  3938. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3939. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3940. <xacro:property name="default_origin">
  3941.   <origin xyz="0 0 0" rpy="0 0 0" />
  3942. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3943. <xacro:property name="wheel_length" value="0.05" />
  3944. <xacro:property name="pi" value="3.14159" />
  3945. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3946. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3947. <xacro:property name="default_origin">
  3948.   <origin xyz="0 0 0" rpy="0 0 0" />
  3949. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3950. <xacro:property name="wheel_length" value="0.05" />
  3951. <xacro:property name="pi" value="3.14159" />
  3952. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3953. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3954. <xacro:property name="default_origin">
  3955.   <origin xyz="0 0 0" rpy="0 0 0" />
  3956. </xacro:property>false<xacro:property name="wheel_radius" value="0.1" />
  3957. <xacro:property name="wheel_length" value="0.05" />
  3958. <xacro:property name="pi" value="3.14159" />
  3959. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3960. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3961. <xacro:property name="default_origin">
  3962.   <origin xyz="0 0 0" rpy="0 0 0" />
  3963. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3964. <xacro:property name="wheel_length" value="0.05" />
  3965. <xacro:property name="pi" value="3.14159" />
  3966. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3967. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3968. <xacro:property name="default_origin">
  3969.   <origin xyz="0 0 0" rpy="0 0 0" />
  3970. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3971. <xacro:property name="wheel_length" value="0.05" />
  3972. <xacro:property name="pi" value="3.14159" />
  3973. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3974. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3975. <xacro:property name="default_origin">
  3976.   <origin xyz="0 0 0" rpy="0 0 0" />
  3977. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3978. <xacro:property name="wheel_length" value="0.05" />
  3979. <xacro:property name="pi" value="3.14159" />
  3980. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3981. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3982. <xacro:property name="default_origin">
  3983.   <origin xyz="0 0 0" rpy="0 0 0" />
  3984. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3985. <xacro:property name="wheel_length" value="0.05" />
  3986. <xacro:property name="pi" value="3.14159" />
  3987. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3988. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3989. <xacro:property name="default_origin">
  3990.   <origin xyz="0 0 0" rpy="0 0 0" />
  3991. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3992. <xacro:property name="wheel_length" value="0.05" />
  3993. <xacro:property name="pi" value="3.14159" />
  3994. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  3995. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  3996. <xacro:property name="default_origin">
  3997.   <origin xyz="0 0 0" rpy="0 0 0" />
  3998. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  3999. <xacro:property name="wheel_length" value="0.05" />
  4000. <xacro:property name="pi" value="3.14159" />
  4001. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4002. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4003. <xacro:property name="default_origin">
  4004.   <origin xyz="0 0 0" rpy="0 0 0" />
  4005. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4006. <xacro:property name="wheel_length" value="0.05" />
  4007. <xacro:property name="pi" value="3.14159" />
  4008. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4009. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4010. <xacro:property name="default_origin">
  4011.   <origin xyz="0 0 0" rpy="0 0 0" />
  4012. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4013. <xacro:property name="wheel_length" value="0.05" />
  4014. <xacro:property name="pi" value="3.14159" />
  4015. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4016. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4017. <xacro:property name="default_origin">
  4018.   <origin xyz="0 0 0" rpy="0 0 0" />
  4019. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4020. <xacro:property name="wheel_length" value="0.05" />
  4021. <xacro:property name="pi" value="3.14159" />
  4022. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4023. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4024. <xacro:property name="default_origin">
  4025.   <origin xyz="0 0 0" rpy="0 0 0" />
  4026. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4027. <xacro:property name="wheel_length" value="0.05" />
  4028. <xacro:property name="pi" value="3.14159" />
  4029. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4030. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4031. <xacro:property name="default_origin">
  4032.   <origin xyz="0 0 0" rpy="0 0 0" />
  4033. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4034. <xacro:property name="wheel_length" value="0.05" />
  4035. <xacro:property name="pi" value="3.14159" />
  4036. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4037. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4038. <xacro:property name="default_origin">
  4039.   <origin xyz="0 0 0" rpy="0 0 0" />
  4040. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4041. <xacro:property name="wheel_length" value="0.05" />
  4042. <xacro:property name="pi" value="3.14159" />
  4043. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4044. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4045. <xacro:property name="default_origin">
  4046.   <origin xyz="0 0 0" rpy="0 0 0" />
  4047. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4048. <xacro:property name="wheel_length" value="0.05" />
  4049. <xacro:property name="pi" value="3.14159" />
  4050. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4051. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4052. <xacro:property name="default_origin">
  4053.   <origin xyz="0 0 0" rpy="0 0 0" />
  4054. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4055. <xacro:property name="wheel_length" value="0.05" />
  4056. <xacro:property name="pi" value="3.14159" />
  4057. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4058. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4059. <xacro:property name="default_origin">
  4060.   <origin xyz="0 0 0" rpy="0 0 0" />
  4061. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4062. <xacro:property name="wheel_length" value="0.05" />
  4063. <xacro:property name="pi" value="3.14159" />
  4064. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4065. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4066. <xacro:property name="default_origin">
  4067.   <origin xyz="0 0 0" rpy="0 0 0" />
  4068. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4069. <xacro:property name="wheel_length" value="0.05" />
  4070. <xacro:property name="pi" value="3.14159" />
  4071. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4072. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4073. <xacro:property name="default_origin">
  4074.   <origin xyz="0 0 0" rpy="0 0 0" />
  4075. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4076. <xacro:property name="wheel_length" value="0.05" />
  4077. <xacro:property name="pi" value="3.14159" />
  4078. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4079. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4080. <xacro:property name="default_origin">
  4081.   <origin xyz="0 0 0" rpy="0 0 0" />
  4082. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4083. <xacro:property name="wheel_length" value="0.05" />
  4084. <xacro:property name="pi" value="3.14159" />
  4085. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4086. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4087. <xacro:property name="default_origin">
  4088.   <origin xyz="0 0 0" rpy="0 0 0" />
  4089. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4090. <xacro:property name="wheel_length" value="0.05" />
  4091. <xacro:property name="pi" value="3.14159" />
  4092. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4093. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4094. <xacro:property name="default_origin">
  4095.   <origin xyz="0 0 0" rpy="0 0 0" />
  4096. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4097. <xacro:property name="wheel_length" value="0.05" />
  4098. <xacro:property name="pi" value="3.14159" />
  4099. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4100. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4101. <xacro:property name="default_origin">
  4102.   <origin xyz="0 0 0" rpy="0 0 0" />
  4103. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4104. <xacro:property name="wheel_length" value="0.05" />
  4105. <xacro:property name="pi" value="3.14159" />
  4106. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4107. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4108. <xacro:property name="default_origin">
  4109.   <origin xyz="0 0 0" rpy="0 0 0" />
  4110. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4111. <xacro:property name="wheel_length" value="0.05" />
  4112. <xacro:property name="pi" value="3.14159" />
  4113. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4114. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4115. <xacro:property name="default_origin">
  4116.   <origin xyz="0 0 0" rpy="0 0 0" />
  4117. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4118. <xacro:property name="wheel_length" value="0.05" />
  4119. <xacro:property name="pi" value="3.14159" />
  4120. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4121. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4122. <xacro:property name="default_origin">
  4123.   <origin xyz="0 0 0" rpy="0 0 0" />
  4124. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4125. <xacro:property name="wheel_length" value="0.05" />
  4126. <xacro:property name="pi" value="3.14159" />
  4127. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4128. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4129. <xacro:property name="default_origin">
  4130.   <origin xyz="0 0 0" rpy="0 0 0" />
  4131. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4132. <xacro:property name="wheel_length" value="0.05" />
  4133. <xacro:property name="pi" value="3.14159" />
  4134. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4135. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4136. <xacro:property name="default_origin">
  4137.   <origin xyz="0 0 0" rpy="0 0 0" />
  4138. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4139. <xacro:property name="wheel_length" value="0.05" />
  4140. <xacro:property name="pi" value="3.14159" />
  4141. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4142. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4143. <xacro:property name="default_origin">
  4144.   <origin xyz="0 0 0" rpy="0 0 0" />
  4145. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4146. <xacro:property name="wheel_length" value="0.05" />
  4147. <xacro:property name="pi" value="3.14159" />
  4148. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4149. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4150. <xacro:property name="default_origin">
  4151.   <origin xyz="0 0 0" rpy="0 0 0" />
  4152. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4153. <xacro:property name="wheel_length" value="0.05" />
  4154. <xacro:property name="pi" value="3.14159" />
  4155. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4156. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4157. <xacro:property name="default_origin">
  4158.   <origin xyz="0 0 0" rpy="0 0 0" />
  4159. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4160. <xacro:property name="wheel_length" value="0.05" />
  4161. <xacro:property name="pi" value="3.14159" />
  4162. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4163. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4164. <xacro:property name="default_origin">
  4165.   <origin xyz="0 0 0" rpy="0 0 0" />
  4166. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4167. <xacro:property name="wheel_length" value="0.05" />
  4168. <xacro:property name="pi" value="3.14159" />
  4169. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4170. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4171. <xacro:property name="default_origin">
  4172.   <origin xyz="0 0 0" rpy="0 0 0" />
  4173. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4174. <xacro:property name="wheel_length" value="0.05" />
  4175. <xacro:property name="pi" value="3.14159" />
  4176. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4177. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4178. <xacro:property name="default_origin">
  4179.   <origin xyz="0 0 0" rpy="0 0 0" />
  4180. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4181. <xacro:property name="wheel_length" value="0.05" />
  4182. <xacro:property name="pi" value="3.14159" />
  4183. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4184. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4185. <xacro:property name="default_origin">
  4186.   <origin xyz="0 0 0" rpy="0 0 0" />
  4187. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4188. <xacro:property name="wheel_length" value="0.05" />
  4189. <xacro:property name="pi" value="3.14159" />
  4190. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4191. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4192. <xacro:property name="default_origin">
  4193.   <origin xyz="0 0 0" rpy="0 0 0" />
  4194. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4195. <xacro:property name="wheel_length" value="0.05" />
  4196. <xacro:property name="pi" value="3.14159" />
  4197. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4198. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4199. <xacro:property name="default_origin">
  4200.   <origin xyz="0 0 0" rpy="0 0 0" />
  4201. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4202. <xacro:property name="wheel_length" value="0.05" />
  4203. <xacro:property name="pi" value="3.14159" />
  4204. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4205. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4206. <xacro:property name="default_origin">
  4207.   <origin xyz="0 0 0" rpy="0 0 0" />
  4208. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4209. <xacro:property name="wheel_length" value="0.05" />
  4210. <xacro:property name="pi" value="3.14159" />
  4211. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4212. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4213. <xacro:property name="default_origin">
  4214.   <origin xyz="0 0 0" rpy="0 0 0" />
  4215. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4216. <xacro:property name="wheel_length" value="0.05" />
  4217. <xacro:property name="pi" value="3.14159" />
  4218. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4219. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4220. <xacro:property name="default_origin">
  4221.   <origin xyz="0 0 0" rpy="0 0 0" />
  4222. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4223. <xacro:property name="wheel_length" value="0.05" />
  4224. <xacro:property name="pi" value="3.14159" />
  4225. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4226. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4227. <xacro:property name="default_origin">
  4228.   <origin xyz="0 0 0" rpy="0 0 0" />
  4229. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4230. <xacro:property name="wheel_length" value="0.05" />
  4231. <xacro:property name="pi" value="3.14159" />
  4232. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4233. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4234. <xacro:property name="default_origin">
  4235.   <origin xyz="0 0 0" rpy="0 0 0" />
  4236. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4237. <xacro:property name="wheel_length" value="0.05" />
  4238. <xacro:property name="pi" value="3.14159" />
  4239. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4240. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4241. <xacro:property name="default_origin">
  4242.   <origin xyz="0 0 0" rpy="0 0 0" />
  4243. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4244. <xacro:property name="wheel_length" value="0.05" />
  4245. <xacro:property name="pi" value="3.14159" />
  4246. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4247. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4248. <xacro:property name="default_origin">
  4249.   <origin xyz="0 0 0" rpy="0 0 0" />
  4250. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4251. <xacro:property name="wheel_length" value="0.05" />
  4252. <xacro:property name="pi" value="3.14159" />
  4253. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4254. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4255. <xacro:property name="default_origin">
  4256.   <origin xyz="0 0 0" rpy="0 0 0" />
  4257. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4258. <xacro:property name="wheel_length" value="0.05" />
  4259. <xacro:property name="pi" value="3.14159" />
  4260. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4261. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4262. <xacro:property name="default_origin">
  4263.   <origin xyz="0 0 0" rpy="0 0 0" />
  4264. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4265. <xacro:property name="wheel_length" value="0.05" />
  4266. <xacro:property name="pi" value="3.14159" />
  4267. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4268. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4269. <xacro:property name="default_origin">
  4270.   <origin xyz="0 0 0" rpy="0 0 0" />
  4271. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4272. <xacro:property name="wheel_length" value="0.05" />
  4273. <xacro:property name="pi" value="3.14159" />
  4274. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4275. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4276. <xacro:property name="default_origin">
  4277.   <origin xyz="0 0 0" rpy="0 0 0" />
  4278. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4279. <xacro:property name="wheel_length" value="0.05" />
  4280. <xacro:property name="pi" value="3.14159" />
  4281. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4282. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4283. <xacro:property name="default_origin">
  4284.   <origin xyz="0 0 0" rpy="0 0 0" />
  4285. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4286. <xacro:property name="wheel_length" value="0.05" />
  4287. <xacro:property name="pi" value="3.14159" />
  4288. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4289. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4290. <xacro:property name="default_origin">
  4291.   <origin xyz="0 0 0" rpy="0 0 0" />
  4292. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4293. <xacro:property name="wheel_length" value="0.05" />
  4294. <xacro:property name="pi" value="3.14159" />
  4295. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4296. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4297. <xacro:property name="default_origin">
  4298.   <origin xyz="0 0 0" rpy="0 0 0" />
  4299. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4300. <xacro:property name="wheel_length" value="0.05" />
  4301. <xacro:property name="pi" value="3.14159" />
  4302. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4303. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4304. <xacro:property name="default_origin">
  4305.   <origin xyz="0 0 0" rpy="0 0 0" />
  4306. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4307. <xacro:property name="wheel_length" value="0.05" />
  4308. <xacro:property name="pi" value="3.14159" />
  4309. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4310. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4311. <xacro:property name="default_origin">
  4312.   <origin xyz="0 0 0" rpy="0 0 0" />
  4313. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4314. <xacro:property name="wheel_length" value="0.05" />
  4315. <xacro:property name="pi" value="3.14159" />
  4316. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4317. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4318. <xacro:property name="default_origin">
  4319.   <origin xyz="0 0 0" rpy="0 0 0" />
  4320. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4321. <xacro:property name="wheel_length" value="0.05" />
  4322. <xacro:property name="pi" value="3.14159" />
  4323. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4324. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4325. <xacro:property name="default_origin">
  4326.   <origin xyz="0 0 0" rpy="0 0 0" />
  4327. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4328. <xacro:property name="wheel_length" value="0.05" />
  4329. <xacro:property name="pi" value="3.14159" />
  4330. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4331. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4332. <xacro:property name="default_origin">
  4333.   <origin xyz="0 0 0" rpy="0 0 0" />
  4334. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4335. <xacro:property name="wheel_length" value="0.05" />
  4336. <xacro:property name="pi" value="3.14159" />
  4337. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4338. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4339. <xacro:property name="default_origin">
  4340.   <origin xyz="0 0 0" rpy="0 0 0" />
  4341. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4342. <xacro:property name="wheel_length" value="0.05" />
  4343. <xacro:property name="pi" value="3.14159" />
  4344. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4345. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4346. <xacro:property name="default_origin">
  4347.   <origin xyz="0 0 0" rpy="0 0 0" />
  4348. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4349. <xacro:property name="wheel_length" value="0.05" />
  4350. <xacro:property name="pi" value="3.14159" />
  4351. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4352. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4353. <xacro:property name="default_origin">
  4354.   <origin xyz="0 0 0" rpy="0 0 0" />
  4355. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4356. <xacro:property name="wheel_length" value="0.05" />
  4357. <xacro:property name="pi" value="3.14159" />
  4358. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4359. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4360. <xacro:property name="default_origin">
  4361.   <origin xyz="0 0 0" rpy="0 0 0" />
  4362. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4363. <xacro:property name="wheel_length" value="0.05" />
  4364. <xacro:property name="pi" value="3.14159" />
  4365. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4366. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4367. <xacro:property name="default_origin">
  4368.   <origin xyz="0 0 0" rpy="0 0 0" />
  4369. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4370. <xacro:property name="wheel_length" value="0.05" />
  4371. <xacro:property name="pi" value="3.14159" />
  4372. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4373. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4374. <xacro:property name="default_origin">
  4375.   <origin xyz="0 0 0" rpy="0 0 0" />
  4376. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4377. <xacro:property name="wheel_length" value="0.05" />
  4378. <xacro:property name="pi" value="3.14159" />
  4379. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4380. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4381. <xacro:property name="default_origin">
  4382.   <origin xyz="0 0 0" rpy="0 0 0" />
  4383. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4384. <xacro:property name="wheel_length" value="0.05" />
  4385. <xacro:property name="pi" value="3.14159" />
  4386. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4387. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4388. <xacro:property name="default_origin">
  4389.   <origin xyz="0 0 0" rpy="0 0 0" />
  4390. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4391. <xacro:property name="wheel_length" value="0.05" />
  4392. <xacro:property name="pi" value="3.14159" />
  4393. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4394. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4395. <xacro:property name="default_origin">
  4396.   <origin xyz="0 0 0" rpy="0 0 0" />
  4397. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4398. <xacro:property name="wheel_length" value="0.05" />
  4399. <xacro:property name="pi" value="3.14159" />
  4400. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4401. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4402. <xacro:property name="default_origin">
  4403.   <origin xyz="0 0 0" rpy="0 0 0" />
  4404. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4405. <xacro:property name="wheel_length" value="0.05" />
  4406. <xacro:property name="pi" value="3.14159" />
  4407. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4408. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4409. <xacro:property name="default_origin">
  4410.   <origin xyz="0 0 0" rpy="0 0 0" />
  4411. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4412. <xacro:property name="wheel_length" value="0.05" />
  4413. <xacro:property name="pi" value="3.14159" />
  4414. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4415. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4416. <xacro:property name="default_origin">
  4417.   <origin xyz="0 0 0" rpy="0 0 0" />
  4418. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4419. <xacro:property name="wheel_length" value="0.05" />
  4420. <xacro:property name="pi" value="3.14159" />
  4421. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4422. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4423. <xacro:property name="default_origin">
  4424.   <origin xyz="0 0 0" rpy="0 0 0" />
  4425. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4426. <xacro:property name="wheel_length" value="0.05" />
  4427. <xacro:property name="pi" value="3.14159" />
  4428. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4429. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4430. <xacro:property name="default_origin">
  4431.   <origin xyz="0 0 0" rpy="0 0 0" />
  4432. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4433. <xacro:property name="wheel_length" value="0.05" />
  4434. <xacro:property name="pi" value="3.14159" />
  4435. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4436. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4437. <xacro:property name="default_origin">
  4438.   <origin xyz="0 0 0" rpy="0 0 0" />
  4439. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4440. <xacro:property name="wheel_length" value="0.05" />
  4441. <xacro:property name="pi" value="3.14159" />
  4442. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4443. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4444. <xacro:property name="default_origin">
  4445.   <origin xyz="0 0 0" rpy="0 0 0" />
  4446. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4447. <xacro:property name="wheel_length" value="0.05" />
  4448. <xacro:property name="pi" value="3.14159" />
  4449. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4450. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4451. <xacro:property name="default_origin">
  4452.   <origin xyz="0 0 0" rpy="0 0 0" />
  4453. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4454. <xacro:property name="wheel_length" value="0.05" />
  4455. <xacro:property name="pi" value="3.14159" />
  4456. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4457. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4458. <xacro:property name="default_origin">
  4459.   <origin xyz="0 0 0" rpy="0 0 0" />
  4460. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4461. <xacro:property name="wheel_length" value="0.05" />
  4462. <xacro:property name="pi" value="3.14159" />
  4463. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4464. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4465. <xacro:property name="default_origin">
  4466.   <origin xyz="0 0 0" rpy="0 0 0" />
  4467. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4468. <xacro:property name="wheel_length" value="0.05" />
  4469. <xacro:property name="pi" value="3.14159" />
  4470. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4471. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4472. <xacro:property name="default_origin">
  4473.   <origin xyz="0 0 0" rpy="0 0 0" />
  4474. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4475. <xacro:property name="wheel_length" value="0.05" />
  4476. <xacro:property name="pi" value="3.14159" />
  4477. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4478. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4479. <xacro:property name="default_origin">
  4480.   <origin xyz="0 0 0" rpy="0 0 0" />
  4481. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4482. <xacro:property name="wheel_length" value="0.05" />
  4483. <xacro:property name="pi" value="3.14159" />
  4484. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4485. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4486. <xacro:property name="default_origin">
  4487.   <origin xyz="0 0 0" rpy="0 0 0" />
  4488. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4489. <xacro:property name="wheel_length" value="0.05" />
  4490. <xacro:property name="pi" value="3.14159" />
  4491. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4492. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4493. <xacro:property name="default_origin">
  4494.   <origin xyz="0 0 0" rpy="0 0 0" />
  4495. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4496. <xacro:property name="wheel_length" value="0.05" />
  4497. <xacro:property name="pi" value="3.14159" />
  4498. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4499. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4500. <xacro:property name="default_origin">
  4501.   <origin xyz="0 0 0" rpy="0 0 0" />
  4502. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4503. <xacro:property name="wheel_length" value="0.05" />
  4504. <xacro:property name="pi" value="3.14159" />
  4505. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4506. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4507. <xacro:property name="default_origin">
  4508.   <origin xyz="0 0 0" rpy="0 0 0" />
  4509. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4510. <xacro:property name="wheel_length" value="0.05" />
  4511. <xacro:property name="pi" value="3.14159" />
  4512. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4513. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4514. <xacro:property name="default_origin">
  4515.   <origin xyz="0 0 0" rpy="0 0 0" />
  4516. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4517. <xacro:property name="wheel_length" value="0.05" />
  4518. <xacro:property name="pi" value="3.14159" />
  4519. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4520. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4521. <xacro:property name="default_origin">
  4522.   <origin xyz="0 0 0" rpy="0 0 0" />
  4523. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4524. <xacro:property name="wheel_length" value="0.05" />
  4525. <xacro:property name="pi" value="3.14159" />
  4526. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4527. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4528. <xacro:property name="default_origin">
  4529.   <origin xyz="0 0 0" rpy="0 0 0" />
  4530. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4531. <xacro:property name="wheel_length" value="0.05" />
  4532. <xacro:property name="pi" value="3.14159" />
  4533. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4534. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4535. <xacro:property name="default_origin">
  4536.   <origin xyz="0 0 0" rpy="0 0 0" />
  4537. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4538. <xacro:property name="wheel_length" value="0.05" />
  4539. <xacro:property name="pi" value="3.14159" />
  4540. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4541. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4542. <xacro:property name="default_origin">
  4543.   <origin xyz="0 0 0" rpy="0 0 0" />
  4544. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4545. <xacro:property name="wheel_length" value="0.05" />
  4546. <xacro:property name="pi" value="3.14159" />
  4547. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4548. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4549. <xacro:property name="default_origin">
  4550.   <origin xyz="0 0 0" rpy="0 0 0" />
  4551. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4552. <xacro:property name="wheel_length" value="0.05" />
  4553. <xacro:property name="pi" value="3.14159" />
  4554. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4555. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4556. <xacro:property name="default_origin">
  4557.   <origin xyz="0 0 0" rpy="0 0 0" />
  4558. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4559. <xacro:property name="wheel_length" value="0.05" />
  4560. <xacro:property name="pi" value="3.14159" />
  4561. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4562. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4563. <xacro:property name="default_origin">
  4564.   <origin xyz="0 0 0" rpy="0 0 0" />
  4565. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4566. <xacro:property name="wheel_length" value="0.05" />
  4567. <xacro:property name="pi" value="3.14159" />
  4568. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4569. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4570. <xacro:property name="default_origin">
  4571.   <origin xyz="0 0 0" rpy="0 0 0" />
  4572. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4573. <xacro:property name="wheel_length" value="0.05" />
  4574. <xacro:property name="pi" value="3.14159" />
  4575. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4576. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4577. <xacro:property name="default_origin">
  4578.   <origin xyz="0 0 0" rpy="0 0 0" />
  4579. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4580. <xacro:property name="wheel_length" value="0.05" />
  4581. <xacro:property name="pi" value="3.14159" />
  4582. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4583. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4584. <xacro:property name="default_origin">
  4585.   <origin xyz="0 0 0" rpy="0 0 0" />
  4586. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4587. <xacro:property name="wheel_length" value="0.05" />
  4588. <xacro:property name="pi" value="3.14159" />
  4589. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4590. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4591. <xacro:property name="default_origin">
  4592.   <origin xyz="0 0 0" rpy="0 0 0" />
  4593. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4594. <xacro:property name="wheel_length" value="0.05" />
  4595. <xacro:property name="pi" value="3.14159" />
  4596. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4597. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4598. <xacro:property name="default_origin">
  4599.   <origin xyz="0 0 0" rpy="0 0 0" />
  4600. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4601. <xacro:property name="wheel_length" value="0.05" />
  4602. <xacro:property name="pi" value="3.14159" />
  4603. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4604. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4605. <xacro:property name="default_origin">
  4606.   <origin xyz="0 0 0" rpy="0 0 0" />
  4607. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4608. <xacro:property name="wheel_length" value="0.05" />
  4609. <xacro:property name="pi" value="3.14159" />
  4610. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4611. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4612. <xacro:property name="default_origin">
  4613.   <origin xyz="0 0 0" rpy="0 0 0" />
  4614. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4615. <xacro:property name="wheel_length" value="0.05" />
  4616. <xacro:property name="pi" value="3.14159" />
  4617. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4618. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4619. <xacro:property name="default_origin">
  4620.   <origin xyz="0 0 0" rpy="0 0 0" />
  4621. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4622. <xacro:property name="wheel_length" value="0.05" />
  4623. <xacro:property name="pi" value="3.14159" />
  4624. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4625. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4626. <xacro:property name="default_origin">
  4627.   <origin xyz="0 0 0" rpy="0 0 0" />
  4628. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4629. <xacro:property name="wheel_length" value="0.05" />
  4630. <xacro:property name="pi" value="3.14159" />
  4631. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4632. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4633. <xacro:property name="default_origin">
  4634.   <origin xyz="0 0 0" rpy="0 0 0" />
  4635. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4636. <xacro:property name="wheel_length" value="0.05" />
  4637. <xacro:property name="pi" value="3.14159" />
  4638. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4639. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4640. <xacro:property name="default_origin">
  4641.   <origin xyz="0 0 0" rpy="0 0 0" />
  4642. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4643. <xacro:property name="wheel_length" value="0.05" />
  4644. <xacro:property name="pi" value="3.14159" />
  4645. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4646. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4647. <xacro:property name="default_origin">
  4648.   <origin xyz="0 0 0" rpy="0 0 0" />
  4649. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4650. <xacro:property name="wheel_length" value="0.05" />
  4651. <xacro:property name="pi" value="3.14159" />
  4652. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4653. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4654. <xacro:property name="default_origin">
  4655.   <origin xyz="0 0 0" rpy="0 0 0" />
  4656. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4657. <xacro:property name="wheel_length" value="0.05" />
  4658. <xacro:property name="pi" value="3.14159" />
  4659. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4660. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4661. <xacro:property name="default_origin">
  4662.   <origin xyz="0 0 0" rpy="0 0 0" />
  4663. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4664. <xacro:property name="wheel_length" value="0.05" />
  4665. <xacro:property name="pi" value="3.14159" />
  4666. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4667. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4668. <xacro:property name="default_origin">
  4669.   <origin xyz="0 0 0" rpy="0 0 0" />
  4670. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4671. <xacro:property name="wheel_length" value="0.05" />
  4672. <xacro:property name="pi" value="3.14159" />
  4673. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4674. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4675. <xacro:property name="default_origin">
  4676.   <origin xyz="0 0 0" rpy="0 0 0" />
  4677. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4678. <xacro:property name="wheel_length" value="0.05" />
  4679. <xacro:property name="pi" value="3.14159" />
  4680. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4681. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4682. <xacro:property name="default_origin">
  4683.   <origin xyz="0 0 0" rpy="0 0 0" />
  4684. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4685. <xacro:property name="wheel_length" value="0.05" />
  4686. <xacro:property name="pi" value="3.14159" />
  4687. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4688. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4689. <xacro:property name="default_origin">
  4690.   <origin xyz="0 0 0" rpy="0 0 0" />
  4691. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4692. <xacro:property name="wheel_length" value="0.05" />
  4693. <xacro:property name="pi" value="3.14159" />
  4694. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4695. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4696. <xacro:property name="default_origin">
  4697.   <origin xyz="0 0 0" rpy="0 0 0" />
  4698. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4699. <xacro:property name="wheel_length" value="0.05" />
  4700. <xacro:property name="pi" value="3.14159" />
  4701. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4702. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4703. <xacro:property name="default_origin">
  4704.   <origin xyz="0 0 0" rpy="0 0 0" />
  4705. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4706. <xacro:property name="wheel_length" value="0.05" />
  4707. <xacro:property name="pi" value="3.14159" />
  4708. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4709. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4710. <xacro:property name="default_origin">
  4711.   <origin xyz="0 0 0" rpy="0 0 0" />
  4712. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4713. <xacro:property name="wheel_length" value="0.05" />
  4714. <xacro:property name="pi" value="3.14159" />
  4715. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4716. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4717. <xacro:property name="default_origin">
  4718.   <origin xyz="0 0 0" rpy="0 0 0" />
  4719. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4720. <xacro:property name="wheel_length" value="0.05" />
  4721. <xacro:property name="pi" value="3.14159" />
  4722. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4723. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4724. <xacro:property name="default_origin">
  4725.   <origin xyz="0 0 0" rpy="0 0 0" />
  4726. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4727. <xacro:property name="wheel_length" value="0.05" />
  4728. <xacro:property name="pi" value="3.14159" />
  4729. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4730. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4731. <xacro:property name="default_origin">
  4732.   <origin xyz="0 0 0" rpy="0 0 0" />
  4733. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4734. <xacro:property name="wheel_length" value="0.05" />
  4735. <xacro:property name="pi" value="3.14159" />
  4736. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4737. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4738. <xacro:property name="default_origin">
  4739.   <origin xyz="0 0 0" rpy="0 0 0" />
  4740. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4741. <xacro:property name="wheel_length" value="0.05" />
  4742. <xacro:property name="pi" value="3.14159" />
  4743. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4744. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4745. <xacro:property name="default_origin">
  4746.   <origin xyz="0 0 0" rpy="0 0 0" />
  4747. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4748. <xacro:property name="wheel_length" value="0.05" />
  4749. <xacro:property name="pi" value="3.14159" />
  4750. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4751. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4752. <xacro:property name="default_origin">
  4753.   <origin xyz="0 0 0" rpy="0 0 0" />
  4754. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4755. <xacro:property name="wheel_length" value="0.05" />
  4756. <xacro:property name="pi" value="3.14159" />
  4757. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4758. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4759. <xacro:property name="default_origin">
  4760.   <origin xyz="0 0 0" rpy="0 0 0" />
  4761. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4762. <xacro:property name="wheel_length" value="0.05" />
  4763. <xacro:property name="pi" value="3.14159" />
  4764. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4765. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4766. <xacro:property name="default_origin">
  4767.   <origin xyz="0 0 0" rpy="0 0 0" />
  4768. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4769. <xacro:property name="wheel_length" value="0.05" />
  4770. <xacro:property name="pi" value="3.14159" />
  4771. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4772. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4773. <xacro:property name="default_origin">
  4774.   <origin xyz="0 0 0" rpy="0 0 0" />
  4775. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4776. <xacro:property name="wheel_length" value="0.05" />
  4777. <xacro:property name="pi" value="3.14159" />
  4778. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4779. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4780. <xacro:property name="default_origin">
  4781.   <origin xyz="0 0 0" rpy="0 0 0" />
  4782. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4783. <xacro:property name="wheel_length" value="0.05" />
  4784. <xacro:property name="pi" value="3.14159" />
  4785. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4786. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4787. <xacro:property name="default_origin">
  4788.   <origin xyz="0 0 0" rpy="0 0 0" />
  4789. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4790. <xacro:property name="wheel_length" value="0.05" />
  4791. <xacro:property name="pi" value="3.14159" />
  4792. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4793. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4794. <xacro:property name="default_origin">
  4795.   <origin xyz="0 0 0" rpy="0 0 0" />
  4796. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4797. <xacro:property name="wheel_length" value="0.05" />
  4798. <xacro:property name="pi" value="3.14159" />
  4799. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4800. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4801. <xacro:property name="default_origin">
  4802.   <origin xyz="0 0 0" rpy="0 0 0" />
  4803. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4804. <xacro:property name="wheel_length" value="0.05" />
  4805. <xacro:property name="pi" value="3.14159" />
  4806. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4807. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4808. <xacro:property name="default_origin">
  4809.   <origin xyz="0 0 0" rpy="0 0 0" />
  4810. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4811. <xacro:property name="wheel_length" value="0.05" />
  4812. <xacro:property name="pi" value="3.14159" />
  4813. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4814. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4815. <xacro:property name="default_origin">
  4816.   <origin xyz="0 0 0" rpy="0 0 0" />
  4817. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4818. <xacro:property name="wheel_length" value="0.05" />
  4819. <xacro:property name="pi" value="3.14159" />
  4820. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4821. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4822. <xacro:property name="default_origin">
  4823.   <origin xyz="0 0 0" rpy="0 0 0" />
  4824. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4825. <xacro:property name="wheel_length" value="0.05" />
  4826. <xacro:property name="pi" value="3.14159" />
  4827. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4828. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4829. <xacro:property name="default_origin">
  4830.   <origin xyz="0 0 0" rpy="0 0 0" />
  4831. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4832. <xacro:property name="wheel_length" value="0.05" />
  4833. <xacro:property name="pi" value="3.14159" />
  4834. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4835. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4836. <xacro:property name="default_origin">
  4837.   <origin xyz="0 0 0" rpy="0 0 0" />
  4838. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4839. <xacro:property name="wheel_length" value="0.05" />
  4840. <xacro:property name="pi" value="3.14159" />
  4841. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4842. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4843. <xacro:property name="default_origin">
  4844.   <origin xyz="0 0 0" rpy="0 0 0" />
  4845. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4846. <xacro:property name="wheel_length" value="0.05" />
  4847. <xacro:property name="pi" value="3.14159" />
  4848. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4849. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4850. <xacro:property name="default_origin">
  4851.   <origin xyz="0 0 0" rpy="0 0 0" />
  4852. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4853. <xacro:property name="wheel_length" value="0.05" />
  4854. <xacro:property name="pi" value="3.14159" />
  4855. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4856. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4857. <xacro:property name="default_origin">
  4858.   <origin xyz="0 0 0" rpy="0 0 0" />
  4859. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4860. <xacro:property name="wheel_length" value="0.05" />
  4861. <xacro:property name="pi" value="3.14159" />
  4862. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4863. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4864. <xacro:property name="default_origin">
  4865.   <origin xyz="0 0 0" rpy="0 0 0" />
  4866. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4867. <xacro:property name="wheel_length" value="0.05" />
  4868. <xacro:property name="pi" value="3.14159" />
  4869. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4870. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4871. <xacro:property name="default_origin">
  4872.   <origin xyz="0 0 0" rpy="0 0 0" />
  4873. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4874. <xacro:property name="wheel_length" value="0.05" />
  4875. <xacro:property name="pi" value="3.14159" />
  4876. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4877. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4878. <xacro:property name="default_origin">
  4879.   <origin xyz="0 0 0" rpy="0 0 0" />
  4880. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4881. <xacro:property name="wheel_length" value="0.05" />
  4882. <xacro:property name="pi" value="3.14159" />
  4883. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4884. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4885. <xacro:property name="default_origin">
  4886.   <origin xyz="0 0 0" rpy="0 0 0" />
  4887. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4888. <xacro:property name="wheel_length" value="0.05" />
  4889. <xacro:property name="pi" value="3.14159" />
  4890. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4891. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4892. <xacro:property name="default_origin">
  4893.   <origin xyz="0 0 0" rpy="0 0 0" />
  4894. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4895. <xacro:property name="wheel_length" value="0.05" />
  4896. <xacro:property name="pi" value="3.14159" />
  4897. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4898. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4899. <xacro:property name="default_origin">
  4900.   <origin xyz="0 0 0" rpy="0 0 0" />
  4901. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4902. <xacro:property name="wheel_length" value="0.05" />
  4903. <xacro:property name="pi" value="3.14159" />
  4904. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4905. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4906. <xacro:property name="default_origin">
  4907.   <origin xyz="0 0 0" rpy="0 0 0" />
  4908. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4909. <xacro:property name="wheel_length" value="0.05" />
  4910. <xacro:property name="pi" value="3.14159" />
  4911. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4912. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4913. <xacro:property name="default_origin">
  4914.   <origin xyz="0 0 0" rpy="0 0 0" />
  4915. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4916. <xacro:property name="wheel_length" value="0.05" />
  4917. <xacro:property name="pi" value="3.14159" />
  4918. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4919. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4920. <xacro:property name="default_origin">
  4921.   <origin xyz="0 0 0" rpy="0 0 0" />
  4922. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4923. <xacro:property name="wheel_length" value="0.05" />
  4924. <xacro:property name="pi" value="3.14159" />
  4925. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4926. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4927. <xacro:property name="default_origin">
  4928.   <origin xyz="0 0 0" rpy="0 0 0" />
  4929. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4930. <xacro:property name="wheel_length" value="0.05" />
  4931. <xacro:property name="pi" value="3.14159" />
  4932. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4933. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4934. <xacro:property name="default_origin">
  4935.   <origin xyz="0 0 0" rpy="0 0 0" />
  4936. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4937. <xacro:property name="wheel_length" value="0.05" />
  4938. <xacro:property name="pi" value="3.14159" />
  4939. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4940. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4941. <xacro:property name="default_origin">
  4942.   <origin xyz="0 0 0" rpy="0 0 0" />
  4943. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4944. <xacro:property name="wheel_length" value="0.05" />
  4945. <xacro:property name="pi" value="3.14159" />
  4946. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4947. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4948. <xacro:property name="default_origin">
  4949.   <origin xyz="0 0 0" rpy="0 0 0" />
  4950. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4951. <xacro:property name="wheel_length" value="0.05" />
  4952. <xacro:property name="pi" value="3.14159" />
  4953. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4954. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4955. <xacro:property name="default_origin">
  4956.   <origin xyz="0 0 0" rpy="0 0 0" />
  4957. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4958. <xacro:property name="wheel_length" value="0.05" />
  4959. <xacro:property name="pi" value="3.14159" />
  4960. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4961. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4962. <xacro:property name="default_origin">
  4963.   <origin xyz="0 0 0" rpy="0 0 0" />
  4964. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4965. <xacro:property name="wheel_length" value="0.05" />
  4966. <xacro:property name="pi" value="3.14159" />
  4967. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4968. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4969. <xacro:property name="default_origin">
  4970.   <origin xyz="0 0 0" rpy="0 0 0" />
  4971. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4972. <xacro:property name="wheel_length" value="0.05" />
  4973. <xacro:property name="pi" value="3.14159" />
  4974. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4975. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4976. <xacro:property name="default_origin">
  4977.   <origin xyz="0 0 0" rpy="0 0 0" />
  4978. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4979. <xacro:property name="wheel_length" value="0.05" />
  4980. <xacro:property name="pi" value="3.14159" />
  4981. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4982. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4983. <xacro:property name="default_origin">
  4984.   <origin xyz="0 0 0" rpy="0 0 0" />
  4985. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4986. <xacro:property name="wheel_length" value="0.05" />
  4987. <xacro:property name="pi" value="3.14159" />
  4988. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4989. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4990. <xacro:property name="default_origin">
  4991.   <origin xyz="0 0 0" rpy="0 0 0" />
  4992. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  4993. <xacro:property name="wheel_length" value="0.05" />
  4994. <xacro:property name="pi" value="3.14159" />
  4995. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  4996. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  4997. <xacro:property name="default_origin">
  4998.   <origin xyz="0 0 0" rpy="0 0 0" />
  4999. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5000. <xacro:property name="wheel_length" value="0.05" />
  5001. <xacro:property name="pi" value="3.14159" />
  5002. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5003. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5004. <xacro:property name="default_origin">
  5005.   <origin xyz="0 0 0" rpy="0 0 0" />
  5006. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5007. <xacro:property name="wheel_length" value="0.05" />
  5008. <xacro:property name="pi" value="3.14159" />
  5009. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5010. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5011. <xacro:property name="default_origin">
  5012.   <origin xyz="0 0 0" rpy="0 0 0" />
  5013. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5014. <xacro:property name="wheel_length" value="0.05" />
  5015. <xacro:property name="pi" value="3.14159" />
  5016. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5017. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5018. <xacro:property name="default_origin">
  5019.   <origin xyz="0 0 0" rpy="0 0 0" />
  5020. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5021. <xacro:property name="wheel_length" value="0.05" />
  5022. <xacro:property name="pi" value="3.14159" />
  5023. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5024. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5025. <xacro:property name="default_origin">
  5026.   <origin xyz="0 0 0" rpy="0 0 0" />
  5027. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5028. <xacro:property name="wheel_length" value="0.05" />
  5029. <xacro:property name="pi" value="3.14159" />
  5030. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5031. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5032. <xacro:property name="default_origin">
  5033.   <origin xyz="0 0 0" rpy="0 0 0" />
  5034. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5035. <xacro:property name="wheel_length" value="0.05" />
  5036. <xacro:property name="pi" value="3.14159" />
  5037. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5038. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5039. <xacro:property name="default_origin">
  5040.   <origin xyz="0 0 0" rpy="0 0 0" />
  5041. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5042. <xacro:property name="wheel_length" value="0.05" />
  5043. <xacro:property name="pi" value="3.14159" />
  5044. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5045. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5046. <xacro:property name="default_origin">
  5047.   <origin xyz="0 0 0" rpy="0 0 0" />
  5048. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5049. <xacro:property name="wheel_length" value="0.05" />
  5050. <xacro:property name="pi" value="3.14159" />
  5051. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5052. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5053. <xacro:property name="default_origin">
  5054.   <origin xyz="0 0 0" rpy="0 0 0" />
  5055. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5056. <xacro:property name="wheel_length" value="0.05" />
  5057. <xacro:property name="pi" value="3.14159" />
  5058. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5059. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5060. <xacro:property name="default_origin">
  5061.   <origin xyz="0 0 0" rpy="0 0 0" />
  5062. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5063. <xacro:property name="wheel_length" value="0.05" />
  5064. <xacro:property name="pi" value="3.14159" />
  5065. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5066. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5067. <xacro:property name="default_origin">
  5068.   <origin xyz="0 0 0" rpy="0 0 0" />
  5069. </xacro:property> Gazebo/Blue<xacro:property name="wheel_radius" value="0.1" />
  5070. <xacro:property name="wheel_length" value="0.05" />
  5071. <xacro:property name="pi" value="3.14159" />
  5072. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5073. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5074. <xacro:property name="default_origin">
  5075.   <origin xyz="0 0 0" rpy="0 0 0" />
  5076. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5077. <xacro:property name="wheel_length" value="0.05" />
  5078. <xacro:property name="pi" value="3.14159" />
  5079. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5080. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5081. <xacro:property name="default_origin">
  5082.   <origin xyz="0 0 0" rpy="0 0 0" />
  5083. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5084. <xacro:property name="wheel_length" value="0.05" />
  5085. <xacro:property name="pi" value="3.14159" />
  5086. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5087. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5088. <xacro:property name="default_origin">
  5089.   <origin xyz="0 0 0" rpy="0 0 0" />
  5090. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5091. <xacro:property name="wheel_length" value="0.05" />
  5092. <xacro:property name="pi" value="3.14159" />
  5093. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5094. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5095. <xacro:property name="default_origin">
  5096.   <origin xyz="0 0 0" rpy="0 0 0" />
  5097. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5098. <xacro:property name="wheel_length" value="0.05" />
  5099. <xacro:property name="pi" value="3.14159" />
  5100. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5101. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5102. <xacro:property name="default_origin">
  5103.   <origin xyz="0 0 0" rpy="0 0 0" />
  5104. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5105. <xacro:property name="wheel_length" value="0.05" />
  5106. <xacro:property name="pi" value="3.14159" />
  5107. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5108. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5109. <xacro:property name="default_origin">
  5110.   <origin xyz="0 0 0" rpy="0 0 0" />
  5111. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5112. <xacro:property name="wheel_length" value="0.05" />
  5113. <xacro:property name="pi" value="3.14159" />
  5114. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5115. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5116. <xacro:property name="default_origin">
  5117.   <origin xyz="0 0 0" rpy="0 0 0" />
  5118. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5119. <xacro:property name="wheel_length" value="0.05" />
  5120. <xacro:property name="pi" value="3.14159" />
  5121. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5122. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5123. <xacro:property name="default_origin">
  5124.   <origin xyz="0 0 0" rpy="0 0 0" />
  5125. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5126. <xacro:property name="wheel_length" value="0.05" />
  5127. <xacro:property name="pi" value="3.14159" />
  5128. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5129. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5130. <xacro:property name="default_origin">
  5131.   <origin xyz="0 0 0" rpy="0 0 0" />
  5132. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5133. <xacro:property name="wheel_length" value="0.05" />
  5134. <xacro:property name="pi" value="3.14159" />
  5135. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5136. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5137. <xacro:property name="default_origin">
  5138.   <origin xyz="0 0 0" rpy="0 0 0" />
  5139. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5140. <xacro:property name="wheel_length" value="0.05" />
  5141. <xacro:property name="pi" value="3.14159" />
  5142. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5143. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5144. <xacro:property name="default_origin">
  5145.   <origin xyz="0 0 0" rpy="0 0 0" />
  5146. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5147. <xacro:property name="wheel_length" value="0.05" />
  5148. <xacro:property name="pi" value="3.14159" />
  5149. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5150. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5151. <xacro:property name="default_origin">
  5152.   <origin xyz="0 0 0" rpy="0 0 0" />
  5153. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5154. <xacro:property name="wheel_length" value="0.05" />
  5155. <xacro:property name="pi" value="3.14159" />
  5156. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5157. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5158. <xacro:property name="default_origin">
  5159.   <origin xyz="0 0 0" rpy="0 0 0" />
  5160. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5161. <xacro:property name="wheel_length" value="0.05" />
  5162. <xacro:property name="pi" value="3.14159" />
  5163. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5164. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5165. <xacro:property name="default_origin">
  5166.   <origin xyz="0 0 0" rpy="0 0 0" />
  5167. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5168. <xacro:property name="wheel_length" value="0.05" />
  5169. <xacro:property name="pi" value="3.14159" />
  5170. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5171. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5172. <xacro:property name="default_origin">
  5173.   <origin xyz="0 0 0" rpy="0 0 0" />
  5174. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5175. <xacro:property name="wheel_length" value="0.05" />
  5176. <xacro:property name="pi" value="3.14159" />
  5177. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5178. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5179. <xacro:property name="default_origin">
  5180.   <origin xyz="0 0 0" rpy="0 0 0" />
  5181. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5182. <xacro:property name="wheel_length" value="0.05" />
  5183. <xacro:property name="pi" value="3.14159" />
  5184. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5185. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5186. <xacro:property name="default_origin">
  5187.   <origin xyz="0 0 0" rpy="0 0 0" />
  5188. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5189. <xacro:property name="wheel_length" value="0.05" />
  5190. <xacro:property name="pi" value="3.14159" />
  5191. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5192. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5193. <xacro:property name="default_origin">
  5194.   <origin xyz="0 0 0" rpy="0 0 0" />
  5195. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5196. <xacro:property name="wheel_length" value="0.05" />
  5197. <xacro:property name="pi" value="3.14159" />
  5198. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5199. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5200. <xacro:property name="default_origin">
  5201.   <origin xyz="0 0 0" rpy="0 0 0" />
  5202. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5203. <xacro:property name="wheel_length" value="0.05" />
  5204. <xacro:property name="pi" value="3.14159" />
  5205. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5206. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5207. <xacro:property name="default_origin">
  5208.   <origin xyz="0 0 0" rpy="0 0 0" />
  5209. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5210. <xacro:property name="wheel_length" value="0.05" />
  5211. <xacro:property name="pi" value="3.14159" />
  5212. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5213. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5214. <xacro:property name="default_origin">
  5215.   <origin xyz="0 0 0" rpy="0 0 0" />
  5216. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5217. <xacro:property name="wheel_length" value="0.05" />
  5218. <xacro:property name="pi" value="3.14159" />
  5219. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5220. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5221. <xacro:property name="default_origin">
  5222.   <origin xyz="0 0 0" rpy="0 0 0" />
  5223. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5224. <xacro:property name="wheel_length" value="0.05" />
  5225. <xacro:property name="pi" value="3.14159" />
  5226. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5227. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5228. <xacro:property name="default_origin">
  5229.   <origin xyz="0 0 0" rpy="0 0 0" />
  5230. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5231. <xacro:property name="wheel_length" value="0.05" />
  5232. <xacro:property name="pi" value="3.14159" />
  5233. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5234. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5235. <xacro:property name="default_origin">
  5236.   <origin xyz="0 0 0" rpy="0 0 0" />
  5237. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5238. <xacro:property name="wheel_length" value="0.05" />
  5239. <xacro:property name="pi" value="3.14159" />
  5240. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5241. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5242. <xacro:property name="default_origin">
  5243.   <origin xyz="0 0 0" rpy="0 0 0" />
  5244. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5245. <xacro:property name="wheel_length" value="0.05" />
  5246. <xacro:property name="pi" value="3.14159" />
  5247. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5248. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5249. <xacro:property name="default_origin">
  5250.   <origin xyz="0 0 0" rpy="0 0 0" />
  5251. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5252. <xacro:property name="wheel_length" value="0.05" />
  5253. <xacro:property name="pi" value="3.14159" />
  5254. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5255. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5256. <xacro:property name="default_origin">
  5257.   <origin xyz="0 0 0" rpy="0 0 0" />
  5258. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5259. <xacro:property name="wheel_length" value="0.05" />
  5260. <xacro:property name="pi" value="3.14159" />
  5261. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5262. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5263. <xacro:property name="default_origin">
  5264.   <origin xyz="0 0 0" rpy="0 0 0" />
  5265. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5266. <xacro:property name="wheel_length" value="0.05" />
  5267. <xacro:property name="pi" value="3.14159" />
  5268. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5269. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5270. <xacro:property name="default_origin">
  5271.   <origin xyz="0 0 0" rpy="0 0 0" />
  5272. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5273. <xacro:property name="wheel_length" value="0.05" />
  5274. <xacro:property name="pi" value="3.14159" />
  5275. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5276. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5277. <xacro:property name="default_origin">
  5278.   <origin xyz="0 0 0" rpy="0 0 0" />
  5279. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5280. <xacro:property name="wheel_length" value="0.05" />
  5281. <xacro:property name="pi" value="3.14159" />
  5282. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5283. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5284. <xacro:property name="default_origin">
  5285.   <origin xyz="0 0 0" rpy="0 0 0" />
  5286. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5287. <xacro:property name="wheel_length" value="0.05" />
  5288. <xacro:property name="pi" value="3.14159" />
  5289. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5290. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5291. <xacro:property name="default_origin">
  5292.   <origin xyz="0 0 0" rpy="0 0 0" />
  5293. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5294. <xacro:property name="wheel_length" value="0.05" />
  5295. <xacro:property name="pi" value="3.14159" />
  5296. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5297. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5298. <xacro:property name="default_origin">
  5299.   <origin xyz="0 0 0" rpy="0 0 0" />
  5300. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5301. <xacro:property name="wheel_length" value="0.05" />
  5302. <xacro:property name="pi" value="3.14159" />
  5303. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5304. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5305. <xacro:property name="default_origin">
  5306.   <origin xyz="0 0 0" rpy="0 0 0" />
  5307. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5308. <xacro:property name="wheel_length" value="0.05" />
  5309. <xacro:property name="pi" value="3.14159" />
  5310. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5311. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5312. <xacro:property name="default_origin">
  5313.   <origin xyz="0 0 0" rpy="0 0 0" />
  5314. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5315. <xacro:property name="wheel_length" value="0.05" />
  5316. <xacro:property name="pi" value="3.14159" />
  5317. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5318. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5319. <xacro:property name="default_origin">
  5320.   <origin xyz="0 0 0" rpy="0 0 0" />
  5321. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5322. <xacro:property name="wheel_length" value="0.05" />
  5323. <xacro:property name="pi" value="3.14159" />
  5324. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5325. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5326. <xacro:property name="default_origin">
  5327.   <origin xyz="0 0 0" rpy="0 0 0" />
  5328. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5329. <xacro:property name="wheel_length" value="0.05" />
  5330. <xacro:property name="pi" value="3.14159" />
  5331. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5332. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5333. <xacro:property name="default_origin">
  5334.   <origin xyz="0 0 0" rpy="0 0 0" />
  5335. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5336. <xacro:property name="wheel_length" value="0.05" />
  5337. <xacro:property name="pi" value="3.14159" />
  5338. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5339. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5340. <xacro:property name="default_origin">
  5341.   <origin xyz="0 0 0" rpy="0 0 0" />
  5342. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5343. <xacro:property name="wheel_length" value="0.05" />
  5344. <xacro:property name="pi" value="3.14159" />
  5345. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5346. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5347. <xacro:property name="default_origin">
  5348.   <origin xyz="0 0 0" rpy="0 0 0" />
  5349. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5350. <xacro:property name="wheel_length" value="0.05" />
  5351. <xacro:property name="pi" value="3.14159" />
  5352. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5353. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5354. <xacro:property name="default_origin">
  5355.   <origin xyz="0 0 0" rpy="0 0 0" />
  5356. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5357. <xacro:property name="wheel_length" value="0.05" />
  5358. <xacro:property name="pi" value="3.14159" />
  5359. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5360. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5361. <xacro:property name="default_origin">
  5362.   <origin xyz="0 0 0" rpy="0 0 0" />
  5363. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5364. <xacro:property name="wheel_length" value="0.05" />
  5365. <xacro:property name="pi" value="3.14159" />
  5366. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5367. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5368. <xacro:property name="default_origin">
  5369.   <origin xyz="0 0 0" rpy="0 0 0" />
  5370. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5371. <xacro:property name="wheel_length" value="0.05" />
  5372. <xacro:property name="pi" value="3.14159" />
  5373. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5374. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5375. <xacro:property name="default_origin">
  5376.   <origin xyz="0 0 0" rpy="0 0 0" />
  5377. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5378. <xacro:property name="wheel_length" value="0.05" />
  5379. <xacro:property name="pi" value="3.14159" />
  5380. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5381. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5382. <xacro:property name="default_origin">
  5383.   <origin xyz="0 0 0" rpy="0 0 0" />
  5384. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5385. <xacro:property name="wheel_length" value="0.05" />
  5386. <xacro:property name="pi" value="3.14159" />
  5387. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5388. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5389. <xacro:property name="default_origin">
  5390.   <origin xyz="0 0 0" rpy="0 0 0" />
  5391. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5392. <xacro:property name="wheel_length" value="0.05" />
  5393. <xacro:property name="pi" value="3.14159" />
  5394. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5395. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5396. <xacro:property name="default_origin">
  5397.   <origin xyz="0 0 0" rpy="0 0 0" />
  5398. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5399. <xacro:property name="wheel_length" value="0.05" />
  5400. <xacro:property name="pi" value="3.14159" />
  5401. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5402. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5403. <xacro:property name="default_origin">
  5404.   <origin xyz="0 0 0" rpy="0 0 0" />
  5405. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5406. <xacro:property name="wheel_length" value="0.05" />
  5407. <xacro:property name="pi" value="3.14159" />
  5408. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5409. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5410. <xacro:property name="default_origin">
  5411.   <origin xyz="0 0 0" rpy="0 0 0" />
  5412. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5413. <xacro:property name="wheel_length" value="0.05" />
  5414. <xacro:property name="pi" value="3.14159" />
  5415. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5416. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5417. <xacro:property name="default_origin">
  5418.   <origin xyz="0 0 0" rpy="0 0 0" />
  5419. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5420. <xacro:property name="wheel_length" value="0.05" />
  5421. <xacro:property name="pi" value="3.14159" />
  5422. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5423. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5424. <xacro:property name="default_origin">
  5425.   <origin xyz="0 0 0" rpy="0 0 0" />
  5426. </xacro:property>30<xacro:property name="wheel_radius" value="0.1" />
  5427. <xacro:property name="wheel_length" value="0.05" />
  5428. <xacro:property name="pi" value="3.14159" />
  5429. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5430. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5431. <xacro:property name="default_origin">
  5432.   <origin xyz="0 0 0" rpy="0 0 0" />
  5433. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5434. <xacro:property name="wheel_length" value="0.05" />
  5435. <xacro:property name="pi" value="3.14159" />
  5436. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5437. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5438. <xacro:property name="default_origin">
  5439.   <origin xyz="0 0 0" rpy="0 0 0" />
  5440. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5441. <xacro:property name="wheel_length" value="0.05" />
  5442. <xacro:property name="pi" value="3.14159" />
  5443. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5444. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5445. <xacro:property name="default_origin">
  5446.   <origin xyz="0 0 0" rpy="0 0 0" />
  5447. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5448. <xacro:property name="wheel_length" value="0.05" />
  5449. <xacro:property name="pi" value="3.14159" />
  5450. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5451. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5452. <xacro:property name="default_origin">
  5453.   <origin xyz="0 0 0" rpy="0 0 0" />
  5454. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5455. <xacro:property name="wheel_length" value="0.05" />
  5456. <xacro:property name="pi" value="3.14159" />
  5457. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5458. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5459. <xacro:property name="default_origin">
  5460.   <origin xyz="0 0 0" rpy="0 0 0" />
  5461. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5462. <xacro:property name="wheel_length" value="0.05" />
  5463. <xacro:property name="pi" value="3.14159" />
  5464. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5465. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5466. <xacro:property name="default_origin">
  5467.   <origin xyz="0 0 0" rpy="0 0 0" />
  5468. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5469. <xacro:property name="wheel_length" value="0.05" />
  5470. <xacro:property name="pi" value="3.14159" />
  5471. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5472. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5473. <xacro:property name="default_origin">
  5474.   <origin xyz="0 0 0" rpy="0 0 0" />
  5475. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5476. <xacro:property name="wheel_length" value="0.05" />
  5477. <xacro:property name="pi" value="3.14159" />
  5478. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5479. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5480. <xacro:property name="default_origin">
  5481.   <origin xyz="0 0 0" rpy="0 0 0" />
  5482. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5483. <xacro:property name="wheel_length" value="0.05" />
  5484. <xacro:property name="pi" value="3.14159" />
  5485. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5486. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5487. <xacro:property name="default_origin">
  5488.   <origin xyz="0 0 0" rpy="0 0 0" />
  5489. </xacro:property>left_wheel_joint<xacro:property name="wheel_radius" value="0.1" />
  5490. <xacro:property name="wheel_length" value="0.05" />
  5491. <xacro:property name="pi" value="3.14159" />
  5492. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5493. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5494. <xacro:property name="default_origin">
  5495.   <origin xyz="0 0 0" rpy="0 0 0" />
  5496. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5497. <xacro:property name="wheel_length" value="0.05" />
  5498. <xacro:property name="pi" value="3.14159" />
  5499. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5500. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5501. <xacro:property name="default_origin">
  5502.   <origin xyz="0 0 0" rpy="0 0 0" />
  5503. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5504. <xacro:property name="wheel_length" value="0.05" />
  5505. <xacro:property name="pi" value="3.14159" />
  5506. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5507. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5508. <xacro:property name="default_origin">
  5509.   <origin xyz="0 0 0" rpy="0 0 0" />
  5510. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5511. <xacro:property name="wheel_length" value="0.05" />
  5512. <xacro:property name="pi" value="3.14159" />
  5513. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5514. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5515. <xacro:property name="default_origin">
  5516.   <origin xyz="0 0 0" rpy="0 0 0" />
  5517. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5518. <xacro:property name="wheel_length" value="0.05" />
  5519. <xacro:property name="pi" value="3.14159" />
  5520. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5521. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5522. <xacro:property name="default_origin">
  5523.   <origin xyz="0 0 0" rpy="0 0 0" />
  5524. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5525. <xacro:property name="wheel_length" value="0.05" />
  5526. <xacro:property name="pi" value="3.14159" />
  5527. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5528. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5529. <xacro:property name="default_origin">
  5530.   <origin xyz="0 0 0" rpy="0 0 0" />
  5531. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5532. <xacro:property name="wheel_length" value="0.05" />
  5533. <xacro:property name="pi" value="3.14159" />
  5534. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5535. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5536. <xacro:property name="default_origin">
  5537.   <origin xyz="0 0 0" rpy="0 0 0" />
  5538. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5539. <xacro:property name="wheel_length" value="0.05" />
  5540. <xacro:property name="pi" value="3.14159" />
  5541. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5542. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5543. <xacro:property name="default_origin">
  5544.   <origin xyz="0 0 0" rpy="0 0 0" />
  5545. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5546. <xacro:property name="wheel_length" value="0.05" />
  5547. <xacro:property name="pi" value="3.14159" />
  5548. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5549. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5550. <xacro:property name="default_origin">
  5551.   <origin xyz="0 0 0" rpy="0 0 0" />
  5552. </xacro:property>right_wheel_joint<xacro:property name="wheel_radius" value="0.1" />
  5553. <xacro:property name="wheel_length" value="0.05" />
  5554. <xacro:property name="pi" value="3.14159" />
  5555. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5556. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5557. <xacro:property name="default_origin">
  5558.   <origin xyz="0 0 0" rpy="0 0 0" />
  5559. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5560. <xacro:property name="wheel_length" value="0.05" />
  5561. <xacro:property name="pi" value="3.14159" />
  5562. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5563. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5564. <xacro:property name="default_origin">
  5565.   <origin xyz="0 0 0" rpy="0 0 0" />
  5566. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5567. <xacro:property name="wheel_length" value="0.05" />
  5568. <xacro:property name="pi" value="3.14159" />
  5569. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5570. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5571. <xacro:property name="default_origin">
  5572.   <origin xyz="0 0 0" rpy="0 0 0" />
  5573. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5574. <xacro:property name="wheel_length" value="0.05" />
  5575. <xacro:property name="pi" value="3.14159" />
  5576. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5577. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5578. <xacro:property name="default_origin">
  5579.   <origin xyz="0 0 0" rpy="0 0 0" />
  5580. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5581. <xacro:property name="wheel_length" value="0.05" />
  5582. <xacro:property name="pi" value="3.14159" />
  5583. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5584. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5585. <xacro:property name="default_origin">
  5586.   <origin xyz="0 0 0" rpy="0 0 0" />
  5587. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5588. <xacro:property name="wheel_length" value="0.05" />
  5589. <xacro:property name="pi" value="3.14159" />
  5590. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5591. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5592. <xacro:property name="default_origin">
  5593.   <origin xyz="0 0 0" rpy="0 0 0" />
  5594. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5595. <xacro:property name="wheel_length" value="0.05" />
  5596. <xacro:property name="pi" value="3.14159" />
  5597. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5598. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5599. <xacro:property name="default_origin">
  5600.   <origin xyz="0 0 0" rpy="0 0 0" />
  5601. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5602. <xacro:property name="wheel_length" value="0.05" />
  5603. <xacro:property name="pi" value="3.14159" />
  5604. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5605. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5606. <xacro:property name="default_origin">
  5607.   <origin xyz="0 0 0" rpy="0 0 0" />
  5608. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5609. <xacro:property name="wheel_length" value="0.05" />
  5610. <xacro:property name="pi" value="3.14159" />
  5611. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5612. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5613. <xacro:property name="default_origin">
  5614.   <origin xyz="0 0 0" rpy="0 0 0" />
  5615. </xacro:property>${wheel_joint_y*2}<xacro:property name="wheel_radius" value="0.1" />
  5616. <xacro:property name="wheel_length" value="0.05" />
  5617. <xacro:property name="pi" value="3.14159" />
  5618. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5619. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5620. <xacro:property name="default_origin">
  5621.   <origin xyz="0 0 0" rpy="0 0 0" />
  5622. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5623. <xacro:property name="wheel_length" value="0.05" />
  5624. <xacro:property name="pi" value="3.14159" />
  5625. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5626. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5627. <xacro:property name="default_origin">
  5628.   <origin xyz="0 0 0" rpy="0 0 0" />
  5629. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5630. <xacro:property name="wheel_length" value="0.05" />
  5631. <xacro:property name="pi" value="3.14159" />
  5632. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5633. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5634. <xacro:property name="default_origin">
  5635.   <origin xyz="0 0 0" rpy="0 0 0" />
  5636. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5637. <xacro:property name="wheel_length" value="0.05" />
  5638. <xacro:property name="pi" value="3.14159" />
  5639. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5640. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5641. <xacro:property name="default_origin">
  5642.   <origin xyz="0 0 0" rpy="0 0 0" />
  5643. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5644. <xacro:property name="wheel_length" value="0.05" />
  5645. <xacro:property name="pi" value="3.14159" />
  5646. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5647. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5648. <xacro:property name="default_origin">
  5649.   <origin xyz="0 0 0" rpy="0 0 0" />
  5650. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5651. <xacro:property name="wheel_length" value="0.05" />
  5652. <xacro:property name="pi" value="3.14159" />
  5653. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5654. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5655. <xacro:property name="default_origin">
  5656.   <origin xyz="0 0 0" rpy="0 0 0" />
  5657. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5658. <xacro:property name="wheel_length" value="0.05" />
  5659. <xacro:property name="pi" value="3.14159" />
  5660. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5661. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5662. <xacro:property name="default_origin">
  5663.   <origin xyz="0 0 0" rpy="0 0 0" />
  5664. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5665. <xacro:property name="wheel_length" value="0.05" />
  5666. <xacro:property name="pi" value="3.14159" />
  5667. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5668. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5669. <xacro:property name="default_origin">
  5670.   <origin xyz="0 0 0" rpy="0 0 0" />
  5671. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5672. <xacro:property name="wheel_length" value="0.05" />
  5673. <xacro:property name="pi" value="3.14159" />
  5674. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5675. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5676. <xacro:property name="default_origin">
  5677.   <origin xyz="0 0 0" rpy="0 0 0" />
  5678. </xacro:property>${2*wheel_radius}<xacro:property name="wheel_radius" value="0.1" />
  5679. <xacro:property name="wheel_length" value="0.05" />
  5680. <xacro:property name="pi" value="3.14159" />
  5681. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5682. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5683. <xacro:property name="default_origin">
  5684.   <origin xyz="0 0 0" rpy="0 0 0" />
  5685. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5686. <xacro:property name="wheel_length" value="0.05" />
  5687. <xacro:property name="pi" value="3.14159" />
  5688. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5689. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5690. <xacro:property name="default_origin">
  5691.   <origin xyz="0 0 0" rpy="0 0 0" />
  5692. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5693. <xacro:property name="wheel_length" value="0.05" />
  5694. <xacro:property name="pi" value="3.14159" />
  5695. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5696. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5697. <xacro:property name="default_origin">
  5698.   <origin xyz="0 0 0" rpy="0 0 0" />
  5699. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5700. <xacro:property name="wheel_length" value="0.05" />
  5701. <xacro:property name="pi" value="3.14159" />
  5702. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5703. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5704. <xacro:property name="default_origin">
  5705.   <origin xyz="0 0 0" rpy="0 0 0" />
  5706. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5707. <xacro:property name="wheel_length" value="0.05" />
  5708. <xacro:property name="pi" value="3.14159" />
  5709. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5710. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5711. <xacro:property name="default_origin">
  5712.   <origin xyz="0 0 0" rpy="0 0 0" />
  5713. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5714. <xacro:property name="wheel_length" value="0.05" />
  5715. <xacro:property name="pi" value="3.14159" />
  5716. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5717. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5718. <xacro:property name="default_origin">
  5719.   <origin xyz="0 0 0" rpy="0 0 0" />
  5720. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5721. <xacro:property name="wheel_length" value="0.05" />
  5722. <xacro:property name="pi" value="3.14159" />
  5723. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5724. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5725. <xacro:property name="default_origin">
  5726.   <origin xyz="0 0 0" rpy="0 0 0" />
  5727. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5728. <xacro:property name="wheel_length" value="0.05" />
  5729. <xacro:property name="pi" value="3.14159" />
  5730. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5731. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5732. <xacro:property name="default_origin">
  5733.   <origin xyz="0 0 0" rpy="0 0 0" />
  5734. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5735. <xacro:property name="wheel_length" value="0.05" />
  5736. <xacro:property name="pi" value="3.14159" />
  5737. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5738. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5739. <xacro:property name="default_origin">
  5740.   <origin xyz="0 0 0" rpy="0 0 0" />
  5741. </xacro:property>20<xacro:property name="wheel_radius" value="0.1" />
  5742. <xacro:property name="wheel_length" value="0.05" />
  5743. <xacro:property name="pi" value="3.14159" />
  5744. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5745. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5746. <xacro:property name="default_origin">
  5747.   <origin xyz="0 0 0" rpy="0 0 0" />
  5748. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5749. <xacro:property name="wheel_length" value="0.05" />
  5750. <xacro:property name="pi" value="3.14159" />
  5751. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5752. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5753. <xacro:property name="default_origin">
  5754.   <origin xyz="0 0 0" rpy="0 0 0" />
  5755. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5756. <xacro:property name="wheel_length" value="0.05" />
  5757. <xacro:property name="pi" value="3.14159" />
  5758. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5759. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5760. <xacro:property name="default_origin">
  5761.   <origin xyz="0 0 0" rpy="0 0 0" />
  5762. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5763. <xacro:property name="wheel_length" value="0.05" />
  5764. <xacro:property name="pi" value="3.14159" />
  5765. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5766. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5767. <xacro:property name="default_origin">
  5768.   <origin xyz="0 0 0" rpy="0 0 0" />
  5769. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5770. <xacro:property name="wheel_length" value="0.05" />
  5771. <xacro:property name="pi" value="3.14159" />
  5772. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5773. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5774. <xacro:property name="default_origin">
  5775.   <origin xyz="0 0 0" rpy="0 0 0" />
  5776. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5777. <xacro:property name="wheel_length" value="0.05" />
  5778. <xacro:property name="pi" value="3.14159" />
  5779. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5780. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5781. <xacro:property name="default_origin">
  5782.   <origin xyz="0 0 0" rpy="0 0 0" />
  5783. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5784. <xacro:property name="wheel_length" value="0.05" />
  5785. <xacro:property name="pi" value="3.14159" />
  5786. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5787. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5788. <xacro:property name="default_origin">
  5789.   <origin xyz="0 0 0" rpy="0 0 0" />
  5790. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5791. <xacro:property name="wheel_length" value="0.05" />
  5792. <xacro:property name="pi" value="3.14159" />
  5793. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5794. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5795. <xacro:property name="default_origin">
  5796.   <origin xyz="0 0 0" rpy="0 0 0" />
  5797. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5798. <xacro:property name="wheel_length" value="0.05" />
  5799. <xacro:property name="pi" value="3.14159" />
  5800. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5801. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5802. <xacro:property name="default_origin">
  5803.   <origin xyz="0 0 0" rpy="0 0 0" />
  5804. </xacro:property>1.0<xacro:property name="wheel_radius" value="0.1" />
  5805. <xacro:property name="wheel_length" value="0.05" />
  5806. <xacro:property name="pi" value="3.14159" />
  5807. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5808. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5809. <xacro:property name="default_origin">
  5810.   <origin xyz="0 0 0" rpy="0 0 0" />
  5811. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5812. <xacro:property name="wheel_length" value="0.05" />
  5813. <xacro:property name="pi" value="3.14159" />
  5814. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5815. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5816. <xacro:property name="default_origin">
  5817.   <origin xyz="0 0 0" rpy="0 0 0" />
  5818. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5819. <xacro:property name="wheel_length" value="0.05" />
  5820. <xacro:property name="pi" value="3.14159" />
  5821. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5822. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5823. <xacro:property name="default_origin">
  5824.   <origin xyz="0 0 0" rpy="0 0 0" />
  5825. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5826. <xacro:property name="wheel_length" value="0.05" />
  5827. <xacro:property name="pi" value="3.14159" />
  5828. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5829. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5830. <xacro:property name="default_origin">
  5831.   <origin xyz="0 0 0" rpy="0 0 0" />
  5832. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5833. <xacro:property name="wheel_length" value="0.05" />
  5834. <xacro:property name="pi" value="3.14159" />
  5835. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5836. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5837. <xacro:property name="default_origin">
  5838.   <origin xyz="0 0 0" rpy="0 0 0" />
  5839. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5840. <xacro:property name="wheel_length" value="0.05" />
  5841. <xacro:property name="pi" value="3.14159" />
  5842. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5843. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5844. <xacro:property name="default_origin">
  5845.   <origin xyz="0 0 0" rpy="0 0 0" />
  5846. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5847. <xacro:property name="wheel_length" value="0.05" />
  5848. <xacro:property name="pi" value="3.14159" />
  5849. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5850. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5851. <xacro:property name="default_origin">
  5852.   <origin xyz="0 0 0" rpy="0 0 0" />
  5853. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5854. <xacro:property name="wheel_length" value="0.05" />
  5855. <xacro:property name="pi" value="3.14159" />
  5856. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5857. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5858. <xacro:property name="default_origin">
  5859.   <origin xyz="0 0 0" rpy="0 0 0" />
  5860. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5861. <xacro:property name="wheel_length" value="0.05" />
  5862. <xacro:property name="pi" value="3.14159" />
  5863. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5864. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5865. <xacro:property name="default_origin">
  5866.   <origin xyz="0 0 0" rpy="0 0 0" />
  5867. </xacro:property>cmd_vel<xacro:property name="wheel_radius" value="0.1" />
  5868. <xacro:property name="wheel_length" value="0.05" />
  5869. <xacro:property name="pi" value="3.14159" />
  5870. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5871. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5872. <xacro:property name="default_origin">
  5873.   <origin xyz="0 0 0" rpy="0 0 0" />
  5874. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5875. <xacro:property name="wheel_length" value="0.05" />
  5876. <xacro:property name="pi" value="3.14159" />
  5877. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5878. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5879. <xacro:property name="default_origin">
  5880.   <origin xyz="0 0 0" rpy="0 0 0" />
  5881. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5882. <xacro:property name="wheel_length" value="0.05" />
  5883. <xacro:property name="pi" value="3.14159" />
  5884. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5885. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5886. <xacro:property name="default_origin">
  5887.   <origin xyz="0 0 0" rpy="0 0 0" />
  5888. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5889. <xacro:property name="wheel_length" value="0.05" />
  5890. <xacro:property name="pi" value="3.14159" />
  5891. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5892. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5893. <xacro:property name="default_origin">
  5894.   <origin xyz="0 0 0" rpy="0 0 0" />
  5895. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5896. <xacro:property name="wheel_length" value="0.05" />
  5897. <xacro:property name="pi" value="3.14159" />
  5898. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5899. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5900. <xacro:property name="default_origin">
  5901.   <origin xyz="0 0 0" rpy="0 0 0" />
  5902. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5903. <xacro:property name="wheel_length" value="0.05" />
  5904. <xacro:property name="pi" value="3.14159" />
  5905. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5906. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5907. <xacro:property name="default_origin">
  5908.   <origin xyz="0 0 0" rpy="0 0 0" />
  5909. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5910. <xacro:property name="wheel_length" value="0.05" />
  5911. <xacro:property name="pi" value="3.14159" />
  5912. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5913. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5914. <xacro:property name="default_origin">
  5915.   <origin xyz="0 0 0" rpy="0 0 0" />
  5916. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5917. <xacro:property name="wheel_length" value="0.05" />
  5918. <xacro:property name="pi" value="3.14159" />
  5919. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5920. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5921. <xacro:property name="default_origin">
  5922.   <origin xyz="0 0 0" rpy="0 0 0" />
  5923. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5924. <xacro:property name="wheel_length" value="0.05" />
  5925. <xacro:property name="pi" value="3.14159" />
  5926. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5927. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5928. <xacro:property name="default_origin">
  5929.   <origin xyz="0 0 0" rpy="0 0 0" />
  5930. </xacro:property>true<xacro:property name="wheel_radius" value="0.1" />
  5931. <xacro:property name="wheel_length" value="0.05" />
  5932. <xacro:property name="pi" value="3.14159" />
  5933. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5934. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5935. <xacro:property name="default_origin">
  5936.   <origin xyz="0 0 0" rpy="0 0 0" />
  5937. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5938. <xacro:property name="wheel_length" value="0.05" />
  5939. <xacro:property name="pi" value="3.14159" />
  5940. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5941. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5942. <xacro:property name="default_origin">
  5943.   <origin xyz="0 0 0" rpy="0 0 0" />
  5944. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5945. <xacro:property name="wheel_length" value="0.05" />
  5946. <xacro:property name="pi" value="3.14159" />
  5947. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5948. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5949. <xacro:property name="default_origin">
  5950.   <origin xyz="0 0 0" rpy="0 0 0" />
  5951. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5952. <xacro:property name="wheel_length" value="0.05" />
  5953. <xacro:property name="pi" value="3.14159" />
  5954. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5955. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5956. <xacro:property name="default_origin">
  5957.   <origin xyz="0 0 0" rpy="0 0 0" />
  5958. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5959. <xacro:property name="wheel_length" value="0.05" />
  5960. <xacro:property name="pi" value="3.14159" />
  5961. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5962. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5963. <xacro:property name="default_origin">
  5964.   <origin xyz="0 0 0" rpy="0 0 0" />
  5965. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5966. <xacro:property name="wheel_length" value="0.05" />
  5967. <xacro:property name="pi" value="3.14159" />
  5968. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5969. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5970. <xacro:property name="default_origin">
  5971.   <origin xyz="0 0 0" rpy="0 0 0" />
  5972. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5973. <xacro:property name="wheel_length" value="0.05" />
  5974. <xacro:property name="pi" value="3.14159" />
  5975. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5976. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5977. <xacro:property name="default_origin">
  5978.   <origin xyz="0 0 0" rpy="0 0 0" />
  5979. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5980. <xacro:property name="wheel_length" value="0.05" />
  5981. <xacro:property name="pi" value="3.14159" />
  5982. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5983. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5984. <xacro:property name="default_origin">
  5985.   <origin xyz="0 0 0" rpy="0 0 0" />
  5986. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  5987. <xacro:property name="wheel_length" value="0.05" />
  5988. <xacro:property name="pi" value="3.14159" />
  5989. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5990. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5991. <xacro:property name="default_origin">
  5992.   <origin xyz="0 0 0" rpy="0 0 0" />
  5993. </xacro:property>true<xacro:property name="wheel_radius" value="0.1" />
  5994. <xacro:property name="wheel_length" value="0.05" />
  5995. <xacro:property name="pi" value="3.14159" />
  5996. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  5997. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  5998. <xacro:property name="default_origin">
  5999.   <origin xyz="0 0 0" rpy="0 0 0" />
  6000. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6001. <xacro:property name="wheel_length" value="0.05" />
  6002. <xacro:property name="pi" value="3.14159" />
  6003. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6004. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6005. <xacro:property name="default_origin">
  6006.   <origin xyz="0 0 0" rpy="0 0 0" />
  6007. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6008. <xacro:property name="wheel_length" value="0.05" />
  6009. <xacro:property name="pi" value="3.14159" />
  6010. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6011. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6012. <xacro:property name="default_origin">
  6013.   <origin xyz="0 0 0" rpy="0 0 0" />
  6014. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6015. <xacro:property name="wheel_length" value="0.05" />
  6016. <xacro:property name="pi" value="3.14159" />
  6017. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6018. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6019. <xacro:property name="default_origin">
  6020.   <origin xyz="0 0 0" rpy="0 0 0" />
  6021. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6022. <xacro:property name="wheel_length" value="0.05" />
  6023. <xacro:property name="pi" value="3.14159" />
  6024. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6025. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6026. <xacro:property name="default_origin">
  6027.   <origin xyz="0 0 0" rpy="0 0 0" />
  6028. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6029. <xacro:property name="wheel_length" value="0.05" />
  6030. <xacro:property name="pi" value="3.14159" />
  6031. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6032. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6033. <xacro:property name="default_origin">
  6034.   <origin xyz="0 0 0" rpy="0 0 0" />
  6035. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6036. <xacro:property name="wheel_length" value="0.05" />
  6037. <xacro:property name="pi" value="3.14159" />
  6038. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6039. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6040. <xacro:property name="default_origin">
  6041.   <origin xyz="0 0 0" rpy="0 0 0" />
  6042. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6043. <xacro:property name="wheel_length" value="0.05" />
  6044. <xacro:property name="pi" value="3.14159" />
  6045. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6046. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6047. <xacro:property name="default_origin">
  6048.   <origin xyz="0 0 0" rpy="0 0 0" />
  6049. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6050. <xacro:property name="wheel_length" value="0.05" />
  6051. <xacro:property name="pi" value="3.14159" />
  6052. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6053. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6054. <xacro:property name="default_origin">
  6055.   <origin xyz="0 0 0" rpy="0 0 0" />
  6056. </xacro:property>true<xacro:property name="wheel_radius" value="0.1" />
  6057. <xacro:property name="wheel_length" value="0.05" />
  6058. <xacro:property name="pi" value="3.14159" />
  6059. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6060. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6061. <xacro:property name="default_origin">
  6062.   <origin xyz="0 0 0" rpy="0 0 0" />
  6063. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6064. <xacro:property name="wheel_length" value="0.05" />
  6065. <xacro:property name="pi" value="3.14159" />
  6066. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6067. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6068. <xacro:property name="default_origin">
  6069.   <origin xyz="0 0 0" rpy="0 0 0" />
  6070. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6071. <xacro:property name="wheel_length" value="0.05" />
  6072. <xacro:property name="pi" value="3.14159" />
  6073. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6074. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6075. <xacro:property name="default_origin">
  6076.   <origin xyz="0 0 0" rpy="0 0 0" />
  6077. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6078. <xacro:property name="wheel_length" value="0.05" />
  6079. <xacro:property name="pi" value="3.14159" />
  6080. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6081. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6082. <xacro:property name="default_origin">
  6083.   <origin xyz="0 0 0" rpy="0 0 0" />
  6084. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6085. <xacro:property name="wheel_length" value="0.05" />
  6086. <xacro:property name="pi" value="3.14159" />
  6087. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6088. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6089. <xacro:property name="default_origin">
  6090.   <origin xyz="0 0 0" rpy="0 0 0" />
  6091. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6092. <xacro:property name="wheel_length" value="0.05" />
  6093. <xacro:property name="pi" value="3.14159" />
  6094. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6095. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6096. <xacro:property name="default_origin">
  6097.   <origin xyz="0 0 0" rpy="0 0 0" />
  6098. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6099. <xacro:property name="wheel_length" value="0.05" />
  6100. <xacro:property name="pi" value="3.14159" />
  6101. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6102. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6103. <xacro:property name="default_origin">
  6104.   <origin xyz="0 0 0" rpy="0 0 0" />
  6105. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6106. <xacro:property name="wheel_length" value="0.05" />
  6107. <xacro:property name="pi" value="3.14159" />
  6108. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6109. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6110. <xacro:property name="default_origin">
  6111.   <origin xyz="0 0 0" rpy="0 0 0" />
  6112. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6113. <xacro:property name="wheel_length" value="0.05" />
  6114. <xacro:property name="pi" value="3.14159" />
  6115. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6116. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6117. <xacro:property name="default_origin">
  6118.   <origin xyz="0 0 0" rpy="0 0 0" />
  6119. </xacro:property>odom<xacro:property name="wheel_radius" value="0.1" />
  6120. <xacro:property name="wheel_length" value="0.05" />
  6121. <xacro:property name="pi" value="3.14159" />
  6122. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6123. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6124. <xacro:property name="default_origin">
  6125.   <origin xyz="0 0 0" rpy="0 0 0" />
  6126. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6127. <xacro:property name="wheel_length" value="0.05" />
  6128. <xacro:property name="pi" value="3.14159" />
  6129. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6130. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6131. <xacro:property name="default_origin">
  6132.   <origin xyz="0 0 0" rpy="0 0 0" />
  6133. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6134. <xacro:property name="wheel_length" value="0.05" />
  6135. <xacro:property name="pi" value="3.14159" />
  6136. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6137. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6138. <xacro:property name="default_origin">
  6139.   <origin xyz="0 0 0" rpy="0 0 0" />
  6140. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6141. <xacro:property name="wheel_length" value="0.05" />
  6142. <xacro:property name="pi" value="3.14159" />
  6143. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6144. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6145. <xacro:property name="default_origin">
  6146.   <origin xyz="0 0 0" rpy="0 0 0" />
  6147. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6148. <xacro:property name="wheel_length" value="0.05" />
  6149. <xacro:property name="pi" value="3.14159" />
  6150. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6151. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6152. <xacro:property name="default_origin">
  6153.   <origin xyz="0 0 0" rpy="0 0 0" />
  6154. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6155. <xacro:property name="wheel_length" value="0.05" />
  6156. <xacro:property name="pi" value="3.14159" />
  6157. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6158. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6159. <xacro:property name="default_origin">
  6160.   <origin xyz="0 0 0" rpy="0 0 0" />
  6161. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6162. <xacro:property name="wheel_length" value="0.05" />
  6163. <xacro:property name="pi" value="3.14159" />
  6164. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6165. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6166. <xacro:property name="default_origin">
  6167.   <origin xyz="0 0 0" rpy="0 0 0" />
  6168. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6169. <xacro:property name="wheel_length" value="0.05" />
  6170. <xacro:property name="pi" value="3.14159" />
  6171. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6172. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6173. <xacro:property name="default_origin">
  6174.   <origin xyz="0 0 0" rpy="0 0 0" />
  6175. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6176. <xacro:property name="wheel_length" value="0.05" />
  6177. <xacro:property name="pi" value="3.14159" />
  6178. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6179. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6180. <xacro:property name="default_origin">
  6181.   <origin xyz="0 0 0" rpy="0 0 0" />
  6182. </xacro:property>odom<xacro:property name="wheel_radius" value="0.1" />
  6183. <xacro:property name="wheel_length" value="0.05" />
  6184. <xacro:property name="pi" value="3.14159" />
  6185. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6186. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6187. <xacro:property name="default_origin">
  6188.   <origin xyz="0 0 0" rpy="0 0 0" />
  6189. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6190. <xacro:property name="wheel_length" value="0.05" />
  6191. <xacro:property name="pi" value="3.14159" />
  6192. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6193. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6194. <xacro:property name="default_origin">
  6195.   <origin xyz="0 0 0" rpy="0 0 0" />
  6196. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6197. <xacro:property name="wheel_length" value="0.05" />
  6198. <xacro:property name="pi" value="3.14159" />
  6199. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6200. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6201. <xacro:property name="default_origin">
  6202.   <origin xyz="0 0 0" rpy="0 0 0" />
  6203. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6204. <xacro:property name="wheel_length" value="0.05" />
  6205. <xacro:property name="pi" value="3.14159" />
  6206. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6207. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6208. <xacro:property name="default_origin">
  6209.   <origin xyz="0 0 0" rpy="0 0 0" />
  6210. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6211. <xacro:property name="wheel_length" value="0.05" />
  6212. <xacro:property name="pi" value="3.14159" />
  6213. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6214. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6215. <xacro:property name="default_origin">
  6216.   <origin xyz="0 0 0" rpy="0 0 0" />
  6217. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6218. <xacro:property name="wheel_length" value="0.05" />
  6219. <xacro:property name="pi" value="3.14159" />
  6220. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6221. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6222. <xacro:property name="default_origin">
  6223.   <origin xyz="0 0 0" rpy="0 0 0" />
  6224. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6225. <xacro:property name="wheel_length" value="0.05" />
  6226. <xacro:property name="pi" value="3.14159" />
  6227. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6228. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6229. <xacro:property name="default_origin">
  6230.   <origin xyz="0 0 0" rpy="0 0 0" />
  6231. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6232. <xacro:property name="wheel_length" value="0.05" />
  6233. <xacro:property name="pi" value="3.14159" />
  6234. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6235. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6236. <xacro:property name="default_origin">
  6237.   <origin xyz="0 0 0" rpy="0 0 0" />
  6238. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6239. <xacro:property name="wheel_length" value="0.05" />
  6240. <xacro:property name="pi" value="3.14159" />
  6241. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6242. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6243. <xacro:property name="default_origin">
  6244.   <origin xyz="0 0 0" rpy="0 0 0" />
  6245. </xacro:property>base_footprint<xacro:property name="wheel_radius" value="0.1" />
  6246. <xacro:property name="wheel_length" value="0.05" />
  6247. <xacro:property name="pi" value="3.14159" />
  6248. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6249. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6250. <xacro:property name="default_origin">
  6251.   <origin xyz="0 0 0" rpy="0 0 0" />
  6252. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6253. <xacro:property name="wheel_length" value="0.05" />
  6254. <xacro:property name="pi" value="3.14159" />
  6255. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6256. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6257. <xacro:property name="default_origin">
  6258.   <origin xyz="0 0 0" rpy="0 0 0" />
  6259. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6260. <xacro:property name="wheel_length" value="0.05" />
  6261. <xacro:property name="pi" value="3.14159" />
  6262. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6263. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6264. <xacro:property name="default_origin">
  6265.   <origin xyz="0 0 0" rpy="0 0 0" />
  6266. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6267. <xacro:property name="wheel_length" value="0.05" />
  6268. <xacro:property name="pi" value="3.14159" />
  6269. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6270. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6271. <xacro:property name="default_origin">
  6272.   <origin xyz="0 0 0" rpy="0 0 0" />
  6273. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6274. <xacro:property name="wheel_length" value="0.05" />
  6275. <xacro:property name="pi" value="3.14159" />
  6276. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6277. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6278. <xacro:property name="default_origin">
  6279.   <origin xyz="0 0 0" rpy="0 0 0" />
  6280. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6281. <xacro:property name="wheel_length" value="0.05" />
  6282. <xacro:property name="pi" value="3.14159" />
  6283. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6284. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6285. <xacro:property name="default_origin">
  6286.   <origin xyz="0 0 0" rpy="0 0 0" />
  6287. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6288. <xacro:property name="wheel_length" value="0.05" />
  6289. <xacro:property name="pi" value="3.14159" />
  6290. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6291. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6292. <xacro:property name="default_origin">
  6293.   <origin xyz="0 0 0" rpy="0 0 0" />
  6294. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6295. <xacro:property name="wheel_length" value="0.05" />
  6296. <xacro:property name="pi" value="3.14159" />
  6297. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6298. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6299. <xacro:property name="default_origin">
  6300.   <origin xyz="0 0 0" rpy="0 0 0" />
  6301. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6302. <xacro:property name="wheel_length" value="0.05" />
  6303. <xacro:property name="pi" value="3.14159" />
  6304. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6305. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6306. <xacro:property name="default_origin">
  6307.   <origin xyz="0 0 0" rpy="0 0 0" />
  6308. </xacro:property>1<xacro:property name="wheel_radius" value="0.1" />
  6309. <xacro:property name="wheel_length" value="0.05" />
  6310. <xacro:property name="pi" value="3.14159" />
  6311. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6312. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6313. <xacro:property name="default_origin">
  6314.   <origin xyz="0 0 0" rpy="0 0 0" />
  6315. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6316. <xacro:property name="wheel_length" value="0.05" />
  6317. <xacro:property name="pi" value="3.14159" />
  6318. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6319. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6320. <xacro:property name="default_origin">
  6321.   <origin xyz="0 0 0" rpy="0 0 0" />
  6322. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6323. <xacro:property name="wheel_length" value="0.05" />
  6324. <xacro:property name="pi" value="3.14159" />
  6325. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6326. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6327. <xacro:property name="default_origin">
  6328.   <origin xyz="0 0 0" rpy="0 0 0" />
  6329. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6330. <xacro:property name="wheel_length" value="0.05" />
  6331. <xacro:property name="pi" value="3.14159" />
  6332. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6333. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6334. <xacro:property name="default_origin">
  6335.   <origin xyz="0 0 0" rpy="0 0 0" />
  6336. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6337. <xacro:property name="wheel_length" value="0.05" />
  6338. <xacro:property name="pi" value="3.14159" />
  6339. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6340. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6341. <xacro:property name="default_origin">
  6342.   <origin xyz="0 0 0" rpy="0 0 0" />
  6343. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6344. <xacro:property name="wheel_length" value="0.05" />
  6345. <xacro:property name="pi" value="3.14159" />
  6346. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6347. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6348. <xacro:property name="default_origin">
  6349.   <origin xyz="0 0 0" rpy="0 0 0" />
  6350. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6351. <xacro:property name="wheel_length" value="0.05" />
  6352. <xacro:property name="pi" value="3.14159" />
  6353. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6354. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6355. <xacro:property name="default_origin">
  6356.   <origin xyz="0 0 0" rpy="0 0 0" />
  6357. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6358. <xacro:property name="wheel_length" value="0.05" />
  6359. <xacro:property name="pi" value="3.14159" />
  6360. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6361. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6362. <xacro:property name="default_origin">
  6363.   <origin xyz="0 0 0" rpy="0 0 0" />
  6364. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6365. <xacro:property name="wheel_length" value="0.05" />
  6366. <xacro:property name="pi" value="3.14159" />
  6367. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6368. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6369. <xacro:property name="default_origin">
  6370.   <origin xyz="0 0 0" rpy="0 0 0" />
  6371. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6372. <xacro:property name="wheel_length" value="0.05" />
  6373. <xacro:property name="pi" value="3.14159" />
  6374. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6375. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6376. <xacro:property name="default_origin">
  6377.   <origin xyz="0 0 0" rpy="0 0 0" />
  6378. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6379. <xacro:property name="wheel_length" value="0.05" />
  6380. <xacro:property name="pi" value="3.14159" />
  6381. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6382. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6383. <xacro:property name="default_origin">
  6384.   <origin xyz="0 0 0" rpy="0 0 0" />
  6385. </xacro:property><xacro:property name="wheel_radius" value="0.1" />
  6386. <xacro:property name="wheel_length" value="0.05" />
  6387. <xacro:property name="pi" value="3.14159" />
  6388. <cylinder radius="${wheel_radius}" length="${wheel_length}" />
  6389. <xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />
  6390. <xacro:property name="default_origin">
  6391.   <origin xyz="0 0 0" rpy="0 0 0" />
  6392. </xacro:property>
复制代码
这个模型是基于《ROS2之URDF建模》中的mbot_base.urdf模型文件升级来的,构建步骤如下:

  • 完善物理参数:第一步是确保每一个link都有惯性参数和碰撞属性,因为Gazebo是物理仿真平台,必要的物理参数是一定需要的;
  • 添加Gazebo标签:第二步是为link添加gazebo标签,主要是为了可以在gazebo中渲染每一个link的颜色,因为URDF中的颜色系统和gazebo中的不同,所以得做一步这样的冗余配置;
  • 配置传动装置:第三步是要给运动的joint配置传动装置,可以理解为仿真了一个电机;
  • 添加控制器插件:第四步,要添加一个gazebo的控制器插件,小车是差速控制的,那就添加差速控制器插件,这样在不同角度下两个电机的速度分配,就可以交给控制器插件来完成了。
2.2.2 构建仿真环境

接下来就考虑如何把模型加载到Gazebo中了,需要用到一个gazebo提供的功能节点spwan_entity。
在launch文件夹下创建load_urdf_into_gazebo.launch.py文件;
[code]import osfrom ament_index_python.packages import get_package_share_directoryfrom launch import LaunchDescriptionfrom launch.actions import IncludeLaunchDescriptionfrom launch.launch_description_sources import PythonLaunchDescriptionSourcefrom launch_ros.actions import Nodedef generate_launch_description():<xacro:property name="wheel_radius" value="0.1" />
<xacro:property name="wheel_length" value="0.05" />
<xacro:property name="pi" value="3.14159" />


<cylinder radius="${wheel_radius}" length="${wheel_length}" />


<xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />


<xacro:property name="default_origin">
  <origin xyz="0 0 0" rpy="0 0 0" />
</xacro:property><xacro:property name="wheel_radius" value="0.1" />
<xacro:property name="wheel_length" value="0.05" />
<xacro:property name="pi" value="3.14159" />


<cylinder radius="${wheel_radius}" length="${wheel_length}" />


<xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />


<xacro:property name="default_origin">
  <origin xyz="0 0 0" rpy="0 0 0" />
</xacro:property># Include the robot_state_publisher launch file, provided by our own package. Force sim time to be enabled<xacro:property name="wheel_radius" value="0.1" />
<xacro:property name="wheel_length" value="0.05" />
<xacro:property name="pi" value="3.14159" />


<cylinder radius="${wheel_radius}" length="${wheel_length}" />


<xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />


<xacro:property name="default_origin">
  <origin xyz="0 0 0" rpy="0 0 0" />
</xacro:property><xacro:property name="wheel_radius" value="0.1" />
<xacro:property name="wheel_length" value="0.05" />
<xacro:property name="pi" value="3.14159" />


<cylinder radius="${wheel_radius}" length="${wheel_length}" />


<xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />


<xacro:property name="default_origin">
  <origin xyz="0 0 0" rpy="0 0 0" />
</xacro:property># !!! MAKE SURE YOU SET THE PACKAGE NAME CORRECTLY !!!<xacro:property name="wheel_radius" value="0.1" />
<xacro:property name="wheel_length" value="0.05" />
<xacro:property name="pi" value="3.14159" />


<cylinder radius="${wheel_radius}" length="${wheel_length}" />


<xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />


<xacro:property name="default_origin">
  <origin xyz="0 0 0" rpy="0 0 0" />
</xacro:property><xacro:property name="wheel_radius" value="0.1" />
<xacro:property name="wheel_length" value="0.05" />
<xacro:property name="pi" value="3.14159" />


<cylinder radius="${wheel_radius}" length="${wheel_length}" />


<xacro:property name="wheel_circumference" value="${2 * pi * wheel_radius}" />


<xacro:property name="default_origin">
  <origin xyz="0 0 0" rpy="0 0 0" />
</xacro:property>package_name='learning_gazebo' #

相关推荐

您需要登录后才可以回帖 登录 | 立即注册