encounter_final_aabb Subroutine

public subroutine encounter_final_aabb(self)

Finalize the axis aligned bounding box (1D) - deallocates all allocatables

Arguments

TypeIntentOptionalAttributesName
type(encounter_bounding_box_1D), intent(inout) :: self

Contents

Source Code


Source Code

      subroutine encounter_final_aabb(self)
         !! author: David A. Minton
         !!
         !! Finalize the axis aligned bounding box (1D) - deallocates all allocatables
         implicit none
         ! Arguments
         type(encounter_bounding_box_1D), intent(inout) :: self

         call self%dealloc()

         return
      end subroutine encounter_final_aabb