Changed license to Creative Commons Zero (CC0).
[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 *
6  */
7
8 package eu.svjatoslav.sixth.e3d.renderer.octree.raytracer;
9
10 public class RayHit {
11
12     float x, y, z;
13
14     int cellPointer;
15
16     public RayHit(final float x, final float y, final float z,
17                   final int cellPointer) {
18         this.x = x;
19         this.y = y;
20         this.z = z;
21         this.cellPointer = cellPointer;
22     }
23 }