Abstract base type from which all SDF inherit from.
Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
integer, | public | :: | layer |
Layer ID of SDF |
|||
type(opticalProp_t), | public | :: | optProps |
Optical property of the SDF |
|||
real(kind=wp), | public | :: | transform(4,4) |
Transform to apply to SDF. |
type, abstract :: sdf_base !> Optical property of the SDF type(opticalProp_t) :: optProps !> Transform to apply to SDF. real(kind=wp) :: transform(4, 4) !> Layer ID of SDF integer :: layer contains procedure(evalInterface), deferred :: evaluate end type sdf_base