equals method

bool equals(
  1. AABB aabb
)

Returns true if the given AABB is deep equal with this AABB.

Implementation

bool equals(AABB aabb ) {
	return ( aabb.min.equals( min ) ) && ( aabb.max.equals( max ) );
}