Skip to content

Commit 9c283c6

Browse files
committed
fixed plugin not called in NurbsSurface
1 parent 3b38816 commit 9c283c6

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
### Changed
1313

14+
* Fixed `NotImplementedError` when calling `compas_rhino.conversions.surface_to_compas` on NURBS Surface.
15+
1416
### Removed
1517

1618

src/compas/geometry/surfaces/nurbs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ def from_native(cls, surface):
392392
:class:`compas.geometry.NurbsSurface`
393393
394394
"""
395-
raise NotImplementedError
395+
return nurbssurface_from_native(cls, surface)
396396

397397
@classmethod
398398
def from_parameters(

0 commit comments

Comments
 (0)