From 773af19f905202a48d7501ba33e8f2ed2fc653b8 Mon Sep 17 00:00:00 2001 From: Felix Pankratz Date: Wed, 21 Aug 2024 09:51:18 +0200 Subject: [PATCH] waves create waves in main --- waves.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/waves.py b/waves.py index e426d6d..21d6fce 100755 --- a/waves.py +++ b/waves.py @@ -104,8 +104,8 @@ def create_wpotd(output): ctx.line_to(*points[0]) ctx.fill() lastpoints = points - return surface - #surface.write_to_png(output) # Output to PNG + #return surface + surface.write_to_png(output) # Output to PNG def main(): create_wpotd('out/waves.png')