Save AABB geometry into Tecplot ascii file.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(aabb_node_object), | intent(in) | :: | self | AABB. |
||
| integer(kind=I4P), | intent(in) | :: | file_unit | File unit. |
||
| character(len=*), | intent(in), | optional | :: | aabb_name | Name of AABB. |
subroutine save_geometry_tecplot_ascii(self, file_unit, aabb_name)
!< Save AABB geometry into Tecplot ascii file.
class(aabb_node_object), intent(in) :: self !< AABB.
integer(I4P), intent(in) :: file_unit !< File unit.
character(*), intent(in), optional :: aabb_name !< Name of AABB.
if (allocated(self%aabb)) call self%aabb%save_geometry_tecplot_ascii(file_unit=file_unit, aabb_name=aabb_name)
endsubroutine save_geometry_tecplot_ascii