From e2e8d6582e0e41bd9895a8d68491e5fc4cffad0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A5vard=20Daleng?= <142524365+MrMarHVD@users.noreply.github.com> Date: Wed, 28 Feb 2024 13:25:36 +0100 Subject: [PATCH] Created placeholder ChaosGame class. --- .../chaosgame/model/handling/ChaosGame.java | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 src/main/java/edu/ntnu/stud/chaosgame/model/handling/ChaosGame.java diff --git a/src/main/java/edu/ntnu/stud/chaosgame/model/handling/ChaosGame.java b/src/main/java/edu/ntnu/stud/chaosgame/model/handling/ChaosGame.java new file mode 100644 index 0000000..1e3f796 --- /dev/null +++ b/src/main/java/edu/ntnu/stud/chaosgame/model/handling/ChaosGame.java @@ -0,0 +1,31 @@ +package edu.ntnu.stud.chaosgame.model.handling; + +import edu.ntnu.stud.chaosgame.model.Vector2D; +import java.util.Random; + +/** + * Class representing the chaos game. + */ +public class ChaosGame { + + /** + * The canvas for this ChaosGame + */ + private ChaosCanvas canvas; + + /** + * The description for this ChaosGame + */ + // private ChaosGameDescription description; + + /** + * The current point in the chaos game. + */ + private Vector2D currentPoint; + + /** + * The random number generator for the chaos game. + */ + public Random random; + +} -- GitLab