summaryrefslogtreecommitdiffstats
path: root/voronoi/cPointd.java
diff options
context:
space:
mode:
Diffstat (limited to 'voronoi/cPointd.java')
-rw-r--r--voronoi/cPointd.java15
1 files changed, 15 insertions, 0 deletions
diff --git a/voronoi/cPointd.java b/voronoi/cPointd.java
new file mode 100644
index 0000000..1254b36
--- /dev/null
+++ b/voronoi/cPointd.java
@@ -0,0 +1,15 @@
+package voronoi;
+class cPointd {
+ double x;
+
+ double y;
+
+ cPointd() {
+ x = y = 0;
+ }
+
+ cPointd(int x, int y) {
+ this.x = x;
+ this.y = y;
+ }
+}