bit faster

This commit is contained in:
Ryan Oldenburg 2021-01-27 03:49:33 -06:00
parent cdb6b3c6fe
commit 2cd3c35fc1

View file

@ -841,7 +841,7 @@ proc fillShapes(
var
fillStart = x.int
leftCover = if at.int - x.int > 0: ceil(x) - x else: at - x
leftCover = if at.int - x.int > 0: trunc(x) + 1 - x else: at - x
if leftCover != 0:
inc fillStart
if shouldFill(windingRule, count):