Skip to content

Commit

Permalink
Merge pull request #2281 from ayersb/fix-merge-vertices-typing
Browse files Browse the repository at this point in the history
Fix typing bug in merge_vertices function
  • Loading branch information
mikedh authored Sep 4, 2024
2 parents eec471e + e0e3711 commit ea05d2f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions trimesh/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -1112,9 +1112,9 @@ def merge_vertices(
self,
merge_tex: Optional[bool] = None,
merge_norm: Optional[bool] = None,
digits_vertex: Optional[bool] = None,
digits_norm: Optional[bool] = None,
digits_uv: Optional[bool] = None,
digits_vertex: Optional[int] = None,
digits_norm: Optional[int] = None,
digits_uv: Optional[int] = None,
) -> None:
"""
Removes duplicate vertices grouped by position and
Expand Down

0 comments on commit ea05d2f

Please sign in to comment.