Analize STL.
Buil connectivity, compute metrix, compute volume.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(file_stl_object), | intent(inout) | :: | self | File STL. |
pure subroutine analize(self)
!< Analize STL.
!<
!< Buil connectivity, compute metrix, compute volume.
class(file_stl_object), intent(inout) :: self !< File STL.
if (self%facets_number>0) then
call self%build_connectivity
call self%compute_metrix
call self%compute_volume
endif
endsubroutine analize