This file is indexed.

/usr/share/doc/libplplot12/examples/f95/x18f.f90 is in libplplot-dev 5.10.0+dfsg-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
!   $Id: x18f.f90 12149 2012-01-24 05:39:57Z arjenmarkus $
!
!   Copyright (C) 2004  Alan W. Irwin
!
!   This file is part of PLplot.
!
!   PLplot is free software; you can redistribute it and/or modify
!   it under the terms of the GNU Library General Public License as
!   published by the Free Software Foundation; either version 2 of the
!   License, or (at your option) any later version.
!
!   PLplot is distributed in the hope that it will be useful,
!   but WITHOUT ANY WARRANTY; without even the implied warranty of
!   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
!   GNU Library General Public License for more details.
!
!   You should have received a copy of the GNU Library General Public
!   License along with PLplot; if not, write to the Free Software
!   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA

!--------------------------------------------------------------------------
!   main
!
!   Does a series of 3-d plots for a given data set, with different
!   viewing options in each plot.
!--------------------------------------------------------------------------

program x18f95
    use plplot, PI => PL_PI, TWOPI => PL_TWOPI
    implicit none

    integer, parameter :: NPTS = 1000

    integer            :: i, k
    real(kind=plflt), dimension(NPTS) :: x, y, z, r
    character(len=80)  :: title

    integer            :: opt(4) = (/    1,          0,          1,          0       /)
    real(kind=plflt)   :: alt(4) = (/ 20.0_plflt, 35.0_plflt, 50.0_plflt, 65.0_plflt /)
    real(kind=plflt)   :: az(4)  = (/ 30.0_plflt, 40.0_plflt, 50.0_plflt, 60.0_plflt /)

    integer, dimension(NPTS) :: ia = (/(i,i=1,NPTS)/)

!   Process command-line arguments
    call plparseopts(PL_PARSE_FULL)

!   Initialize plplot

    call plinit()

    do k = 1, 4
        call test_poly(k, alt(k), az(k))
    enddo

!   From the mind of a sick and twisted physicist...

    z = -1._plflt + 2._plflt * dble (ia-1) / dble (NPTS)

!   Pick one ...

!   r = 1. - dble (ia-1) / dble (NPTS)
    r = z

    x = r * cos( 2._plflt * PI * 6._plflt * dble (ia-1) / dble (NPTS) )
    y = r * sin( 2._plflt * PI * 6._plflt * dble (ia-1) / dble (NPTS) )

    do k = 1, 4
        call pladv(0)
        call plvpor(0.0_plflt, 1.0_plflt, 0.0_plflt, 0.9_plflt)
        call plwind(-1.0_plflt, 1.0_plflt, -0.9_plflt, 1.1_plflt)
        call plcol0(1)
        call plw3d(1.0_plflt, 1.0_plflt, 1.0_plflt, &
            -1.0_plflt, 1.0_plflt, -1.0_plflt,  &
            1.0_plflt, -1.0_plflt, 1.0_plflt, &
            alt(k), az(k))
        call plbox3('bnstu', 'x axis', 0.0_plflt, 0, &
            'bnstu', 'y axis', 0.0_plflt, 0, &
            'bcdmnstuv', 'z axis', 0.0_plflt, 0)

        call plcol0(2)

        if ( opt(k).gt. 0 ) then
            call plline3(x, y, z)
        else
            !U+22C5 DOT OPERATOR.
            call plstring3( x, y, z, "⋅" )
        endif

        call plcol0(3)
        write( title, '(a,i2,a,i2)') '#frPLplot Example 18 - Alt=', nint(alt(k)), ', Az=', nint(az(k))
        call plmtex('t', 1.0_plflt, 0.5_plflt, 0.5_plflt, title)
    enddo

    call plend()
contains

subroutine test_poly(k, alt, az)
    integer          :: k
    real(kind=plflt) :: alt, az

    real(kind=plflt) :: x(5), y(5), z(5)
    integer          :: i, j
    logical          :: draw(4,4) = &
        reshape( &
            (/  .true., .true., .true., .true., &
                .true., .false., .true., .false., &
                .false., .true., .false., .true., &
                .true., .true., .false., .false. /), (/4,4/) )
    integer, dimension(0:20)          :: ia = (/(j,j=0,20)/)
    real(kind=plflt), dimension(0:20) :: theta, phi

    theta = TWOPI * ia /20._plflt
    phi   = PI * ia / 20.1_plflt

    call pladv(0)
    call plvpor(0.0_plflt, 1.0_plflt, 0.0_plflt, 0.9_plflt)
    call plwind(-1.0_plflt, 1.0_plflt, -0.9_plflt, 1.1_plflt)
    call plcol0(1)
    call plw3d(1.0_plflt, 1.0_plflt, 1.0_plflt, &
        -1.0_plflt, 1.0_plflt, -1.0_plflt, &
        1.0_plflt,  -1.0_plflt, 1.0_plflt, &
        alt, az)
    call plbox3('bnstu', 'x axis', 0.0_plflt, 0, &
        'bnstu', 'y axis', 0.0_plflt, 0, &
        'bcdmnstuv', 'z axis', 0.0_plflt, 0)

    call plcol0(2)


!    x = r sin(phi) cos(theta)
!    y = r sin(phi) sin(theta)
!    z = r cos(phi)
!    r = 1 :=)

    do i=0,19
        do j=0,19
            x(1) = sin( phi(j) ) * cos( theta(i) )
            y(1) = sin( phi(j) ) * sin( theta(i) )
            z(1) = cos( phi(j) )

            x(2) = sin( phi(j+1) ) * cos( theta(i) )
            y(2) = sin( phi(j+1) ) * sin( theta(i) )
            z(2) = cos( phi(j+1) )

            x(3) = sin( phi(j+1) ) * cos( theta(i+1) )
            y(3) = sin( phi(j+1) ) * sin( theta(i+1) )
            z(3) = cos( phi(j+1) )

            x(4) = sin( phi(j) ) * cos( theta(i+1) )
            y(4) = sin( phi(j) ) * sin( theta(i+1) )
            z(4) = cos( phi(j) )

            x(5) = sin( phi(j) ) * cos( theta(i) )
            y(5) = sin( phi(j) ) * sin( theta(i) )
            z(5) = cos( phi(j) )

            call plpoly3(x, y, z, draw(:,k), .true.)
        enddo
    enddo

    call plcol0(3)
    call plmtex('t', 1.0_plflt, 0.5_plflt, 0.5_plflt, 'unit radius sphere' )
end subroutine test_poly
end program x18f95