Bounding box definition for an anatomical region.
Korean: 경계 상자
Defines the collision volume for an anatomical region using either a sphere, box, or capsule shape. Used for broad-phase collision detection.
const headBox: BoundingBox = { type: "sphere", center: { x: 0, y: 1.7, z: 0 }, dimensions: { x: 0.125, y: 0, z: 0 }, // radius only region: "head"}; Copy
const headBox: BoundingBox = { type: "sphere", center: { x: 0, y: 1.7, z: 0 }, dimensions: { x: 0.125, y: 0, z: 0 }, // radius only region: "head"};
경계상자
Readonly
Center position of the bounding box in 3D space
Dimensions: radius for sphere, width/height/depth for box, radius/height for capsule
Anatomical region this bounding box represents
Shape type of the bounding box
Bounding box definition for an anatomical region.
Korean: 경계 상자
Defines the collision volume for an anatomical region using either a sphere, box, or capsule shape. Used for broad-phase collision detection.
Example
Korean
경계상자