Albers Square
using JAVA
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | public class AlbersSquares { public static void main(String[] args) { StdDraw.setCanvasSize( 800 , 800 ); // first color int r1 = Integer.parseInt(args[ 0 ]); int g1 = Integer.parseInt(args[ 1 ]); int b1 = Integer.parseInt(args[ 2 ]); Color c1 = new Color(r1, g1, b1); // second color int r2 = Integer.parseInt(args[ 3 ]); int g2 = Integer.parseInt(args[ 4 ]); int b2 = Integer.parseInt(args[ 5 ]); Color c2 = new Color(r2, g2, b2); // first Albers square StdDraw.setPenColor(c1); StdDraw.filledSquare(. 25 , . 5 , . 2 ); StdDraw.setPenColor(c2); StdDraw.filledSquare(. 25 , . 5 , . 1 ); // second Albers square StdDraw.setPenColor(c2); StdDraw.filledSquare(. 75 , . 5 , . 2 ); StdDraw.setPenColor(c1); StdDraw.filledSquare(. 75 , . 5 , . 1 ); } } |