HirstDots.java
1    package npw;
2    
3    import painter.SPainter;
4    import shapes.SCircle;
5    import shapes.SSquare;
6    
7    import javax.swing.*;
8    import java.awt.*;
9    import java.util.Random;
10   import java.util.Scanner;
11   
12   public class HirstDots {
13   
14       private void paintTheImage(){
15           // Get the input information
16           int radius = getNumber("circle radius");
17           int diameter = getNumber("dots diamater");
18   
19           // Establish the painter
20           SPainter painter = new SPainter("Hirst Dots", radius*2+50, radius*2+50);
21           painter.setBrushWidth(3);
22           SCircle circle = new SCircle(radius);
23           SCircle dots = new SCircle(diameter/2);
24   
25           // Paint the squares
26           paintCircleOfDots(painter, circle, dots);
27       }
28   
29       private void paintCircleOfDots(SPainter painter, SCircle circle, SCircle dots){
30           // Position the painter to begin drawing the rows
31           painter.mfd(circle.radius());
32           painter.tr();
33           // Paint the circle of squares
34           double moved = 0;
35           while (moved < circle.diameter()) {
36               double chord = chordLength(circle.radius() - moved, circle);
37               int squares = squaresOnLineCount(chord, dots.diameter());
38               paintRow(painter, dots, squares);
39               nextRow(painter, dots.diameter());
40               moved = moved + dots.diameter();
41           }
42           // Make the method invariant with respect to painter position
43           painter.tl();
44           painter.mfd(circle.radius());
45       }
46   
47       // Move to the next row
48       private void nextRow(SPainter painter, double rowHeight){
49           painter.tr();
50           painter.mfd(rowHeight);
51           painter.tl();
52       }
53   
54       // Assumes the painter is at the center of the row to paint, facing right.
55       private void paintRow(SPainter painter, SCircle dots, int squaresToPaint){
56           // Move backward 1/2 of the length we're painting to get ready to paint the row.
57           double centerOffset = ( (squaresToPaint * dots.diameter()) / 2) - dots.diameter()/2;
58           painter.mbk(centerOffset);
59   
60           // Paint the row of squares.
61           int painted = 0;
62           while (painted < squaresToPaint){
63               paintOneSquare(painter, dots);
64               painter.mfd(dots.diameter());
65               painted = painted + 1;
66           }
67   
68           // Make the method invariant with respect to painter position.
69           painter.mbk(centerOffset + dots.diameter());
70       }
71   
72       private void paintOneSquare(SPainter painter, SCircle dots){
73           dots.s2();
74           painter.setColor(randomColor());
75           painter.paint(dots);
76           dots.x2();
77       }
78   
79       private static int squaresOnLineCount(double lineLength, double sideLength){
80           int squares = ( (int)Math.ceil( ( lineLength - sideLength ) / sideLength ) + 1);
81           return squares;
82       }
83   
84       private double chordLength(double yOffset, SCircle circle){
85           double xLength = Math.sqrt(Math.pow(circle.radius(), 2) - Math.pow(yOffset, 2));
86           double chordLength = xLength * 2;
87           return chordLength;
88       }
89   
90       private static int getNumber(String prompt) {
91           String nss = JOptionPane.showInputDialog(null,prompt+"?");
92           Scanner scanner = new Scanner(nss);
93           return scanner.nextInt();
94       }
95   
96       private static Color randomColor() {
97           Random rgen = new Random();
98           int r = rgen.nextInt(256);
99           int g = rgen.nextInt(256);
100          int b = rgen.nextInt(256);
101          return new Color(r,g,b);
102      }
103  
104      public HirstDots() {
105          paintTheImage();
106      }
107  
108      public static void main(String[] args) {
109          SwingUtilities.invokeLater(new Runnable() {
110              public void run() {
111                  new HirstDots();
112              }
113          });
114      }
115  }
116