// Helene Martin, CSE 142 // Blueprint for creating objects of type Point public class Point { // fields (state) int x; // each Point object has own x and y int y; // moves x and y coordinates of a particular point public void translate(int dx, int dy) { x += dx; y += dy; } }