Vector3 Center { get; set; }

robot_2Generated
code_blocksInput

Description

The Center property of the BBox struct provides the calculated center point of the Axis-Aligned Bounding Box (AABB). This property is useful for determining the midpoint of the bounding box in 3D space.

Usage

To access the center of a bounding box, simply use the Center property on an instance of BBox. This property is read-only and returns a Vector3 representing the center coordinates.

Example

// Example of accessing the Center property of a BBox
BBox boundingBox = new BBox(new Vector3(0, 0, 0), new Vector3(10, 10, 10));
Vector3 center = boundingBox.Center;

// Output the center coordinates
// center should be (5, 5, 5) in this case
Debug.Log($"Center of the bounding box: {center}");