diff --git a/src/main/java/edu/ntnu/stud/chaosgame/model/Matrix2x2.java b/src/main/java/edu/ntnu/stud/chaosgame/model/Matrix2x2.java index 58c165ba1037597f8e2949a2c0f310273bd84785..3db0c55fb8cc2e7b5d62612c25172bb25f4c4e57 100644 --- a/src/main/java/edu/ntnu/stud/chaosgame/model/Matrix2x2.java +++ b/src/main/java/edu/ntnu/stud/chaosgame/model/Matrix2x2.java @@ -50,21 +50,30 @@ public class Matrix2x2 { } /** - * - * @return + * Getter method for {@link edu.ntnu.stud.chaosgame.game.ChaosGameDescription} + * @return a matrix component. */ public double getA00() { return a00; } - + /** + * Getter method for {@link edu.ntnu.stud.chaosgame.game.ChaosGameDescription} + * @return a matrix component. + */ public double getA01() { return a01; } - + /** + * Getter method for {@link edu.ntnu.stud.chaosgame.game.ChaosGameDescription} + * @return a matrix component. + */ public double getA10() { return a10; } - + /** + * Getter method for {@link edu.ntnu.stud.chaosgame.game.ChaosGameDescription} + * @return a matrix component. + */ public double getA11() { return a11; }