File size: 663 Bytes
352fb85
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import { Vector3 } from "./Vector3";

class Plane {
    public readonly normal: Vector3;
    public readonly point: Vector3;

    constructor(normal: Vector3, point: Vector3) {
        this.normal = normal;
        this.point = point;
    }

    intersect(origin: Vector3, direction: Vector3): Vector3 | null {
        const denominator = this.normal.dot(direction);

        if (Math.abs(denominator) < 0.0001) {
            return null;
        }

        const t = this.normal.dot(this.point.subtract(origin)) / denominator;

        if (t < 0) {
            return null;
        }

        return origin.add(direction.multiply(t));
    }
}

export { Plane };