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

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