From bd627a469f31de1526797f516fc02c03e290436d Mon Sep 17 00:00:00 2001 From: Jolbas <39026960+Jolbas@users.noreply.github.com> Date: Sun, 2 Apr 2023 11:23:59 +0200 Subject: [PATCH] Draft: fix error in PR #8698 (#9160) fix for mistake in pr https://github.com/FreeCAD/FreeCAD/pull/8698 see comment https://github.com/FreeCAD/FreeCAD/pull/8698/files/9983207ab8270421fa87174845396d3da78122ac#r1155160709 --- src/Mod/Draft/WorkingPlane.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Draft/WorkingPlane.py b/src/Mod/Draft/WorkingPlane.py index b4660c3860..8e49135ce6 100644 --- a/src/Mod/Draft/WorkingPlane.py +++ b/src/Mod/Draft/WorkingPlane.py @@ -892,7 +892,7 @@ class Plane: and a `Rotation` (`Base::Rotation`). """ if rotated: - m = DraftVecUtils.getPlaneRotation(self.u, self.v) + m = DraftVecUtils.getPlaneRotation(self.u, self.axis) else: m = DraftVecUtils.getPlaneRotation(self.u, self.v) m.move(self.position)