Fortraneries/BloubWorld/povstuff.f90

40 lines
1001 B
Fortran
Raw Normal View History

2022-02-06 23:45:08 +01:00
module povstuff
implicit none
! ----------------------------------------------------------------
type t_boundb
2022-02-08 02:53:49 +01:00
!
2022-02-06 23:45:08 +01:00
real :: BBminX, BBmaxX, BBminY, BBmaxY, BBminZ, BBmaxZ
integer :: id
2022-02-08 02:53:49 +01:00
!
2022-02-06 23:45:08 +01:00
end type
contains ! -----------------------------------------
subroutine show_bbox( bbox )
type (t_boundb), intent(in) :: bbox
print *, bbox%bbminx, bbox%bbminy, bbox%bbminz
print *, bbox%bbmaxx, bbox%bbmaxy, bbox%bbmaxz
end subroutine
2022-02-08 18:56:51 +01:00
! ----------------------------------------------------------------
2022-02-16 14:29:29 +01:00
subroutine start_of_inc_file (fd)
integer, intent (in) :: fd
write(fd, '(A)') "// DON'T EDIT THIS FILE !"
end subroutine
2022-02-06 23:45:08 +01:00
! ----------------------------------------------------------------
2022-02-08 02:53:49 +01:00
! we need some primitives for the gestion of colors.
! may be a small database indexed by name ?
! XXX
! ----------------------------------------------------------------
2022-02-06 23:45:08 +01:00
end module