Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change parsing mesh files method #174

Merged
merged 1 commit into from
Aug 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions panther_description/urdf/body.urdf.xacro
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@
<visual>
<origin xyz="0.0 0.0 0.0" rpy="0.0 0.0 0.0" />
<geometry>
<mesh filename="file://$(find panther_description)/meshes/body.dae" />
<mesh filename="package://panther_description/meshes/body.dae" />
</geometry>
</visual>

<collision>
<origin xyz="0.0 0.0 0.0" rpy="0.0 0.0 0.0" />
<geometry>
<mesh filename="file://$(find panther_description)/meshes/body_collision.stl" />
<mesh filename="package://panther_description/meshes/body_collision.stl" />
</geometry>
</collision>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@
<visual>
<origin xyz="0.0 0.0 0.0" rpy="0.0 0.0 0.0" />
<geometry>
<mesh filename="file://$(find panther_description)/meshes/components/external_antenna.dae" />
<mesh filename="package://panther_description/meshes/components/external_antenna.dae" />
</geometry>
</visual>

<collision>
<origin xyz="0.0 0.0 0.0" rpy="0.0 0.0 0.0" />
<geometry>
<mesh filename="file://$(find panther_description)/meshes/components/external_antenna_collision.stl" />
<mesh filename="package://panther_description/meshes/components/external_antenna_collision.stl" />
</geometry>
</collision>

Expand Down
4 changes: 2 additions & 2 deletions panther_description/urdf/wheel.urdf.xacro
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@
<visual>
<origin xyz="0.0 0.0 0.0" rpy="0.0 0.0 0.0" />
<geometry>
<mesh filename="file://$(find ${wheel_config['mesh_package']})/${wheel_config['folder_path']}/${prefix}_wheel.dae" />
<mesh filename="package://${wheel_config['mesh_package']}/${wheel_config['folder_path']}/${prefix}_wheel.dae" />
</geometry>
</visual>

<collision>
<origin xyz="0.0 0.0 0.0" rpy="0.0 0.0 0.0" />
<geometry>
<mesh filename="file://$(find ${wheel_config['mesh_package']})/${wheel_config['folder_path']}/wheel_collision.stl" />
<mesh filename="package://${wheel_config['mesh_package']}/${wheel_config['folder_path']}/wheel_collision.stl" />
</geometry>
</collision>

Expand Down
Loading