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 12e6234 + 12f9fab commit 3bb81acCopy full SHA for 3bb81ac
src/compas/geometry/_primitives/plane.py
@@ -243,8 +243,8 @@ def transform(self, matrix):
243
The transformation matrix.
244
245
"""
246
- point = transform_points([self.point], matrix)
247
- normal = transform_vectors([self.normal], matrix)
+ point = transform_points([self.point], matrix)[0]
+ normal = transform_vectors([self.normal], matrix)[0]
248
self.point.x = point[0]
249
self.point.y = point[1]
250
self.point.z = point[2]
0 commit comments