Fix rounded join bug.

This commit is contained in:
treeform 2021-05-29 15:15:54 -07:00
parent f42b703832
commit 52bd58fa45

View file

@ -1425,7 +1425,7 @@ proc strokeShapes(
return @[a + pos, b + pos, pos, a + pos]
of ljRound:
return makeCircle(prevPos)
return makeCircle(pos)
for shape in shapes:
var shapeStroke: seq[seq[Vec2]]