This file is indexed.

/usr/share/doc/libplplot12/examples/c++/x18.cc is in libplplot-dev 5.10.0+dfsg2-0.1ubuntu2.

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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
//--------------------------------------------------------------------------
// $Id: x18.cc 11760 2011-06-01 19:29:11Z airwin $
//--------------------------------------------------------------------------
//
//--------------------------------------------------------------------------
// Copyright (C) 2004  Andrew Ross
// 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; version 2 of the License.
//
// 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
//--------------------------------------------------------------------------
//
//--------------------------------------------------------------------------
// Implementation of PLplot example 18 in C++.
//--------------------------------------------------------------------------

#include "plc++demos.h"

#ifdef PL_USE_NAMESPACE
using namespace std;
#endif

class x18 {
public:
    x18( int, const char ** );
    PLFLT THETA( int );
    PLFLT PHI( int );
    void test_poly( int );

private:
    // Class data
    plstream           *pls;

    static const int   NPTS;
    static const int   opt[4];
    static const PLFLT alt[4];
    static const PLFLT az[4];
};


const int   x18::  NPTS  = 1000;
const int   x18::  opt[] = { 1, 0, 1, 0 };
const PLFLT x18::alt[4] = { 20.0, 35.0, 50.0, 65.0 };
const PLFLT x18::az[4] = { 30.0, 40.0, 50.0, 60.0 };


x18::x18( int argc, const char ** argv )
{
    int   i, k;
    PLFLT r;
    char  title[80];

    // plplot initialization

    pls = new plstream();

    // Parse and process command line arguments.
    pls->parseopts( &argc, argv, PL_PARSE_FULL );

    // Initialize PLplot.
    pls->init();

    for ( k = 0; k < 4; k++ )
        test_poly( k );

    PLFLT *x = new PLFLT[NPTS];
    PLFLT *y = new PLFLT[NPTS];
    PLFLT *z = new PLFLT[NPTS];

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

    for ( i = 0; i < NPTS; i++ )
    {
        z[i] = -1. + 2. * i / NPTS;

        // Pick one ...

        // r    = 1. - ( (PLFLT) i / (PLFLT) NPTS );
        r = z[i];

        x[i] = r * cos( 2. * M_PI * 6. * i / NPTS );
        y[i] = r * sin( 2. * M_PI * 6. * i / NPTS );
    }

    for ( k = 0; k < 4; k++ )
    {
        pls->adv( 0 );
        pls->vpor( 0.0, 1.0, 0.0, 0.9 );
        pls->wind( -1.0, 1.0, -0.9, 1.1 );
        pls->col0( 1 );
        pls->w3d( 1.0, 1.0, 1.0, -1.0, 1.0, -1.0, 1.0, -1.0, 1.0, alt[k], az[k] );
        pls->box3( "bnstu", "x axis", 0.0, 0,
            "bnstu", "y axis", 0.0, 0,
            "bcdmnstuv", "z axis", 0.0, 0 );

        pls->col0( 2 );

        if ( opt[k] > 0 )
            pls->line3( NPTS, x, y, z );
        else
            // U+22C5 DOT OPERATOR.
            pls->string3( NPTS, x, y, z, "⋅" );

        pls->col0( 3 );

        sprintf( title, "#frPLplot Example 18 - Alt=%.0f, Az=%.0f",
            alt[k], az[k] );
        pls->mtex( "t", 1.0, 0.5, 0.5, title );
    }

    //pls->end();

    delete[] x;
    delete[] y;
    delete[] z;
    delete pls;
}

PLFLT x18::THETA( int a )
{
    return 2. * M_PI * (PLFLT) a / 20.;
}

PLFLT x18::PHI( int a )
{
    return M_PI * (PLFLT) a / 20.1;
}

void x18::test_poly( int k )
{
    int   i, j;
    bool  draw[4][4] = {
        { true,  true,  true,  true  },
        { true,  false, true,  false },
        { false, true,  false, true  },
        { true,  true,  false, false }
    };

    PLFLT *x = new PLFLT [5];
    PLFLT *y = new PLFLT [5];
    PLFLT *z = new PLFLT [5];

    pls->adv( 0 );
    pls->vpor( 0.0, 1.0, 0.0, 0.9 );
    pls->wind( -1.0, 1.0, -0.9, 1.1 );
    pls->col0( 1 );
    pls->w3d( 1.0, 1.0, 1.0, -1.0, 1.0, -1.0, 1.0, -1.0, 1.0, alt[k], az[k] );
    pls->box3( "bnstu", "x axis", 0.0, 0,
        "bnstu", "y axis", 0.0, 0,
        "bcdmnstuv", "z axis", 0.0, 0 );

    pls->col0( 2 );

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

    for ( i = 0; i < 20; i++ )
    {
        for ( j = 0; j < 20; j++ )
        {
            x[0] = sin( PHI( j ) ) * cos( THETA( i ) );
            y[0] = sin( PHI( j ) ) * sin( THETA( i ) );
            z[0] = cos( PHI( j ) );

            x[1] = sin( PHI( j + 1 ) ) * cos( THETA( i ) );
            y[1] = sin( PHI( j + 1 ) ) * sin( THETA( i ) );
            z[1] = cos( PHI( j + 1 ) );

            x[2] = sin( PHI( j + 1 ) ) * cos( THETA( i + 1 ) );
            y[2] = sin( PHI( j + 1 ) ) * sin( THETA( i + 1 ) );
            z[2] = cos( PHI( j + 1 ) );

            x[3] = sin( PHI( j ) ) * cos( THETA( i + 1 ) );
            y[3] = sin( PHI( j ) ) * sin( THETA( i + 1 ) );
            z[3] = cos( PHI( j ) );

            x[4] = sin( PHI( j ) ) * cos( THETA( i ) );
            y[4] = sin( PHI( j ) ) * sin( THETA( i ) );
            z[4] = cos( PHI( j ) );

            pls->poly3( 5, x, y, z, draw[k], true );
        }
    }

    pls->col0( 3 );
    pls->mtex( "t", 1.0, 0.5, 0.5, "unit radius sphere" );

    delete[] x;
    delete[] y;
    delete[] z;
}

int main( int argc, const char ** argv )
{
    x18 *x = new x18( argc, argv );

    delete x;
}


//--------------------------------------------------------------------------
//                              End of x18.cc
//--------------------------------------------------------------------------