We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b38816 commit 9c283c6Copy full SHA for 9c283c6
CHANGELOG.md
@@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11
12
### Changed
13
14
+* Fixed `NotImplementedError` when calling `compas_rhino.conversions.surface_to_compas` on NURBS Surface.
15
+
16
### Removed
17
18
src/compas/geometry/surfaces/nurbs.py
@@ -392,7 +392,7 @@ def from_native(cls, surface):
392
:class:`compas.geometry.NurbsSurface`
393
394
"""
395
- raise NotImplementedError
+ return nurbssurface_from_native(cls, surface)
396
397
@classmethod
398
def from_parameters(
0 commit comments