This commit is contained in:
Ryan Oldenburg 2021-04-28 21:56:42 -05:00
parent 4804293a4a
commit 8c11669e7f

View file

@ -236,6 +236,9 @@ proc parsePath*(path: string): Path =
proc transform*(path: var Path, mat: Mat3) =
## Apply a matrix transform to a path.
if mat == mat3():
return
for command in path.commands.mitems:
var mat = mat
if command.kind.isRelative():