Formatting update
[sixth-3d.git] / src / main / java / eu / svjatoslav / sixth / e3d / renderer / octree / raytracer / RayHit.java
1 /*
2  * Sixth 3D engine. Author: Svjatoslav Agejenko. 
3  * This project is released under Creative Commons Zero (CC0) license.
4  */
5 package eu.svjatoslav.sixth.e3d.renderer.octree.raytracer;
6
7 public class RayHit {
8
9     float x, y, z;
10
11     int cellPointer;
12
13     public RayHit(final float x, final float y, final float z,
14                   final int cellPointer) {
15         this.x = x;
16         this.y = y;
17         this.z = z;
18         this.cellPointer = cellPointer;
19     }
20 }