mirror of
https://github.com/RandomityGuy/MBHaxe.git
synced 2025-10-30 08:11:25 +00:00
12 lines
208 B
Haxe
12 lines
208 B
Haxe
package octree;
|
|
|
|
import h3d.Vector;
|
|
|
|
class OctreeIntersection {
|
|
public var object:IOctreeObject;
|
|
public var point:Vector;
|
|
public var distance:Float;
|
|
public var normal:Vector;
|
|
|
|
public function new() {}
|
|
}
|