xacro arg to xacro:property, or math on xacro args?
Should it be possible to set a xacro property with a value passed in as an argument?
<xacro:property name="length" value=$(arg length_arg)" />
Right now I get:
ValueError: could not convert string to float: $(arg chassis_length_arg)
I'd like to be able to do math on xacro arguments, but
${$(arg length_arg) / 2}
also doesn't work so there appears to be no way to do it other than precomputing the right values and passing them in as args.