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

Wms fix transpose #38

Merged
merged 12 commits into from
Jun 23, 2023
Prev Previous commit
Next Next commit
fix: cython bug triggered by binding
  • Loading branch information
william-silversmith committed Jun 21, 2023
commit 7eaf6514141bfdf9cb7167a6b697d6e673f003de
2 changes: 0 additions & 2 deletions zmesh/_zmesh.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,6 @@ class Mesher:
"""
return self.simplify(mesh, reduction_factor=0, max_error=0, compute_normals=True)

@cython.binding(True)
def simplify(
self, mesh, int reduction_factor=0,
int max_error=40, compute_normals=False,
Expand Down Expand Up @@ -278,7 +277,6 @@ class Mesher:

return self._normalize_simplified_mesh(result, voxel_centered, physical=False)

@cython.binding(True)
def clear(self):
self._mesher.clear()

Expand Down