pimp my plotting

This commit is contained in:
tTh 2024-08-19 15:40:56 +02:00
parent 0707c0192c
commit 1e175bc6ef
2 changed files with 45 additions and 24 deletions

View File

@ -12,3 +12,4 @@ plot89a.gif: dessiner Makefile
rm -f WS/A????.png
./dessiner
convert -delay 10 -colors 42 WS/A????.png $@
wc -c plot89a.gif

View File

@ -8,8 +8,8 @@ program dessiner
call plgver(version)
write (*,'(" ",a,a)') 'plPlot version: ', trim(version)
call dessin_X11 (0.12, 1.51, 11)
!! call dessin_dans_un_fichier ()
!! call dessin_X11 (0.12, 1.51, 11)
call dessin_dans_un_fichier ()
contains ! -----------------------------
!------------------------------------------------------
@ -33,7 +33,7 @@ subroutine dessin_X11 (sha, shb, color)
call plsdev('xwin')
call plinit ()
call plenv (-2.5, 2.5, -2.5, 2.5, 1, 2)
call plenv (-2.5, 2.5, -2.5, 2.5, 1, 1)
amp = 2.06
do i = 1, lg
@ -52,47 +52,67 @@ subroutine dessin_X11 (sha, shb, color)
end subroutine
!------------------------------------------------------
!- _ __ ___ ___ ___
!- __ _ (_) / _| ( _ ) / _ \ __ _ |__ \
!- / _` | | | | |_ / _ \ | (_) | / _` | / /
!- | (_| | | | | _| | (_) | \__, | | (_| | |_|
!- \__, | |_| |_| \___/ /_/ \__,_| (_)
!- _ __ ___ ___
!- __ _ (_) / _| ( _ ) / _ \ __ _
!- / _` | | | | |_ / _ \ | (_) | / _` |
!- | (_| | | | | _| | (_) | \__, | | (_| |
!- \__, | |_| |_| \___/ /_/ \__,_|
!- |___/
!-
subroutine dessin_dans_un_fichier ()
integer, parameter :: nbpts = 20
real, parameter :: usz = 15.0 ! univers size
integer, parameter :: nbpts = 179
integer, parameter :: nbframes = 99
real, parameter :: usz = 17.0 ! univers size
real :: xa(nbpts), ya(nbpts)
real :: xb(nbpts), yb(nbpts)
real :: x(nbpts), y(nbpts)
integer :: frame, i
real :: coef
character(len=89) :: filename
character(len=89) :: buffer
character(len=3) :: str
print *, 'Dessin dans un fichier'
! build the startup conditions
do i=1, nbpts
x(i) = usz * (rand() - 0.5000)
y(i) = usz * (rand() - 0.5000) * 0.50
coef = real(i) * 0.051
xa(i) = usz * 0.80 * sin(coef*2.0)
ya(i) = usz * 0.70 * (-0.27 + cos(coef*3.0))
xb(i) = usz * 0.11 * (rand() - 0.54)
yb(i) = usz * 0.11 * (rand() - 0.97)
enddo
do frame= 0, 119
! iterate over frames.
do frame= 0, nbframes
coef = real(frame) / real(nbframes)
coef = cos(coef*3.141592654)
write (filename, "(a, i4.4, a)") "WS/A", frame, ".png"
print *, frame, ' => ', trim(filename)
! print *, frame, "!", coef, ' => ', trim(filename)
call plsdev ('pngcairo')
call plsfnam (trim(filename))
call plinit ()
call plenv (-10., 10., -10., 10., 0, 1)
call plenv (-usz, usz, -usz, usz, 0, 1)
call plcol0 (3)
! compute the real picture...
do i=1, nbpts
x(i) = x(i) + 1.2 * (rand() - 0.5000)
y(i) = y(i) + 1.2 * (rand() - 0.5000)
call plline (x, y)
x(i) = xa(i)*coef - xb(i)*(1.0-coef)
y(i) = ya(i)*coef - yb(i)*(1.0-coef)
enddo
write(buffer, "(i3.3)") frame
str = trim(buffer)
call plcol0 (15)
call plstring (x, y, buffer)
! ... and plot it *now*
call plline (x, y)
call plcol0 (15) ! 15 is pure white
call pllab("Apéro level", "Choupitude", "-- Philosophie de comptoir --")
call plend ()
enddo