Skip to content

Commit

Permalink
change the name
Browse files Browse the repository at this point in the history
  • Loading branch information
lianghongzhuo committed Oct 17, 2023
1 parent 780665b commit 2243adb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions urchin/urdf.py
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ def meshes(self):
"""
if len(self._meshes) == 0:
if self.radius == 0:
print("[urdfpy]: radius equal to 0 is not supported, use a small number.")
print("[urchin]: radius equal to 0 is not supported, use a small number.")
self.radius = 0.001
self._meshes = [trimesh.creation.icosphere(radius=self.radius)]
return self._meshes
Expand Down Expand Up @@ -3320,7 +3320,7 @@ def visual_trimesh_fk(self, cfg=None, links=None):
if visual.geometry.mesh.scale is not None:
if np.sum(visual.geometry.mesh.scale != abs(visual.geometry.mesh.scale)) > 0:
if visual.geometry.mesh.filename not in self.mesh_need_to_mirror:
print(f"[urdfpy]: {visual.geometry.mesh.filename} needs to mirror")
print(f"[urchin]: {visual.geometry.mesh.filename} needs to mirror")
self.mesh_need_to_mirror.append(visual.geometry.mesh.filename)
mesh_vertices = np.copy(mesh.vertices)
mesh_faces = np.copy(mesh.faces)
Expand Down

0 comments on commit 2243adb

Please sign in to comment.