Return true if AABB has facets.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(aabb_node_object), | intent(in) | :: | self | AABB box. |
Check result.
pure function has_facets(self)
!< Return true if AABB has facets.
class(aabb_node_object), intent(in) :: self !< AABB box.
logical :: has_facets !< Check result.
has_facets = allocated(self%aabb)
if (has_facets) has_facets = self%aabb%has_facets()
endfunction has_facets