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
Name | Type | Description |
---|---|---|
min | Vec3 | Minimum X,Y,Z distances |
max | Vec3 | Maximum X,Y,Z distances |
center | Vec3 | Center of the bounding box |
longest_edge_length | number | longest edge length of the bounding box |