Updated readability of the code.
[sixth-3d.git] / src / main / java / eu / svjatoslav / sixth / e3d / renderer / octree / IntegerPoint.java
1 package eu.svjatoslav.sixth.e3d.renderer.octree;
2
3 /**
4  * Point in 3D space. Used for octree. All coordinates are integers.
5  */
6 public class IntegerPoint
7 {
8     public int x, y, z = 0;
9
10     public IntegerPoint()
11     {
12     }
13
14     public IntegerPoint(final int x, final int y, final int z)
15     {
16         this.x = x;
17         this.y = y;
18         this.z = z;
19     }
20 }