(Line l)
| 7 | } |
| 8 | |
| 9 | public static void printLine(Line l) { |
| 10 | System.out.println(l.start.x + "\t" + l.start.y); |
| 11 | System.out.println(l.end.x + "\t" + l.end.y); |
| 12 | } |
| 13 | |
| 14 | public static void printSquare(Square s) { |
| 15 | System.out.println(s.left + "\t" + s.top + "\t" + s.size); |