Returns true if the given AABB is deep equal with this AABB.
bool equals(AABB aabb ) { return ( aabb.min.equals( min ) ) && ( aabb.max.equals( max ) ); }