Expands this AABB by the given point. So after this method call, the given point lies inside the AABB.
AABB expand(Vector3 point ) { min.min( point ); max.max( point ); return this; }