Nicolas Cannasse 9 年之前
父节点
当前提交
5b6a9d2d2a
共有 1 个文件被更改,包括 0 次插入16 次删除
  1. 0 16
      samples/interact/Main.hx

+ 0 - 16
samples/interact/Main.hx

@@ -1,19 +1,3 @@
-class OptimizedIntersect implements h3d.col.RayCollider {
-
-	var sphere : h3d.col.Sphere;
-	// triangles
-
-	public function new( mesh : h3d.scene.Mesh ) {
-	}
-
-	public function rayIntersection( r : h3d.col.Ray, ?p : h3d.col.Point ) : Null<h3d.col.Point> {
-		//if( !checkRaySphere(r, sphere) )
-		//	return null;
-		// check triangles
-		// ...
-		return null;
-	}
-}
 
 class Main extends hxd.App {