| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(type_int_vector_3d), | intent(inout) | :: | self | |||
| integer(kind=int32), | intent(in) | :: | value(3) |
subroutine set_int_vector_3d_array(self, value) implicit none class(type_int_vector_3d), intent(inout) :: self integer(int32), intent(in) :: value(3) self%x = value(1) self%y = value(2) self%z = value(3) end subroutine set_int_vector_3d_array