Fix autoboxing on path type impl

This commit is contained in:
Andrey Antukh 2025-08-14 09:06:36 +02:00
parent 77be00014e
commit 89b67d59d5
2 changed files with 2 additions and 2 deletions

View File

@ -403,7 +403,7 @@
(if (>= to 1) (if (>= to 1)
result result
(recur to result)))))) (recur (long to) result))))))
(defn curve-split (defn curve-split
"Splits a curve into two at the given parametric value `t`. "Splits a curve into two at the given parametric value `t`.

View File

@ -190,4 +190,4 @@
(recur (first subpath) (recur (first subpath)
(rest subpath) (rest subpath)
first-point first-point
signed-area)))))) (long signed-area)))))))