nodetype Derived Type

type, public :: nodetype


Contents

Source Code


Components

TypeVisibility AttributesNameInitial
real(kind=wp), public :: x
real(kind=wp), public :: y
real(kind=wp), public :: z

Source Code

    type, public :: nodetype
        real(wp) :: x
        real(wp) :: y
        real(wp) :: z
    end type nodetype