tem_triangle_type Derived Type

type, public :: tem_triangle_type

This type contains three vertices of the triangle


Inherited by

type~~tem_triangle_type~2~~InheritedByGraph type~tem_triangle_type~2 tem_triangle_type type~grw_trianglearray_type~2 grw_trianglearray_type type~grw_trianglearray_type~2->type~tem_triangle_type~2 val

Contents

Source Code


Components

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

1st index contains x,y,z coordinates and 2nd index the vertex number.

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

Source Code

  type tem_triangle_type
    !> 1st index contains x,y,z coordinates
    !! and 2nd index the vertex number.
    real(kind=rk) :: nodes(3,3)
    real(kind=rk) :: normal(3)
  end type tem_triangle_type