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 21dbd61 commit a2df551Copy full SHA for a2df551
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 bug in `compas_occ.geometry.NurbsCurve.transform`.
15
+
16
### Removed
17
18
src/compas_occ/geometry/curves/nurbs.py
@@ -537,7 +537,7 @@ def transform(self, T):
537
None
538
"""
539
occ_T = gp_Trsf()
540
- occ_T.SetValues(* T.list)
+ occ_T.SetValues(* T.list[:12])
541
self.occ_curve.Transform(occ_T)
542
543
def reverse(self):
0 commit comments