summaryrefslogtreecommitdiff
path: root/viewer/helper.ts
blob: bc634a6ef6beda43eeeb019a0a6a0a9647f69c51 (plain)
1
2
3
4
5
import { AABB } from "./resources.ts";

export function aabb_overlap(a: AABB, b: AABB): boolean {
    return true
}