Updated readability of the code.
[sixth-3d.git] / src / main / java / eu / svjatoslav / sixth / e3d / renderer / octree / IntegerPoint.java
index 2aa151c..7dce375 100644 (file)
@@ -1,5 +1,8 @@
 package eu.svjatoslav.sixth.e3d.renderer.octree;
 
+/**
+ * Point in 3D space. Used for octree. All coordinates are integers.
+ */
 public class IntegerPoint
 {
     public int x, y, z = 0;