Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
integer(kind=int32), | public | :: | cell_dimension | ||||
integer(kind=int32), | public | :: | cell_entity_id | ||||
integer(kind=int32), | public | :: | cell_order | ||||
integer(kind=int32), | public | :: | cell_type | ||||
character(len=:), | public, | allocatable | :: | cell_type_name | |||
integer(kind=int32), | public, | allocatable | :: | connectivity(:) | |||
integer(kind=int32), | public | :: | num_nodes_in_cell |
Get the dimension of the cell
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(type_vtk_cell), | intent(in) | :: | self |
VTK cell data |
Get the order of the cell
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(type_vtk_cell), | intent(in) | :: | self |
VTK cell data |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(type_vtk_cell), | intent(inout) | :: | self |
VTK cells data |
||
integer(kind=int32), | intent(in) | :: | num_nodes_in_cell |
セルのノード数 |
type :: type_vtk_cell integer(int32) :: cell_type character(:), allocatable :: cell_type_name integer(int32) :: num_nodes_in_cell integer(int32) :: cell_entity_id integer(int32) :: cell_dimension integer(int32) :: cell_order integer(int32), allocatable :: connectivity(:) contains procedure :: set => type_vtk_cell_set procedure :: get_dimension => type_vtk_cell_get_dimension procedure :: get_order => type_vtk_cell_get_order end type type_vtk_cell