File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed
src/compas/geometry/surfaces Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,9 @@ 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+ * Fixed ` NotImplementedError ` when calling ` compas_rhino.conversions.surface_to_compas ` on Surface.
16+
1417### Removed
1518
1619
Original file line number Diff line number Diff 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 (
Original file line number Diff line number Diff 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 ( cls , surface )
164164
165165 @classmethod
166166 def from_obj (cls , filepath ):
You can’t perform that action at this time.
0 commit comments