From db6e56cab84f004d8cee833b197d0cfc52014cd4 Mon Sep 17 00:00:00 2001 From: nathansmith117 Date: Mon, 10 Feb 2025 06:18:18 -0700 Subject: Playing around with faster random numbers --- test/scanTest1.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/scanTest1.c') diff --git a/test/scanTest1.c b/test/scanTest1.c index c673e04..b03060a 100644 --- a/test/scanTest1.c +++ b/test/scanTest1.c @@ -23,8 +23,8 @@ Color lineScanner(uint16_t x, uint16_t y, uint32_t frameNumber) c = frameNumber + hypot((x - 32768) >> scale, (y - 32768) >> scale); } } else { - uint8_t c1 = (x >> 8) + (uint8_t)(hypot(x >> 8, y >> 8) * (frameNumber % 255)); - uint8_t c2 = (x >> 8) + (uint8_t)(hypot(cos(x >> scale), sin(y >> scale)) * (frameNumber % 255)); + uint8_t c1 = (x >> 8) + (uint8_t)(hypot(x >> 8, y >> 8) * (frameNumber % 255)); + uint8_t c2 = (x >> 8) + (uint8_t)(hypot(cos(x >> scale), sin(y >> scale)) * (frameNumber % 255)); uint8_t c3 = frameNumber + hypot((x - 32768) >> scale, (y - 32768) >> scale); c = c1 & c2 & c3; -- cgit v1.2.3