Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 19 additions & 5 deletions src/pixie/paths.nim
Original file line number Diff line number Diff line change
Expand Up @@ -675,10 +675,20 @@ proc commandsToShapes(
proc addCubic(shape: var Polygon, at, ctrl1, ctrl2, to: Vec2) =
## Adds cubic segments to shape.
proc compute(at, ctrl1, ctrl2, to: Vec2, t: float32): Vec2 {.inline.} =
pow(1 - t, 3) * at +
pow(1 - t, 2) * 3 * t * ctrl1 +
(1 - t) * 3 * pow(t, 2) * ctrl2 +
pow(t, 3) * to
let
t2 = t*t
t3 = t2*t
at * (-t3 + 3*t2 - 3*t + 1) +
ctrl1 * (3*t3 - 6*t2 + 3*t) +
ctrl2 * (-3*t3 + 3*t2) +
to * (t3)

proc computeDeriv(at, ctrl1, ctrl2, to: Vec2, t: float32): Vec2 {.inline.} =
let t2 = t*t
at * (-3*t2 + 6*t - 3) +
ctrl1 * (9*t2 - 12*t + 3) +
ctrl2 * (-9*t2 + 6*t) +
to * (3 * t2)

var
t: float32 # Where we are at on the curve from [0, 1]
Expand All @@ -691,8 +701,12 @@ proc commandsToShapes(
raise newException(PixieError, "Unable to discretize cubic")
let
midpoint = (prev + next) / 2
lineTangent = midpoint - prev
curveTangent = computeDeriv(at, ctrl1, ctrl2, to, t + step / 2)
curveTangentScaled = curveTangent.normalize() * lineTangent.length()
error = (midpoint - halfway).lengthSq
if error > errorMarginSq:
errorTangent = (lineTangent - curveTangentScaled).lengthSq
if error + errorTangent > errorMarginSq:
next = halfway
halfway = compute(at, ctrl1, ctrl2, to, t + step / 4)
step /= 2
Expand Down
Binary file added tests/paths/pathSwish.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions tests/test_paths.nim
Original file line number Diff line number Diff line change
Expand Up @@ -773,3 +773,14 @@ block:
mat3(),
NonZero
)

block:
let
image = newImage(100, 100)
pathStr = """
M 40 40 L 40 80 L 80 80 L 80 40 C 80 -20 40 100 40 40
"""
color = rgba(0, 0, 0, 255)
image.fill(rgba(255, 255, 255, 255))
image.fillPath(pathStr, color)
image.writeFile("tests/paths/pathSwish.png")