Updated readability of the code.
[sixth-3d.git] / src / main / java / eu / svjatoslav / sixth / e3d / renderer / octree / IntegerPoint.java
diff --git a/src/main/java/eu/svjatoslav/sixth/e3d/renderer/octree/IntegerPoint.java b/src/main/java/eu/svjatoslav/sixth/e3d/renderer/octree/IntegerPoint.java
new file mode 100644 (file)
index 0000000..2aa151c
--- /dev/null
@@ -0,0 +1,17 @@
+package eu.svjatoslav.sixth.e3d.renderer.octree;
+
+public class IntegerPoint
+{
+    public int x, y, z = 0;
+
+    public IntegerPoint()
+    {
+    }
+
+    public IntegerPoint(final int x, final int y, final int z)
+    {
+        this.x = x;
+        this.y = y;
+        this.z = z;
+    }
+}