Skip to content

Commit 3894cbb

Browse files
Fix projection example imports from meshing to projection module
Functions project_mesh_on_mesh, project_points_on_mesh, pull_mesh_on_mesh, and pull_points_on_mesh were moved to compas_cgal.projection but the example still imported them from compas_cgal.meshing, causing ImportError. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 6851fda commit 3894cbb

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

docs/examples/example_projection.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
from compas.geometry import Point
55
from compas_viewer import Viewer
66

7-
from compas_cgal.meshing import project_mesh_on_mesh
8-
from compas_cgal.meshing import project_points_on_mesh
9-
from compas_cgal.meshing import pull_mesh_on_mesh
10-
from compas_cgal.meshing import pull_points_on_mesh
7+
from compas_cgal.projection import project_mesh_on_mesh
8+
from compas_cgal.projection import project_points_on_mesh
9+
from compas_cgal.projection import pull_mesh_on_mesh
10+
from compas_cgal.projection import pull_points_on_mesh
1111

1212
# =============================================================================
1313
# Source

0 commit comments

Comments
 (0)