From 943961677b88df8263b32d1332abb813756ac564 Mon Sep 17 00:00:00 2001 From: Ryan Oldenburg Date: Thu, 25 Nov 2021 20:09:00 -0600 Subject: [PATCH] pixelErrorMargin --- src/pixie/paths.nim | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/pixie/paths.nim b/src/pixie/paths.nim index e2ebd5a..8cb4a11 100644 --- a/src/pixie/paths.nim +++ b/src/pixie/paths.nim @@ -46,6 +46,7 @@ type const epsilon: float64 = 0.0001 * PI ## Tiny value used for some computations. Must be float64 to prevent leaks. + pixelErrorMargin: float32 = 0.2 defaultMiterLimit*: float32 = 4 when defined(release): @@ -651,7 +652,7 @@ proc commandsToShapes( prevCommandKind = Move prevCtrl, prevCtrl2: Vec2 - let errorMarginSq = pow(0.2.float32 / pixelScale, 2) + let errorMarginSq = pow(pixelErrorMargin / pixelScale, 2) proc addSegment(shape: var seq[Vec2], at, to: Vec2) = # Don't add any 0 length lines @@ -1697,7 +1698,7 @@ proc strokeShapes( @[a, b, c, d, a] proc addJoin(shape: var seq[seq[Vec2]], prevPos, pos, nextPos: Vec2) = - let minArea = 0.1 / pixelScale # 10% of a pixel + let minArea = pixelErrorMargin / pixelScale if lineJoin == ljRound: let area = PI.float32 * halfStroke * halfStroke