Suggest a change
Success!
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
Close
Submission failed
For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.
Close
Declaration
public void
Encapsulate(
MinMaxAABB aabb);
Parameters
| Parameter |
Description |
| aabb |
AABB to encapsulate. |
Description
Encapsulates the given AABB.
Modifies this AABB so that it contains the given AABB. If the given AABB is already contained by this AABB,
then this AABB doesn't change.
Additional resources: MinMaxAABB.Contains
Declaration
public void
Encapsulate(
float3 point);
Parameters
| Parameter |
Description |
| point |
Point to encapsulate. |
Description
Encapsulate the given point.
Modifies this AABB so that it contains the given point. If the given point is already contained by this AABB,
then this AABB doesn't change.
Additional resources: MinMaxAABB.Contains