#Console Draw This is a simple implementation of a Console Drawing command app, using Java8, Maven and Junit library. It is possible to visualize a geometric entity at each time.
Insert the following command on the command line to explore the functionalities provided by Console Drawing app.
Insert C h w to obtain a Canvas with h units of height w units of width.
Insert L x1 y1 x2 y2 to obtain a Line from (x1,y1) to (x2,y2), identified by character x.
Not that diagonal lines are not supported in the current version.
Insert R x1 y1 x2 y2 to obtain a Rectangle with Upper Left corner (x1,y1), and Lower Right corner as (x2,y2),
whose edge is identified by character x.
Insert Q to Quit the program.
To build the app, run the following command on command line (this will run the tests automatically:
mvn clean install
To only run tests, run the following command on command line:
mvn test