From 711f8855b711c2dd9e1448431b9bdcf925e2e6cc Mon Sep 17 00:00:00 2001 From: Rafael Grigorian Date: Thu, 22 Mar 2018 00:56:53 -0500 Subject: [PATCH] Released Version 1.0.1 - Changed Turtle class to be public instead of default --- pom.xml | 4 ++-- src/main/java/io/raffi/drawille/BrailleMap.java | 2 +- src/main/java/io/raffi/drawille/Canvas.java | 2 +- src/main/java/io/raffi/drawille/DrawilleException.java | 2 +- src/main/java/io/raffi/drawille/Turtle.java | 6 +++--- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/pom.xml b/pom.xml index c032e4c..95dd967 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ io.raffi drawille jar - 1.0.0 + 1.0.1 drawille http://maven.apache.org @@ -65,4 +65,4 @@ - \ No newline at end of file + diff --git a/src/main/java/io/raffi/drawille/BrailleMap.java b/src/main/java/io/raffi/drawille/BrailleMap.java index e3ba4a5..3786292 100644 --- a/src/main/java/io/raffi/drawille/BrailleMap.java +++ b/src/main/java/io/raffi/drawille/BrailleMap.java @@ -6,7 +6,7 @@ * This class stores a 4 by 2 pixel matrix that is eventually translated into a braille character. * This method abstracts away all the calculations that is needed to transform a matrix into a * braille character. This class is meant to be used as a sub-matrix. - * @version 1.0.0 + * @version 1.0.1 * @package io.raffi.drawille * @author Rafael Grigorian * @copyright 2018 Rafael Grigorian — All Rights Reserved diff --git a/src/main/java/io/raffi/drawille/Canvas.java b/src/main/java/io/raffi/drawille/Canvas.java index 965fb46..de20ee5 100644 --- a/src/main/java/io/raffi/drawille/Canvas.java +++ b/src/main/java/io/raffi/drawille/Canvas.java @@ -5,7 +5,7 @@ /** * This class is used to hold all the BrailleMap objects and uses them as sub-matrices. It is an * abstraction of a pixel screen. Methods to interact with those pixels can be found in this class. - * @version 1.0.0 + * @version 1.0.1 * @package io.raffi.drawille * @author Rafael Grigorian * @copyright 2018 Rafael Grigorian — All Rights Reserved diff --git a/src/main/java/io/raffi/drawille/DrawilleException.java b/src/main/java/io/raffi/drawille/DrawilleException.java index b66676f..bf61c7c 100644 --- a/src/main/java/io/raffi/drawille/DrawilleException.java +++ b/src/main/java/io/raffi/drawille/DrawilleException.java @@ -4,7 +4,7 @@ * This class inherits from the RuntimeException class. It is meant to be thrown whenever an out of * range value is passed to the Canvas and BrailleMap class. The message is statically defined in * this class and the caller only has to pass in the out of bounds (x,y) value pairs. - * @version 1.0.0 + * @version 1.0.1 * @package io.raffi.drawille * @author Rafael Grigorian * @copyright 2018 Rafael Grigorian — All Rights Reserved diff --git a/src/main/java/io/raffi/drawille/Turtle.java b/src/main/java/io/raffi/drawille/Turtle.java index e4c4b70..624e4a2 100644 --- a/src/main/java/io/raffi/drawille/Turtle.java +++ b/src/main/java/io/raffi/drawille/Turtle.java @@ -4,13 +4,13 @@ * This class inherits from the Canvas class and it tries to implement turtle graphics. The methods * in this class can be abstracted with an idea of a pen and paper. One can move the pen in three * axis and based on the z axis, when the pen moves it either draws on the paper or not. - * @version 1.0.0 + * @version 1.0.1 * @package io.raffi.drawille * @author Rafael Grigorian * @copyright 2018 Rafael Grigorian — All Rights Reserved * @license MIT License */ -class Turtle extends Canvas { +public class Turtle extends Canvas { /** * @param Double x Horizontal coordinate @@ -149,4 +149,4 @@ public void move ( double x, double y ) { this.y = y; } -} \ No newline at end of file +}