Skip to content

Commit 156d764

Browse files
committed
converting the point.Location instead of point
1 parent 5263ced commit 156d764

File tree

1 file changed

+1
-1
lines changed
  • src/compas_rhino/geometry/curves

1 file changed

+1
-1
lines changed

src/compas_rhino/geometry/curves/nurbs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ def data(self, data):
121121
@property
122122
def points(self):
123123
if self.rhino_curve:
124-
return [point_to_compas(point) for point in self.rhino_curve.Points]
124+
return [point_to_compas(point.Location) for point in self.rhino_curve.Points]
125125

126126
@property
127127
def weights(self):

0 commit comments

Comments
 (0)