Skip to main content

Type Alias: Aabb

type Aabb = {
min: Vec3;
max: Vec3;
center: Vec3;
longest_edge_length: number;
};

Defined in: livelink.js/sources/scene/EntityTransformHandler.ts:49

Axis-Aligned Bounding Box data

Type declaration

NameTypeDescription
minVec3Minimum X,Y,Z distances
maxVec3Maximum X,Y,Z distances
centerVec3Center of the bounding box
longest_edge_lengthnumberlongest edge length of the bounding box