Fortraneries/GrafAnim/usegenplot.f90

48 lines
1.1 KiB
Fortran
Raw Normal View History

2022-10-28 22:18:39 +02:00
module usegenplot
implicit none
contains
! -------------------------------------------------------------------
subroutine init_genplot(filename)
2022-11-13 23:47:45 +01:00
character(*), intent(in) :: filename
2022-10-28 22:18:39 +02:00
2022-11-13 23:47:45 +01:00
write(0, *) '--> init genplot "', filename, '"'
end subroutine
! -------------------------------------------------------------------
subroutine gplt_move(x, y)
integer, intent(in) :: x, y
print *, x, y, 0
end subroutine
! -------------------------------------------------------------------
subroutine gplt_draw(x, y)
integer, intent(in) :: x, y
print *, x, y, 2
end subroutine
! -------------------------------------------------------------------
subroutine gplt_line(x1, y1, x2, y2)
integer, intent(in) :: x1, y1, x2, y2
call gplt_move(x1, y1)
call gplt_draw(x2, y2)
end subroutine
! -------------------------------------------------------------------
subroutine gplt_rect(x1, y1, x2, y2)
integer, intent(in) :: x1, y1, x2, y2! -------------------------------------------------------------------
2022-10-28 22:18:39 +02:00
end subroutine
! -------------------------------------------------------------------
end module