diff --git a/src/pixie/fileformats/svg.nim b/src/pixie/fileformats/svg.nim index 497483c..0c09365 100644 --- a/src/pixie/fileformats/svg.nim +++ b/src/pixie/fileformats/svg.nim @@ -1,7 +1,7 @@ ## Load SVG files. -import chroma, pixie/common, pixie/images, pixie/internal, pixie/paints, pixie/paths, strutils, - vmath, xmlparser, xmltree, tables +import chroma, pixie/common, pixie/images, pixie/internal, pixie/paints, + pixie/paths, strutils, tables, vmath, xmlparser, xmltree when defined(pixieDebugSvg): import strtabs diff --git a/tests/test_paths.nim b/tests/test_paths.nim index c59995a..1391a02 100644 --- a/tests/test_paths.nim +++ b/tests/test_paths.nim @@ -450,7 +450,7 @@ block: let y = 25f + i.float32 * 50f # y coordinate let radius = 20f # Arc radius let startAngle = 0f # Starting point on circle - let endAngle = PI + (PI * j.float32) / 2 # End point on circle + let endAngle = PI + (PI * j.float32) / 2 # End point on circle let counterclockwise = i mod 2 == 1 # Draw counterclockwise ctx.arc(x, y, radius, startAngle, endAngle, counterclockwise)