tem_line_type Derived Type

type, public :: tem_line_type

This type contains line definition i.e origin and vector which defines the direction of the line


Inherited by

type~~tem_line_type~2~~InheritedByGraph type~tem_line_type~2 tem_line_type type~grw_linearray_type~2 grw_linearray_type type~grw_linearray_type~2->type~tem_line_type~2 val

Contents

Source Code


Components

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

Source Code

  type tem_line_type
    real(kind=rk) :: origin(3) !< line origin
    real(kind=rk) :: vec(3) !< vector which defines direction of the line
  end type tem_line_type