diff --git a/src/main/java/edu/ntnu/stud/chaosgame/transformations/ChaosCanvas.java b/src/main/java/edu/ntnu/stud/chaosgame/model/handling/ChaosCanvas.java
similarity index 95%
rename from src/main/java/edu/ntnu/stud/chaosgame/transformations/ChaosCanvas.java
rename to src/main/java/edu/ntnu/stud/chaosgame/model/handling/ChaosCanvas.java
index c0836a7beab0c098ee1de823c40c7d807a875075..c6f620b6b3f1efbdc2dd195abe1a93106db3e734 100644
--- a/src/main/java/edu/ntnu/stud/chaosgame/transformations/ChaosCanvas.java
+++ b/src/main/java/edu/ntnu/stud/chaosgame/model/handling/ChaosCanvas.java
@@ -1,7 +1,8 @@
-package edu.ntnu.stud.chaosgame.transformations;
+package edu.ntnu.stud.chaosgame.model.handling;
 
 import edu.ntnu.stud.chaosgame.model.Matrix2x2;
 import edu.ntnu.stud.chaosgame.model.Vector2D;
+import edu.ntnu.stud.chaosgame.model.transformations.AffineTransform2D;
 
 
 /**
diff --git a/src/main/java/edu/ntnu/stud/chaosgame/transformations/AffineTransform2D.java b/src/main/java/edu/ntnu/stud/chaosgame/model/transformations/AffineTransform2D.java
similarity index 97%
rename from src/main/java/edu/ntnu/stud/chaosgame/transformations/AffineTransform2D.java
rename to src/main/java/edu/ntnu/stud/chaosgame/model/transformations/AffineTransform2D.java
index 1df2ee410615aacbe0081e71563c623910fafe0f..ea625baa27cc72cb65ee5fa24a97f0721f688086 100644
--- a/src/main/java/edu/ntnu/stud/chaosgame/transformations/AffineTransform2D.java
+++ b/src/main/java/edu/ntnu/stud/chaosgame/model/transformations/AffineTransform2D.java
@@ -1,4 +1,4 @@
-package edu.ntnu.stud.chaosgame.transformations;
+package edu.ntnu.stud.chaosgame.model.transformations;
 
 import edu.ntnu.stud.chaosgame.model.Matrix2x2;
 import edu.ntnu.stud.chaosgame.model.Vector2D;
diff --git a/src/main/java/edu/ntnu/stud/chaosgame/transformations/JuliaTransform.java b/src/main/java/edu/ntnu/stud/chaosgame/model/transformations/JuliaTransform.java
similarity index 97%
rename from src/main/java/edu/ntnu/stud/chaosgame/transformations/JuliaTransform.java
rename to src/main/java/edu/ntnu/stud/chaosgame/model/transformations/JuliaTransform.java
index c56bc83e4653507514cfcf52aab64d9d284b1e6e..1022516ec988c75b6b4ef357724d1cbce7a0c3bb 100644
--- a/src/main/java/edu/ntnu/stud/chaosgame/transformations/JuliaTransform.java
+++ b/src/main/java/edu/ntnu/stud/chaosgame/model/transformations/JuliaTransform.java
@@ -1,4 +1,4 @@
-package edu.ntnu.stud.chaosgame.transformations;
+package edu.ntnu.stud.chaosgame.model.transformations;
 
 import edu.ntnu.stud.chaosgame.model.Complex;
 import edu.ntnu.stud.chaosgame.model.Vector2D;
diff --git a/src/main/java/edu/ntnu/stud/chaosgame/transformations/Transform2D.java b/src/main/java/edu/ntnu/stud/chaosgame/model/transformations/Transform2D.java
similarity index 87%
rename from src/main/java/edu/ntnu/stud/chaosgame/transformations/Transform2D.java
rename to src/main/java/edu/ntnu/stud/chaosgame/model/transformations/Transform2D.java
index 3a0537a8390e9a2caa9ea02769644bea5856240b..be9aae7e18b44a4824d28cc7aa9c39077104a1b1 100644
--- a/src/main/java/edu/ntnu/stud/chaosgame/transformations/Transform2D.java
+++ b/src/main/java/edu/ntnu/stud/chaosgame/model/transformations/Transform2D.java
@@ -1,4 +1,4 @@
-package edu.ntnu.stud.chaosgame.transformations;
+package edu.ntnu.stud.chaosgame.model.transformations;
 
 import edu.ntnu.stud.chaosgame.model.Vector2D;