|
| 1 | +HitTest = function(t, hit, normal) { |
| 2 | + this.t = arguments.length ? t : Number.MAX_VALUE; |
| 3 | + this.hit = hit; |
| 4 | + this.normal = normal; |
| 5 | +}; |
| 6 | + |
| 7 | +HitTest.prototype.mergeWith = function(other) { |
| 8 | + if (other.t > 0 && other.t < this.t) { |
| 9 | + this.t = other.t; |
| 10 | + this.hit = other.hit; |
| 11 | + this.normal = other.normal; |
| 12 | + } |
| 13 | +}; |
| 14 | + |
| 15 | +Raytracer = function() { |
| 16 | + var v = gl.getParameter(gl.VIEWPORT); |
| 17 | + var m = gl.modelviewMatrix.m; |
| 18 | + |
| 19 | + // Reconstruct the eye position |
| 20 | + var axisX = new Vector(m[0], m[4], m[8]); |
| 21 | + var axisY = new Vector(m[1], m[5], m[9]); |
| 22 | + var axisZ = new Vector(m[2], m[6], m[10]); |
| 23 | + var offset = new Vector(m[3], m[7], m[11]); |
| 24 | + this.eye = new Vector(-offset.dot(axisX), -offset.dot(axisY), -offset.dot(axisZ)); |
| 25 | + |
| 26 | + // Generate rays through the four corners of the frustum |
| 27 | + var minX = v[0], maxX = minX + v[2]; |
| 28 | + var minY = v[1], maxY = minY + v[3]; |
| 29 | + this.ray00 = gl.unProject(minX, minY, 1).subtract(this.eye); |
| 30 | + this.ray10 = gl.unProject(maxX, minY, 1).subtract(this.eye); |
| 31 | + this.ray01 = gl.unProject(minX, maxY, 1).subtract(this.eye); |
| 32 | + this.ray11 = gl.unProject(maxX, maxY, 1).subtract(this.eye); |
| 33 | + this.viewport = v; |
| 34 | +}; |
| 35 | + |
| 36 | +Raytracer.prototype.getRayForPixel = function(x, y) { |
| 37 | + x = (x - this.viewport[0]) / this.viewport[2]; |
| 38 | + y = 1 - (y - this.viewport[1]) / this.viewport[3]; |
| 39 | + var ray0 = Vector.lerp(this.ray00, this.ray10, x); |
| 40 | + var ray1 = Vector.lerp(this.ray01, this.ray11, x); |
| 41 | + return Vector.lerp(ray0, ray1, y).unit(); |
| 42 | +}; |
| 43 | + |
| 44 | +Raytracer.hitTestAABB = function(origin, ray, minCorner, maxCorner) { |
| 45 | + // Use the slab intersection method |
| 46 | + var tMin = minCorner.subtract(origin).divide(ray); |
| 47 | + var tMax = maxCorner.subtract(origin).divide(ray); |
| 48 | + var t1 = Vector.min(tMin, tMax); |
| 49 | + var t2 = Vector.max(tMin, tMax); |
| 50 | + var tNear = t1.max(); |
| 51 | + var tFar = t2.min(); |
| 52 | + |
| 53 | + if (tNear > 0 && tNear < tFar) { |
| 54 | + var epsilon = 1.0e-6, min = minCorner.add(epsilon), max = maxCorner.subtract(epsilon), hit = origin.add(ray.multiply(tNear)); |
| 55 | + return new HitTest(tNear, hit, new Vector((hit.x > max.x) - (hit.x < min.x), (hit.y > max.y) - (hit.y < min.y), (hit.z > max.z) - (hit.z < min.z))); |
| 56 | + } |
| 57 | + |
| 58 | + return null; |
| 59 | +}; |
| 60 | + |
| 61 | +Raytracer.hitTestSphere = function(origin, ray, center, radius) { |
| 62 | + var offset = origin.subtract(center); |
| 63 | + var a = ray.dot(ray); |
| 64 | + var b = 2 * ray.dot(offset); |
| 65 | + var c = offset.dot(offset) - radius * radius; |
| 66 | + var discriminant = b * b - 4 * a * c; |
| 67 | + |
| 68 | + if (discriminant > 0) { |
| 69 | + var t = (-b - Math.sqrt(discriminant)) / (2 * a), hit = origin.add(ray.multiply(t)); |
| 70 | + return new HitTest(t, hit, hit.subtract(center).divide(radius)); |
| 71 | + } |
| 72 | + |
| 73 | + return null; |
| 74 | +}; |
| 75 | + |
| 76 | +Raytracer.hitTestTriangle = function(origin, ray, a, b, c) { |
| 77 | + var ab = b.subtract(a); |
| 78 | + var ac = c.subtract(a); |
| 79 | + var normal = ab.cross(ac).unit(); |
| 80 | + var t = normal.dot(a.subtract(origin)).divide(normal.dot(ray)); |
| 81 | + |
| 82 | + if (t > 0) { |
| 83 | + var hit = origin.add(ray.multiply(t)); |
| 84 | + var toHit = hit.subtract(a); |
| 85 | + var dot00 = ac.dot(ac); |
| 86 | + var dot01 = ac.dot(ab); |
| 87 | + var dot02 = ac.dot(toHit); |
| 88 | + var dot11 = ab.dot(ab); |
| 89 | + var dot12 = ab.dot(toHit); |
| 90 | + var divide = dot00 * dot11 - dot01 * dot01; |
| 91 | + var u = (dot11 * dot02 - dot01 * dot12) / divide; |
| 92 | + var v = (dot00 * dot12 - dot01 * dot02) / divide; |
| 93 | + if (u >= 0 && v >= 0 && u + v <= 1) return new HitTest(t, hit, normal); |
| 94 | + } |
| 95 | + |
| 96 | + return null; |
| 97 | +}; |
0 commit comments