Fix #7372: Increase almost_zero tolerance to handle matrix transformation precision

Changed tolerance from 1e-5 to 1e-4 to account for floating-point errors
introduced by matrix transformations. Fixes section annotations being
incorrectly excluded from drawings when they should be visible.
This commit is contained in:
Ryan Schultz
2025-12-25 21:18:22 -06:00
parent 19534e225f
commit bc6209ad91
@@ -507,7 +507,7 @@ def ortho_view_frame(
def almost_zero(v):
return abs(v) < 1e-5
return abs(v) < 1e-4
def clip_segment(bounds, segm):