This file is indexed.

/usr/include/libwildmagic/Wm5RasterDrawing.h is in libwildmagic-dev 5.13-1ubuntu3.

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
// Geometric Tools, LLC
// Copyright (c) 1998-2014
// Distributed under the Boost Software License, Version 1.0.
// http://www.boost.org/LICENSE_1_0.txt
// http://www.geometrictools.com/License/Boost/LICENSE_1_0.txt
//
// File Version: 5.0.1 (2010/10/01)

#ifndef WM5RASTERDRAWING_H
#define WM5RASTERDRAWING_H

#include "Wm5ImagicsLIB.h"

namespace Wm5
{

// Process the pixels visited by Bresenham's algorithm for the line segment
// with end points (x0,y0) and (x1,y1).  The callback is executed for each
// visited pixel (x,y).  The arguments to the callback are x and y.
WM5_IMAGICS_ITEM void Line2D (int x0, int y0, int x1, int y1,
    void (*callback)(int,int));

// Process the voxels visited by Bresenham's algorithm for the line segment
// with end points (x0,y0,z0) and (x1,y1,z1).  The callback is executed for
// each visited voxel (x,y,z).  The arguments to the callback are x, y, and z.
WM5_IMAGICS_ITEM void Line3D (int x0, int y0, int z0, int x1, int y1,
     int z1, void (*callback)(int,int,int));

// Process the hypervoxels visited by Bresenham's algorithm for the line
// segment with end points (x0,y0,z0,w0) and (x1,y1,z1,w1).  The callback is
// executed for each visited hypervoxel (x,y,z,w).  The arguments to the
// callback are x, y, z, and w.
WM5_IMAGICS_ITEM void Line4D (int x0, int y0, int z0, int w0, int x1,
     int y1, int z1, int w1, void (*callback)(int,int,int,int));

// Process the pixels visited by Bresenham's algorithm for the circle
// (x-xc)^2 + (y-yc)^2 = r^2.  The callback is executed for each
// visited pixel (x,y).  The arguments to the callback are x and y.
WM5_IMAGICS_ITEM void Circle2D (int xc, int yc, int radius,
     void (*callback)(int,int));

// Process the pixels visited by Bresenham's algorithm for the axis-aligned
// ellipse (x-xc)^2/a^2 + (y-yc)^2/b^2 = 1.  The callback is
// executed for each visited pixel (x,y).  The arguments to the callback are
// x and y.
WM5_IMAGICS_ITEM void Ellipse2D (int xc, int yc, int A, int B,
    void (*callback)(int,int));

// Process the pixels visited by Bresenham's algorithm for an arc of the
// axis-aligned ellipse (x-xc)^2/a^2 + (y-yc)^2/b^2 = 1.  The arc has end
// points (x0,fy0) and (x1,fy1) where (xi-xc)^2/a^2 + (yi-yc)/b^2 = 1 for
// i = 0,1.  The arc is traversed in clockwise order.  The callback is
// executed for each visited pixel (x,y).  The arguments to the callback are
// x and y.
WM5_IMAGICS_ITEM void EllipseArc2D (int xc, int yc, int A, int B,
    float fx0, float fy0, float fx1, float fy1, void (*callback)(int,int));

// Process the pixels visited by Bresenham's algorithm for an oriented
// ellipse.  The ellipse has shape and orientation determined by the bounding
// box with center (xc,yc) and axes (xa,ya) and (xb,yb), where theoretically
// Dot((xa,ya),(xb,yb)) = 0.  Rounding to the nearest integer will cause the
// dot product to be nonzero, yet small compared to the length of the
// cross product Cross((xa,ya,0),(xb,yb,0)) = (0,0,xa*yb-xb*ya).  This should
// not be a problem when drawing the ellipse.
WM5_IMAGICS_ITEM void GeneralEllipse2D (int xc, int yc, int xa, int ya,
    int xb, int yb, void (*callback)(int,int));

// The initial call must guarantee that the seed point (x,y) satisfies
// 0 <= x < xMax and 0 <= y < yMax and that image[y][x] is the
// background color (backColor).  The fill color is specified by foreColor.
WM5_IMAGICS_ITEM void RecursiveFill (int x, int y, int xMax, int yMax,
    int** image, int foreColor, int backColor);

WM5_IMAGICS_ITEM void NonrecursiveFill (int x, int y, int xMax,
    int yMax, int** image, int foreColor, int backColor);

}

#endif