tem_transformation_type Derived Type

type, public :: tem_transformation_type

Data type defines geometry transformation


Inherits

type~~tem_transformation_type~~InheritsGraph type~tem_transformation_type tem_transformation_type type~tem_translation_type tem_translation_type type~tem_transformation_type->type~tem_translation_type translate type~tem_deformation_type tem_deformation_type type~tem_transformation_type->type~tem_deformation_type deform

Contents


Components

Type Visibility Attributes Name Initial
logical, public :: active

is transformation active

type(tem_translation_type), public :: translate

translation of geometry

type(tem_deformation_type), public :: deform

deformation of geometry


Source Code

  type tem_transformation_type
    !> is transformation active
    logical :: active
    !> translation of geometry
    type(tem_translation_type) :: translate
    !> deformation of geometry
    type(tem_deformation_type) :: deform
  end type tem_transformation_type