cube__switch_ascii_to_bmp Subroutine

private pure subroutine cube__switch_ascii_to_bmp(self)

Type Bound

cube_t

Arguments

Type IntentOptional Attributes Name
class(cube_t), intent(inout) :: self

Source Code

   pure subroutine cube__switch_ascii_to_bmp(self)
      implicit none
      class(cube_t), intent(inout) :: self

      self%is_switched_to_bmp = .true.
      if (.not. allocated(self%bmp)) then
         allocate(self%bmp)
         self%bmp%b(0:1) = self%ascii%a(0:1)
      end if

   end subroutine cube__switch_ascii_to_bmp