intersects method

bool intersects(
  1. AABB aabb
)

Returns true if the given AABB intersects the internal bounding volume of this cell.

Implementation

bool intersects(AABB aabb ) {
	return this.aabb.intersectsAABB( aabb );
}