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 9c283c6 commit 07e30c3Copy full SHA for 07e30c3
CHANGELOG.md
@@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
12
### Changed
13
14
* Fixed `NotImplementedError` when calling `compas_rhino.conversions.surface_to_compas` on NURBS Surface.
15
+* Fixed `NotImplementedError` when calling `compas_rhino.conversions.surface_to_compas` on Surface.
16
17
### Removed
18
src/compas/geometry/surfaces/surface.py
@@ -160,7 +160,7 @@ def from_native(cls, surface):
160
A COMPAS surface.
161
162
"""
163
- raise NotImplementedError
+ return surface_from_native(surface)
164
165
@classmethod
166
def from_obj(cls, filepath):
0 commit comments