tem_plane Derived Type

type, public :: tem_plane


Components

Type Visibility Attributes Name Initial
real(kind=rk), public :: coord(3)

real world coordinates of one point of the plane

real(kind=rk), public :: normal(3)

normal vector of the plane


Source Code

  type tem_plane
    !> real world coordinates of one point of the plane
    real(kind=rk) :: coord(3)
    !> normal vector of the plane
    real(kind=rk) :: normal(3)
  end type tem_plane