This routine destroys growing array of points
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(tem_grwPoints_type), | intent(inout) | :: | me |
Growing array of points in each dimension |
subroutine destroy_grwPoints(me) !--------------------------------------------------------------------------- !> Growing array of points in each dimension type(tem_grwPoints_type), intent(inout) :: me !--------------------------------------------------------------------------- call destroy(me = me%coordX) call destroy(me = me%coordY) call destroy(me = me%coordZ) end subroutine destroy_grwPoints