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.
2 parents 5263ced + 3f05a17 commit 02bb249Copy full SHA for 02bb249
CHANGELOG.md
@@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11
12
### Changed
13
14
+* Fixed strange point values in RhinoNurbsCurve caused by conversion `ControlPoint` to COMPAS instead of `ControlPoint.Location`.
15
+
16
### Removed
17
18
src/compas_rhino/geometry/curves/nurbs.py
@@ -121,7 +121,7 @@ def data(self, data):
121
@property
122
def points(self):
123
if self.rhino_curve:
124
- return [point_to_compas(point) for point in self.rhino_curve.Points]
+ return [point_to_compas(point.Location) for point in self.rhino_curve.Points]
125
126
127
def weights(self):
0 commit comments