// Allison Obourn, CSE 142 // Client that uses our custom Point class. // Point.java must be in the same folder. import java.awt.*; public class PointClient { public static void main(String[] args) { Point p1 = new Point(42, 70); Point p2 = new Point(90, 200); Point origin = new Point(); DrawingPanel panel = new DrawingPanel(300, 300); Graphics g = panel.getGraphics(); p1.draw(g); p2.draw(g); p1.translate(100, 150); p1.draw(g); } }