summaryrefslogtreecommitdiffstats
path: root/voronoi/cPointd.java
blob: 1254b36946be6798609204c417ff7814da9c1fa7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package voronoi;
class cPointd {
	double x;

	double y;

	cPointd() {
		x = y = 0;
	}

	cPointd(int x, int y) {
		this.x = x;
		this.y = y;
	}
}