fix(explode): correct arc/ellipse direction in mirrored INSERT blocks

Mirrored INSERTs reverse OCS handedness, but acadrust's explode used to
keep the original normal — making CCW-around-normal arcs and ellipses
sweep the wrong way. The fix lives in acadrust 7c711e9, which flips the
new normal when det < 0 and reprojects center/major_axis/angles into the
new OCS. H7CAD's fix_mirrored_arc workaround is no longer needed.
This commit is contained in:
Hakan Seven 2026-05-12 22:04:12 +03:00
commit 200f10fd25
4 changed files with 7 additions and 28 deletions

View file

@ -23,4 +23,4 @@ rayon = "1"
windows-sys = { version = "0.59", features = ["Win32_UI_Shell", "Win32_UI_WindowsAndMessaging"] }
[patch.crates-io]
acadrust = { git = "https://github.com/hakanaktt/acadrust" }
acadrust = { git = "https://github.com/HakanSeven12/acadrust", rev = "7c711e9" }