Skip to content

Commit 07e30c3

Browse files
committed
same in surface
1 parent 9c283c6 commit 07e30c3

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1212
### Changed
1313

1414
* 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.
1516

1617
### Removed
1718

src/compas/geometry/surfaces/surface.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ def from_native(cls, surface):
160160
A COMPAS surface.
161161
162162
"""
163-
raise NotImplementedError
163+
return surface_from_native(surface)
164164

165165
@classmethod
166166
def from_obj(cls, filepath):

0 commit comments

Comments
 (0)