From 3c3800acd0e8bae131e246968f52b2d097b1945c 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/649857b58f7b100242a2e948e07e11ff2fe64f67#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)