Summary of Point
class Point {
public double x;
public double y;
public void clear() {
this.x = 0;
this.y = 0;
}
public double distance(Point that) {
... }
}
Previous slide
Next slide
Back to the index
View Graphic Version
Notes:
No notes for slide 21