type_int_3d Derived Type

type, public :: type_int_3d


Components

Type Visibility Attributes Name Initial
integer(kind=int32), public, allocatable :: x(:)
integer(kind=int32), public, allocatable :: y(:)
integer(kind=int32), public, allocatable :: z(:)

Source Code

    type :: type_int_3d
        integer(int32), allocatable :: x(:)
        integer(int32), allocatable :: y(:)
        integer(int32), allocatable :: z(:)
    end type type_int_3d