setFromPoints method

void setFromPoints(
  1. List<Vector3> arr
)

Set the AABB from an array of vertices. From THREE.

Implementation

void setFromPoints(List<Vector3> arr){
	makeEmpty();
	for(int i = 0; i < arr.length; i++){
		expandByPoint(arr[i]);
	}
}