tem_line Derived Type

type, public :: tem_line


Contents

Source Code


Components

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

real world coordinates of the start point of the ray

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

direction vector of the line


Source Code

  type tem_line
    !> real world coordinates of the start point of the ray
    real(kind=rk) :: coordStart(3)
    !> direction vector of the line
    real(kind=rk) :: direction(3)
  end type tem_line