interface RayIntersection {
    t0: number;
    t1: number;
    x: number;
    y: number;
}

Properties

t0 t1 x y

Properties

t0: number

The proximity to the Ray origin, as a ratio of distance

t1: number

The proximity to the Ray destination, as a ratio of distance

x: number

The x-coordinate of intersection

y: number

The y-coordinate of intersection