Skip to content

Commit 189ec87

Browse files
committed
moving nurbs plugins to compas_nurbs
1 parent 11eee27 commit 189ec87

File tree

6 files changed

+1
-954
lines changed

6 files changed

+1
-954
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2424
* Made X and Y axis optional in the constructor of `Frame`.
2525
* Moved `compas.geometry.brep` to `compas.brep`.
2626
* Changed `networkx` version to `>=3.0` to ensure support for `is_planar`.
27+
* Moved `compas.geometry.curves.nurbs_.py` and `compas.geometry.surfaces.nurbs_.py` to `compas_nurbs`.
2728

2829
### Removed
2930

src/compas/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,6 @@
136136

137137
__all_plugins__ = [
138138
"compas.geometry.booleans.booleans_shapely",
139-
"compas.geometry.curves.nurbs_",
140-
"compas.geometry.surfaces.nurbs_",
141139
]
142140

143141

src/compas/geometry/__init__.py

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -239,15 +239,6 @@
239239
is_intersection_plane_plane,
240240
)
241241

242-
from ._core.nurbsutils import (
243-
construct_knotvector,
244-
find_span,
245-
compute_basisfuncs,
246-
compute_basisfuncsderivs,
247-
knots_and_mults_to_knotvector,
248-
knotvector_to_knots_and_mults,
249-
)
250-
251242
# =============================================================================
252243
# Algorithms
253244
# =============================================================================
@@ -654,12 +645,6 @@
654645
"trimesh_remesh_constrained",
655646
"trimesh_remesh_along_isoline",
656647
"trimesh_slice",
657-
"find_span",
658-
"compute_basisfuncs",
659-
"compute_basisfuncsderivs",
660-
"construct_knotvector",
661-
"knots_and_mults_to_knotvector",
662-
"knotvector_to_knots_and_mults",
663648
"Geometry",
664649
"Bezier",
665650
"Arc",

src/compas/geometry/_core/nurbsutils.py

Lines changed: 0 additions & 319 deletions
This file was deleted.

0 commit comments

Comments
 (0)