This file is indexed.

/usr/share/doc/libplplot12/examples/d/x16d.d 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
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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
// $Id: x16d.d 12512 2013-09-22 02:19:29Z airwin $
//
//      plshade demo, using color fill.
//
//      Maurice LeBrun
//      IFS, University of Texas at Austin
//      20 Mar 1994
//

import std.string;
import std.math;

import plplot;

// Fundamental settings.  See notes[] for more info.

int ns      = 20; // Default number of shade levels
int nx      = 35; // Default number of data points in x
int ny      = 46; // Default number of data points in y
int exclude = 0;  // By default do not plot a page illustrating
                  // exclusion.  API is probably going to change
                  // anyway, and cannot be reproduced by any
                  // front end other than the C one.

// For now, don't show the colorbars while we are working out the API.
int colorbar = 1;

extern ( C ) {
// Transformation function
PLFLT[] tr;

void mypltr( PLFLT x, PLFLT y, PLFLT *tx, PLFLT *ty, void* pltr_data )
{
    *tx = tr[0] * x + tr[1] * y + tr[2];
    *ty = tr[3] * x + tr[4] * y + tr[5];
}
}

// Options data structure definition.
//~ static PLOptionTable options[] = {
//~ {
//~ "exclude",			/* Turns on page showing exclusion */
//~ NULL,
//~ NULL,
//~ &exclude,
//~ PL_OPT_BOOL,
//~ "-exclude",
//~ "Plot the \"exclusion\" page." },
//~ {
//~ "ns",			/* Number of shade levels */
//~ NULL,
//~ NULL,
//~ &ns,
//~ PL_OPT_INT,
//~ "-ns levels",
//~ "Sets number of shade levels" },
//~ {
//~ "nx",			/* Number of data points in x */
//~ NULL,
//~ NULL,
//~ &nx,
//~ PL_OPT_INT,
//~ "-nx xpts",
//~ "Sets number of data points in x" },
//~ {
//~ "ny",			/* Number of data points in y */
//~ NULL,
//~ NULL,
//~ &ny,
//~ PL_OPT_INT,
//~ "-ny ypts",
//~ "Sets number of data points in y" },
//~ {
//~ NULL,			/* option */
//~ NULL,			/* handler */
//~ NULL,			/* client data */
//~ NULL,			/* address of variable to set */
//~ 0,				/* mode flag */
//~ NULL,			/* short syntax */
//~ NULL }			/* long syntax */
//~ };

//~ static const char *notes[] = {
//~ "To get smoother color variation, increase ns, nx, and ny.  To get faster",
//~ "response (especially on a serial link), decrease them.  A decent but quick",
//~ "test results from ns around 5 and nx, ny around 25.",
//~ NULL};

extern ( C ) {
PLINT zdefined( PLFLT x, PLFLT y )
{
    PLFLT z = sqrt( x * x + y * y );

    return z < 0.4 || z > 0.6;
}
}


