Skip to content

Commit 4f3ecca

Browse files
committed
fix: fixed module import from core
1 parent 916ce11 commit 4f3ecca

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

distmeshpy/mesh/distmesh3d.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from scipy.spatial import Delaunay # type: ignore
99

1010
from distmeshpy._typing import Array, Float, Function, Triangulation
11-
from distmeshpy.core import apply_force_3d
11+
from distmeshpy.core import apply_force_3d, tetrahedron_find_edges
1212
from distmeshpy.utils.config import DistMeshConfig, default_3d_config
1313

1414

examples/3d_examples/unit_sphere.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import matplotlib.pyplot as plt
22
from distmeshpy import distmesh3d
33
from distmeshpy.utils import dsphere, huniform
4-
from distmeshpy.tetrahedron_utils import tetrahedron_find_surface
4+
from distmeshpy.core.tetrahedron_utils import tetrahedron_find_surface
55

66
if __name__ == "__main__":
77
pos, tet = distmesh3d(

0 commit comments

Comments
 (0)