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 bddb575 commit 9bf59aeCopy full SHA for 9bf59ae
src/compas_rhino/geometry/brep/face.py
@@ -47,7 +47,9 @@ def _set_face(self, native_face):
47
def data(self):
48
boundary = self._loops[0].data
49
holes = [loop.data for loop in self._loops[1:]]
50
- return {"boundary": boundary, "surface": self._surface.data, "holes": holes}
+ surface = {"type": "nurbs"}
51
+ surface.update(self.surface.data)
52
+ return {"boundary": boundary, "surface": surface, "holes": holes}
53
54
@data.setter
55
def data(self, value):
0 commit comments