//--------------------------------------------------------------------------
// main
//
// Does several shade plots using different coordinate mappings.
//--------------------------------------------------------------------------
int main( char[][] args )
{
    const int PERIMETERPTS = 100;

    // Parse and process command line arguments
    //plMergeOpts(options, "x16c options", notes);
    plparseopts( args, PL_PARSE_FULL );

    // Load colour palettes
    plspal0( "cmap0_black_on_white.pal" );
    plspal1( "cmap1_gray.pal", 1 );

    // Reduce colors in cmap 0 so that cmap 1 is useful on a 16-color display
    plscmap0n( 3 );

    // Initialize plplot
    plinit();

    // Set up transformation function
    tr = [ 2. / ( nx - 1 ), 0.0, -1.0, 0.0, 2. / ( ny - 1 ), -1.0 ];

    // Allocate data structures
    PLFLT[][] z = new PLFLT[][nx];
    for ( int i = 0; i < nx; i++ )
        z[i] = new PLFLT[ny];

    PLFLT[][] w = new PLFLT[][nx];
    for ( int i = 0; i < nx; i++ )
        w[i] = new PLFLT[ny];

    // Set up data array
    PLFLT x, y;
    for ( int i = 0; i < nx; i++ )
    {
        x = cast(double) ( i - ( nx / 2 ) ) / ( nx / 2 );
        for ( int j = 0; j < ny; j++ )
        {
            y = cast(double) ( j - ( ny / 2 ) ) / ( ny / 2 ) - 1.0;

            z[i][j] = -sin( 7 * x ) * cos( 7 * y ) + x * x - y * y;
            w[i][j] = -cos( 7 * x ) * sin( 7 * y ) + 2 * x * y;
        }
    }
    PLFLT zmin, zmax;
    f2mnmx( z, zmin, zmax );

    PLFLT[] clevel = new PLFLT[ns];
    for ( int i = 0; i < ns; i++ )
        clevel[i] = zmin + ( zmax - zmin ) * ( i + 0.5 ) / ns;

    PLFLT[] shedge = new PLFLT[ns + 1];
    for ( int i = 0; i < ns + 1; i++ )
        shedge[i] = zmin + ( zmax - zmin ) * i / ns;

    // Set up coordinate grids
    PLcGrid cgrid1;
    cgrid1.xg = new PLFLT[nx];
    cgrid1.yg = new PLFLT[ny];

    PLcGrid2 cgrid2;
    cgrid2.xg = new PLFLT[][nx];
    for ( int i = 0; i < nx; i++ )
        cgrid2.xg[i] = new PLFLT[ny];

    cgrid2.yg = new PLFLT[][nx];
    for ( int i = 0; i < nx; i++ )
        cgrid2.yg[i] = new PLFLT[ny];

    PLFLT argx, argy, distort;
    for ( int i = 0; i < nx; i++ )
    {
        for ( int j = 0; j < ny; j++ )
        {
            mypltr( i, j, &x, &y, null );

            argx    = x * PI / 2;
            argy    = y * PI / 2;
            distort = 0.4;

            cgrid1.xg[i] = x + distort * cos( argx );
            cgrid1.yg[j] = y - distort * cos( argy );

            cgrid2.xg[i][j] = x + distort * cos( argx ) * cos( argy );
            cgrid2.yg[i][j] = y - distort * cos( argx ) * cos( argy );
        }
    }

    // Plot using identity transform
    PLFLT     fill_width = 2., cont_width = 0.;
    PLFLT     colorbar_width, colorbar_height;
    PLINT     cont_color = 0;

    const int NUM_AXES  = 1;
    string[]  axis_opts = [
        "bcvtm",
    ];
    PLFLT[] values[NUM_AXES];
    for ( size_t i = 0; i < NUM_AXES; i++ )
    {
        values[i] = new PLFLT[ns];
    }
    PLFLT[] axis_ticks = [
        0.0,
    ];
    PLINT[] axis_subticks = [
        0,
    ];
    const int NUM_LABELS = 1;
    PLINT label_opts[] = [
        PL_COLORBAR_LABEL_BOTTOM,
    ];
    string[] labels = [
        "Magnitude",
    ];


    pladv( 0 );
    plvpor( 0.1, 0.9, 0.1, 0.9 );
    plwind( -1.0, 1.0, -1.0, 1.0 );

    plpsty( 0 );

    plshades( z, null, -1., 1., -1., 1., shedge, fill_width,
        cont_color, cont_width, 1 );

    if ( colorbar )
    {
        // Smaller text
        plschr( 0.0, 0.75 );
        // Small ticks on the vertical axis
        plsmaj( 0.0, 0.5 );
        plsmin( 0.0, 0.5 );

        values[0] = shedge;
        plcolorbar( &colorbar_width, &colorbar_height,
            PL_COLORBAR_SHADE | PL_COLORBAR_SHADE_LABEL, 0,
            0.005, 0.0, 0.0375, 0.875, 0, 1, 1, 0.0, 0.0,
            cont_color, cont_width,
            label_opts, labels,
            axis_opts,
            axis_ticks, axis_subticks,
            values );

        // Reset text and tick sizes
        plschr( 0.0, 1.0 );
        plsmaj( 0.0, 1.0 );
        plsmin( 0.0, 1.0 );
    }

    plcol0( 1 );
    plbox( "bcnst", 0.0, 0, "bcnstv", 0.0, 0 );
    plcol0( 2 );
    pllab( "distance", "altitude", "Bogon density" );

    // Plot using 1d coordinate transform

    // Load colour palettes
    plspal0( "cmap0_black_on_white.pal" );
    plspal1( "cmap1_blue_yellow.pal", 1 );

    // Reduce colors in cmap 0 so that cmap 1 is useful on a 16-color display
    plscmap0n( 3 );

    pladv( 0 );
    plvpor( 0.1, 0.9, 0.1, 0.9 );
    plwind( -1.0, 1.0, -1.0, 1.0 );

    plpsty( 0 );

    plshades( z, null, -1., 1., -1., 1., shedge, fill_width,
        cont_color, cont_width, 1, cgrid1 );
    if ( colorbar )
    {
        // Smaller text
        plschr( 0.0, 0.75 );
        // Small ticks on the vertical axis
        plsmaj( 0.0, 0.5 );
        plsmin( 0.0, 0.5 );

        values[0] = shedge;
        plcolorbar( &colorbar_width, &colorbar_height,
            PL_COLORBAR_SHADE | PL_COLORBAR_SHADE_LABEL, 0,
            0.005, 0.0, 0.0375, 0.875, 0, 1, 1, 0.0, 0.0,
            cont_color, cont_width,
            label_opts, labels,
            axis_opts,
            axis_ticks, axis_subticks,
            values );

        // Reset text and tick sizes
        plschr( 0.0, 1.0 );
        plsmaj( 0.0, 1.0 );
        plsmin( 0.0, 1.0 );
    }


    plcol0( 1 );
    plbox( "bcnst", 0.0, 0, "bcnstv", 0.0, 0 );
    plcol0( 2 );
    pllab( "distance", "altitude", "Bogon density" );

    // Plot using 2d coordinate transform

    // Load colour palettes
    plspal0( "cmap0_black_on_white.pal" );
    plspal1( "cmap1_blue_red.pal", 1 );

    // Reduce colors in cmap 0 so that cmap 1 is useful on a 16-color display
    plscmap0n( 3 );

    pladv( 0 );
    plvpor( 0.1, 0.9, 0.1, 0.9 );
    plwind( -1.0, 1.0, -1.0, 1.0 );

    plpsty( 0 );

    plshades( z, null, -1., 1., -1., 1., shedge, fill_width,
        cont_color, cont_width, 0, cgrid2 );

    if ( colorbar )
    {
        // Smaller text
        plschr( 0.0, 0.75 );
        // Small ticks on the vertical axis
        plsmaj( 0.0, 0.5 );
        plsmin( 0.0, 0.5 );

        values[0] = shedge;
        plcolorbar( &colorbar_width, &colorbar_height,
            PL_COLORBAR_SHADE | PL_COLORBAR_SHADE_LABEL, 0,
            0.005, 0.0, 0.0375, 0.875, 0, 1, 1, 0.0, 0.0,
            cont_color, cont_width,
            label_opts, labels,
            axis_opts,
            axis_ticks, axis_subticks,
            values );

        // Reset text and tick sizes
        plschr( 0.0, 1.0 );
        plsmaj( 0.0, 1.0 );
        plsmin( 0.0, 1.0 );
    }

    plcol0( 1 );
    plbox( "bcnst", 0.0, 0, "bcnstv", 0.0, 0 );
    plcol0( 2 );
    plcont( w, 1, nx, 1, ny, clevel, cgrid2 );

    pllab( "distance", "altitude", "Bogon density, with streamlines" );

    // Plot using 2d coordinate transform

    // Load colour palettes
    plspal0( "" );
    plspal1( "", 1 );

    // Reduce colors in cmap 0 so that cmap 1 is useful on a 16-color display
    plscmap0n( 3 );

    pladv( 0 );
    plvpor( 0.1, 0.9, 0.1, 0.9 );
    plwind( -1.0, 1.0, -1.0, 1.0 );

    plpsty( 0 );

    plshades( z, null, -1., 1., -1., 1., shedge, fill_width,
        2, 3, 0, cgrid2 );

    if ( colorbar )
    {
        // Smaller text
        plschr( 0.0, 0.75 );
        // Small ticks on the vertical axis
        plsmaj( 0.0, 0.5 );
        plsmin( 0.0, 0.5 );

        values[0] = shedge;
        plcolorbar( &colorbar_width, &colorbar_height,
            PL_COLORBAR_SHADE | PL_COLORBAR_SHADE_LABEL, 0,
            0.005, 0.0, 0.0375, 0.875, 0, 1, 1, 0.0, 0.0,
            2, 3.,
            label_opts, labels,
            axis_opts,
            axis_ticks, axis_subticks,
            values );

        // Reset text and tick sizes
        plschr( 0.0, 1.0 );
        plsmaj( 0.0, 1.0 );
        plsmin( 0.0, 1.0 );
    }

    plcol0( 1 );
    plbox( "bcnst", 0.0, 0, "bcnstv", 0.0, 0 );
    plcol0( 2 );

    pllab( "distance", "altitude", "Bogon density" );

    // Note this exclusion API will probably change.

    // Plot using 2d coordinate transform and exclusion
    if ( exclude )
    {
        // Load colour palettes
        plspal0( "cmap0_black_on_white.pal" );
        plspal1( "cmap1_gray.pal", 1 );

        // Reduce colors in cmap 0 so that cmap 1 is useful on a 16-color display
        plscmap0n( 3 );

        pladv( 0 );
        plvpor( 0.1, 0.9, 0.1, 0.9 );
        plwind( -1.0, 1.0, -1.0, 1.0 );

        plpsty( 0 );

        plshades( z, &zdefined, -1., 1., -1., 1., shedge, fill_width,
            cont_color, cont_width, 0, cgrid2 );

        plcol0( 1 );
        plbox( "bcnst", 0.0, 0, "bcnstv", 0.0, 0 );

        pllab( "distance", "altitude", "Bogon density with exclusion" );
    }

    // Example with polar coordinates.

    // Load colour palettes
    plspal0( "cmap0_black_on_white.pal" );
    plspal1( "cmap1_gray.pal", 1 );

    // Reduce colors in cmap 0 so that cmap 1 is useful on a 16-color display
    plscmap0n( 3 );

    pladv( 0 );
    plvpor( .1, .9, .1, .9 );
    plwind( -1., 1., -1., 1. );

    plpsty( 0 );

    // Build new coordinate matrices.
    PLFLT r, t;
    for ( int i = 0; i < nx; i++ )
    {
        r = cast(PLFLT) i / ( nx - 1 );
        for ( int j = 0; j < ny; j++ )
        {
            t = 2. * PI / ( ny - 1. ) * j;
            cgrid2.xg[i][j] = r * cos( t );
            cgrid2.yg[i][j] = r * sin( t );
            z[i][j]         = exp( -r * r ) * cos( 5. * PI * r ) * cos( 5. * t );
        }
    }

    // Need a new shedge to go along with the new data set.
    f2mnmx( z, zmin, zmax );

    for ( int i = 0; i < ns + 1; i++ )
        shedge[i] = zmin + ( zmax - zmin ) * i / ns;

    //  Now we can shade the interior region.
    plshades( z, null, -1., 1., -1., 1., shedge, fill_width,
        cont_color, cont_width, 0, cgrid2 );

    if ( colorbar )
    {
        // Smaller text
        plschr( 0.0, 0.75 );
        // Small ticks on the vertical axis
        plsmaj( 0.0, 0.5 );
        plsmin( 0.0, 0.5 );

        values[0] = shedge;
        plcolorbar( &colorbar_width, &colorbar_height,
            PL_COLORBAR_SHADE | PL_COLORBAR_SHADE_LABEL, 0,
            0.005, 0.0, 0.0375, 0.875, 0, 1, 1, 0.0, 0.0,
            cont_color, cont_width,
            label_opts, labels,
            axis_opts,
            axis_ticks, axis_subticks,
            values );

        // Reset text and tick sizes
        plschr( 0.0, 1.0 );
        plsmaj( 0.0, 1.0 );
        plsmin( 0.0, 1.0 );
    }

    // Now we can draw the perimeter.  (If do before, shade stuff may overlap.)
    PLFLT[PERIMETERPTS] px, py;
    for ( int i = 0; i < PERIMETERPTS; i++ )
    {
        t     = 2. * PI / ( PERIMETERPTS - 1 ) * i;
        px[i] = cos( t );
        py[i] = sin( t );
    }
    plcol0( 1 );
    plline( px, py );

    // And label the plot.
    plcol0( 2 );
    pllab( "", "", "Tokamak Bogon Instability" );

    plend();

    return 0;
}

//--------------------------------------------------------------------------
// f2mnmx
//
// Returns min & max of input 2d array.
//--------------------------------------------------------------------------
void f2mnmx( PLFLT[][] f, out PLFLT fmn, out PLFLT fmx )
{
    fmx = f[0][0];
    fmn = fmx;

    for ( int i = 0; i < f.length; i++ )
    {
        for ( int j = 0; j < f[i].length; j++ )
        {
            fmx = fmax( fmx, f[i][j] );
            fmn = fmin( fmn, f[i][j] );
        }
    }
}