Bounds.Bounds
void Bounds(Vec3 center, Vec3 totalDimensions)
Creates a bounding box object!
Vec3 center | The exact center of the box. |
Vec3 totalDimensions | The total size of the box, from one end to the other. This is the width, height, and depth of the Bounds. |
void Bounds(Vec3 totalDimensions)
Creates a bounding box object centered around zero!
Vec3 totalDimensions | The total size of the box, from one end to the other. This is the width, height, and depth of the Bounds. |
void Bounds(float totalDimensionX, float totalDimensionY, float totalDimensionZ)
Creates a bounding box object centered around zero!
float totalDimensionX | Total size on the X axis. |
float totalDimensionY | Total size on the Y axis. |
float totalDimensionZ | Total size on the Z axis. |
Found an issue with these docs, or have some additional questions? Create an Issue on Github!