Printing Output - AkshathRaghav/cubot.io GitHub Wiki
toString()/System.out.println(cube)
--> Prints out the cube so that its easy to understand
Cubot cube3x3 = new Cubot(true) ;
Cubot cube2x2 = new Cubot(false) ;
System.out.println(cube3x3) ;
System.out.println(cube2x2) ;
indexString()
--> Prints out the cube with indexes and colors on each face of the cube pieces ( along with indexes )
Cubot cube3x3 = new Cubot(true) ;
Cubot cube2x2 = new Cubot(false) ;
System.out.println(cube3x3.indexedString()) ;
System.out.println(cube2x2.indexedString()) ;