From 06fe67084feb7d1b85bae8ee264efcce4474a9ab Mon Sep 17 00:00:00 2001 From: Ryan Oldenburg Date: Thu, 16 Dec 2021 22:19:18 -0600 Subject: [PATCH] fuzz draw trs --- tests/fuzz_image_draw.nim | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 tests/fuzz_image_draw.nim diff --git a/tests/fuzz_image_draw.nim b/tests/fuzz_image_draw.nim new file mode 100644 index 0000000..7cbc422 --- /dev/null +++ b/tests/fuzz_image_draw.nim @@ -0,0 +1,31 @@ +import random, pixie + +randomize() + +for i in 0 ..< 25: + let a = newImage(rand(1 .. 20), rand(1 .. 20)) + for j in 0 ..< 25: + let b = newImage(rand(1 .. 20), rand(1 .. 20)) + + let + translation = vec2(rand(25.0), rand(25.0)) - vec2(5, 5) + rotation = rand(2 * PI).float32 + + echo a, " ", b, " ", translation, " ", rotation + + a.draw(b, translate(vec2(translation.x.trunc, translation.y.trunc))) + a.draw(b, translate(translation) * rotate(rotation)) + +for i in 0 ..< 25: + let a = newImage(rand(1 .. 2000), rand(1 .. 2000)) + for j in 0 ..< 25: + let b = newImage(rand(1 .. 1000), rand(1 .. 1000)) + + let + translation = vec2(rand(2500.0), rand(2500.0)) - vec2(500, 500) + rotation = rand(2 * PI).float32 + + echo a, " ", b, " ", translation, " ", rotation + + a.draw(b, translate(vec2(translation.x.trunc, translation.y.trunc))) + a.draw(b, translate(translation) * rotate(rotation))