Draft: add formatting off comments (#24503)

This commit is contained in:
marcuspollio
2025-10-08 21:43:38 +02:00
committed by GitHub
parent acd0be04cd
commit 04cc53bad6
8 changed files with 72 additions and 24 deletions

View File

@@ -146,10 +146,12 @@ class Hatch(DraftObject):
if u.Length > 0.001:
u = u.normalize()
v = w.cross(u)
# fmt: off
mtx = App.Matrix(u.x, v.x, w.x, sta.x,
u.y, v.y, w.y, sta.y,
u.z, v.z, w.z, sta.z,
0.0, 0.0, 0.0, 1.0)
# fmt: on
break
# If no suitable straight edge was found use a default matrix:
if not mtx: