From ad7d0ce9ca744dd731865c2dbc5634d23b10adda Mon Sep 17 00:00:00 2001 From: Magnus Eik <“mageik@stud.ntnu.noâ€> Date: Wed, 10 Apr 2024 16:00:17 +0200 Subject: [PATCH] Reduce number of steps --- .../java/edu/ntnu/stud/chaosgame/view/ChaosGameGUIView.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/main/java/edu/ntnu/stud/chaosgame/view/ChaosGameGUIView.java b/src/main/java/edu/ntnu/stud/chaosgame/view/ChaosGameGUIView.java index ae71867..ec513b9 100644 --- a/src/main/java/edu/ntnu/stud/chaosgame/view/ChaosGameGUIView.java +++ b/src/main/java/edu/ntnu/stud/chaosgame/view/ChaosGameGUIView.java @@ -207,15 +207,13 @@ public class ChaosGameGUIView { primaryStage.show(); - - } public void drawChaosGame(){ ChaosCanvas canvas = game.getCanvas(); - game.runSteps(1000000000); + game.runSteps(1000000); // Test implementation for drawing fractals int[][] betaArray = canvas.getCanvasArray(); -- GitLab