// Koch Curve // Daniel Shiffman // A class to describe an X,Y coordinate class Point { float x,y; Point(float x_, float y_) { x = x_; y = y_; } Point copy() { return new Point(x,y); } }