setFromPoints method
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]);
}
}
Set the AABB from an array of vertices. From THREE.
void setFromPoints(List<Vector3> arr){
makeEmpty();
for(int i = 0; i < arr.length; i++){
expandByPoint(arr[i]);
}
}