Computer Science 252
Problem Solving with Java
Spring 2014, The College of Saint Rose
MoreColorfulSpirograph Demo
A working demo of MoreColorfulSpirograph will appear below. Click inside the applet to interact with it.
MoreColorfulSpirograph BlueJ Project
Click here to download a BlueJ project for MoreColorfulSpirograph.
MoreColorfulSpirograph Source Code
The Java source code for MoreColorfulSpirograph is below. Click on a file name to download it.
import objectdraw.*;
import java.awt.*;
import java.util.Random;
/*
* Example MoreColorfulSpirograph
*
* Another spirograph program. This time it creates lines of
* any randomly chosen color.
*
* Jim Teresco, Siena College, CSIS 120, Spring 2011
* Modified for CSC 252, The College of Saint Rose, Fall 2013, Spring 2014
* Based on example from Williams College CSCI 134
*
* $Id: MoreColorfulSpirograph.java 2311 2014-01-23 05:03:17Z terescoj $
*/
public class MoreColorfulSpirograph extends WindowController {
// first coordinate of a line segment
private Location linesStart;
// color of next spriograph
private Color currentColor;
// generator for random color values
private Random randomIntensity = new Random();
/*
* Save the first coordinate of the line, and pick
* a new color at random.
*/
public void onMousePress(Location point) {
linesStart = point;
// Create a new random color, with values from
// 0..255 for the Red, Green, and Blue parts
currentColor = new Color(randomIntensity.nextInt(256),
randomIntensity.nextInt(256),
randomIntensity.nextInt(256));
}
public void onMouseDrag(Location point) {
new Line(linesStart, point, canvas).setColor(currentColor);
}
// now also clear the canvas when we reenter the window
public void onMouseEnter(Location pt) {
canvas.clear();
}
}