API reference

Every public class, method, and event in @codexo/exojs. Generated from source.

I

interfaceAabbLike

@codexo/exojs / math / stable

Structural type for an axis-aligned bounding box given as min/max extents. This is the canonical AABB contract across the engine and its packages - broad phases, spatial trees and AABB queries all read and write these four fields directly rather than a centre/half-extent pair.

4
props
0
methods
0
events
Import
import { AabbLike } from '@codexo/exojs'

Structural type for an axis-aligned bounding box given as min/max extents.

This is the canonical AABB contract across the engine and its packages - broad phases, spatial trees and AABB queries all read and write these four fields directly rather than a centre/half-extent pair.

Properties4
maxX: number
maxY: number
minX: number
minY: number
Source