Is it possible to use relative path for mesh filename in URDF?
I have my mesh STL in the same directory as my URDF so I was hoping I could reference it via a relative path.
This works as expected
<mesh filename="package://urdf_tutorial/urdf/Assy_X.stl" />
But I would like to do something like this
<mesh filename="file://Assy_X.stl" />
or this
<mesh filename="file://./Assy_X.stl" />
Where it assumes the mesh path is relative to the URDF path.
Is this possible somehow?