Skip to content

Commit eecce95

Browse files
committed
fixes
1 parent 86b1a99 commit eecce95

File tree

4 files changed

+2
-19
lines changed

4 files changed

+2
-19
lines changed

src/compas/geometry/triangulation_delaunay.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
from __future__ import absolute_import
2-
from __future__ import division
3-
from __future__ import print_function
4-
51
from compas.plugins import pluggable
62

73

src/compas/geometry/trimesh_geodistance.py

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
from __future__ import print_function
2-
from __future__ import absolute_import
3-
from __future__ import division
4-
51
from compas.plugins import pluggable
62

73

@@ -33,12 +29,7 @@ def trimesh_geodistance(M, source, method="exact"):
3329
>>>
3430
3531
"""
36-
from .trimesh_geodistance_numpy import trimesh_geodesic_distances_numpy
37-
38-
if method == "exact":
39-
raise NotImplementedError
40-
41-
return trimesh_geodesic_distances_numpy(M, [source])
32+
raise NotImplementedError
4233

4334

4435
trimesh_geodistance.__pluggable__ = True

src/compas/geometry/trimesh_remeshing.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
from __future__ import print_function
2-
from __future__ import absolute_import
3-
from __future__ import division
4-
51
from compas.plugins import pluggable
62

73

src/compas/geometry/trimesh_smoothing_numpy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from numpy import array
22

3-
from ._algebra import trimesh_cotangent_laplacian_matrix
3+
from .trimesh_matrices_numpy import trimesh_cotangent_laplacian_matrix
44

55

66
def trimesh_smooth_laplacian_cotangent(trimesh, fixed, kmax=10):

0 commit comments

Comments
 (0)