From 564bac363f38445dad2db011769738a6b176f817 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Sat, 27 Jul 2024 02:20:31 +0100 Subject: Clean up and use the right initial fraction for CW tree --- src/main.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/main.cpp b/src/main.cpp index 99b24d1..a1743bf 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -102,7 +102,7 @@ struct State constexpr word_t clamp_to_width(long double value) { - return WIDTH / (bounds.upper - bounds.lower) * (value - bounds.lower); + return (WIDTH / (bounds.upper - bounds.lower)) * (value - bounds.lower); } void draw_bounds() @@ -147,7 +147,7 @@ using Ms = std::chrono::milliseconds; int main(void) { // Setup state - State state{{1, 2}}; + State state{{1, 1}}; // Setup meta text (counter, iterations, etc) word_t count = 1, prev_count = 0; @@ -156,9 +156,10 @@ int main(void) word_t format_str_width = 0; Fraction previous_leftmost, previous_rightmost; + // Setup timer auto time_current = Clock::now(); auto time_previous = time_current; - constexpr auto time_delta = 10; + constexpr auto time_delta = 1; InitWindow(WIDTH, HEIGHT, "Calkin-Wilf Tree"); while (!WindowShouldClose()) -- cgit v1.2.3-13-gbd6f