fromCenterAndSize method
Sets the values of the AABB from the given center and size vector.
Implementation
AABB fromCenterAndSize(Vector3 center, Vector3 size ) {
vector.copy( size ).multiplyScalar( 0.5 ); // compute half size
min.copy( center ).sub( vector );
max.copy( center ).add( vector );
return this;
}