Set the AABB from an array of vertices. From THREE.
void setFromPoints(List<Vec3> arr){ makeEmpty(); for(int i = 0; i < arr.length; i++){ expandByPoint(arr[i]); } }