Aabb3 constructor

Aabb3()

Create a new AABB with min and max set to the origin.

Implementation

Aabb3()
    : _min = Vector3.zero(),
      _max = Vector3.zero();