move proc, more tests

This commit is contained in:
Ryan Oldenburg 2021-02-24 22:19:09 -06:00
parent 6e7a08538d
commit 3d3dc58bce
2 changed files with 62 additions and 32 deletions

View file

@ -1273,11 +1273,8 @@ proc strokeShapes(
@[a, b, c, d, a]
for shape in shapes:
var shapeStroke: seq[seq[Vec2]]
proc makeJoin(prevPos, pos, nextPos: Vec2): seq[Vec2] =
let angle = fixAngle(-angle(prevPos - pos) - -angle(nextPos - pos))
let angle = fixAngle(angle(nextPos - pos) - angle(prevPos - pos))
if abs(abs(angle) - PI) > epsilon:
var
a = (pos - prevPos).normalize() * halfStroke
@ -1308,6 +1305,9 @@ proc strokeShapes(
of ljRound:
return makeCircle(prevPos)
for shape in shapes:
var shapeStroke: seq[seq[Vec2]]
if shape[0] != shape[^1]:
# This shape does not end at the same point it starts so draw the
# first line cap.

View file

@ -268,3 +268,33 @@ block:
image.strokePath(path, rgba(0, 0, 0, 255), vec2(10, 10), 10, lcSquare, ljBevel)
image.writeFile("tests/images/paths/lcSquare.png")
# Potential error cases, ensure they do not crash
block:
let
image = newImage(60, 60)
path = parsePath("M 3 3 L 3 3 L 3 3")
image.fill(rgba(255, 255, 255, 255))
image.strokePath(path, rgba(0, 0, 0, 255), vec2(10, 10), 10, lcSquare, ljMiter)
block:
let
image = newImage(60, 60)
path = parsePath("L 0 0 L 0 0")
image.fill(rgba(255, 255, 255, 255))
image.strokePath(path, rgba(0, 0, 0, 255), vec2(10, 10), 10, lcSquare, ljMiter)
block:
let
image = newImage(60, 60)
path = parsePath("L 1 1")
image.fill(rgba(255, 255, 255, 255))
image.strokePath(path, rgba(0, 0, 0, 255), vec2(10, 10), 10, lcSquare, ljMiter)
block:
let
image = newImage(60, 60)
path = parsePath("L 0 0")
image.fill(rgba(255, 255, 255, 255))
image.strokePath(path, rgba(0, 0, 0, 255), vec2(10, 10), 10, lcSquare, ljMiter)