Skip to content

Commit

Permalink
Draft: fix error in PR FreeCAD#8698 (FreeCAD#9160)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jolbas authored and chennes committed Apr 5, 2023
1 parent ae690f9 commit 9435c57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mod/Draft/WorkingPlane.py
Original file line number Diff line number Diff line change
Expand Up @@ -892,7 +892,7 @@ def getPlacement(self, rotated=False):
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)
Expand Down

0 comments on commit 9435c57

Please sign in to comment.