diff options
author | bptato <nincsnevem662@gmail.com> | 2024-01-07 17:39:33 +0100 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2024-01-07 17:39:33 +0100 |
commit | 10a02b2ae2613b383453ba99318330560e9371ac (patch) | |
tree | c14e3e5e477d257aa7141483c09a52568e5a9458 /src/img | |
parent | 22f127b1124608dc7bcc13165e382bfbaa803764 (diff) | |
download | chawan-10a02b2ae2613b383453ba99318330560e9371ac.tar.gz |
Use std/* imports everywhere
Diffstat (limited to 'src/img')
-rw-r--r-- | src/img/painter.nim | 4 | ||||
-rw-r--r-- | src/img/path.nim | 6 | ||||
-rw-r--r-- | src/img/png.nim | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/src/img/painter.nim b/src/img/painter.nim index d52aaff1..c52cb02e 100644 --- a/src/img/painter.nim +++ b/src/img/painter.nim @@ -1,5 +1,5 @@ -import algorithm -import unicode +import std/algorithm +import std/unicode import css/values import img/bitmap diff --git a/src/img/path.nim b/src/img/path.nim index 0ec7537c..a1ef9cb7 100644 --- a/src/img/path.nim +++ b/src/img/path.nim @@ -1,6 +1,6 @@ -import algorithm -import deques -import math +import std/algorithm +import std/deques +import std/math import types/line import types/vector diff --git a/src/img/png.nim b/src/img/png.nim index fdf02197..8239c35f 100644 --- a/src/img/png.nim +++ b/src/img/png.nim @@ -1,4 +1,4 @@ -import math +import std/math import bindings/zlib import img/bitmap |