plate Derived Type

type, private :: plate

a 3D triangular plate. [note that the order of the vertices defines the surface normal via the right-hand rule]


Inherited by

type~~plate~~InheritedByGraph type~plate plate type~stl_file stl_file type~stl_file->type~plate plates

Components

Type Visibility Attributes Name Initial
real(kind=wp), public, dimension(3) :: v1 = zero

first vertex

real(kind=wp), public, dimension(3) :: v2 = zero

second vertex

real(kind=wp), public, dimension(3) :: v3 = zero

third vertex


Source Code

    type :: plate
        !! a 3D triangular plate.
        !! [note that the order of the vertices defines the
        !! surface normal via the right-hand rule]
        real(wp),dimension(3) :: v1 = zero  !! first vertex
        real(wp),dimension(3) :: v2 = zero  !! second vertex
        real(wp),dimension(3) :: v3 = zero  !! third vertex
    end type plate