Fortraneries/BloubWorld/povstuff.f90

42 lines
1.0 KiB
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 )
2024-02-06 17:03:00 +01:00
implicit none
2022-02-06 23:45:08 +01:00
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)
2024-02-06 17:03:00 +01:00
implicit none
2022-02-16 14:29:29 +01:00
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