Skip to content

Commit

Permalink
Draft: fix error in PR FreeCAD#8698
Browse files Browse the repository at this point in the history
  • Loading branch information
Jolbas committed Apr 1, 2023
1 parent 58a9af2 commit 4c57385
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 4c57385

Please sign in to comment.