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 public class IntegerPoint
4 {
5     public int x, y, z = 0;
6
7     public IntegerPoint()
8     {
9     }
10
11     public IntegerPoint(final int x, final int y, final int z)
12     {
13         this.x = x;
14         this.y = y;
15         this.z = z;
16     }
17 }