This file is indexed.

/usr/include/tachyon/grid.h is in libtachyon-dev 0.99~b2+dfsg-0.3.

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
/*
 * grid.h - spatial subdivision efficiency structures
 *
 * $Id: grid.h,v 1.17 2011/02/05 08:10:11 johns Exp $
 * 
 */

int engrid_scene(scenedef * scene, int boundthresh);
object * newgrid(scenedef * scene, int xsize, int ysize, int zsize, 
                 vector min, vector max);

#ifdef GRID_PRIVATE

typedef struct objectlist {
  struct objectlist * next; /**< next link in the list */
  object * obj;             /**< the actual object     */
} objectlist; 

typedef struct {
  RT_OBJECT_HEAD
  int xsize;           /**< number of cells along the X direction */
  int ysize;           /**< number of cells along the Y direction */
  int zsize;           /**< number of cells along the Z direction */
  vector min;          /**< minimum coords for the box containing the grid */
  vector max;          /**< maximum coords for the box containing the grid */
  vector voxsize;      /**< the size of a grid cell/voxel */
  object * objects;    /**< all objects contained in the grid */
  objectlist ** cells; /**< the grid cells themselves */
} grid;

typedef struct {
  int x;               /**< Voxel X address */
  int y;               /**< Voxel Y address */
  int z;               /**< Voxel Z address */
} gridindex; 

/** Convert from voxel index along X/Y/Z to corresponding coordinate.  */
#define voxel2x(g,X)  ((X) * (g->voxsize.x) + (g->min.x))
/** Convert from voxel index along X/Y/Z to corresponding coordinate.  */
#define voxel2y(g,Y)  ((Y) * (g->voxsize.y) + (g->min.y))
/** Convert from voxel index along X/Y/Z to corresponding coordinate.  */
#define voxel2z(g,Z)  ((Z) * (g->voxsize.z) + (g->min.z))

/** Convert from voxel coordinate to corresponding indices.  */
#define x2voxel(g,x)            (((x) - g->min.x) / g->voxsize.x)
/** Convert from voxel coordinate to corresponding indices.  */
#define y2voxel(g,y)            (((y) - g->min.y) / g->voxsize.y)
/** Convert from voxel coordinate to corresponding indices.  */
#define z2voxel(g,z)            (((z) - g->min.z) / g->voxsize.z)


static void gridstats(int xs, int ys, int zs, int numobj);
static int grid_bbox(void * obj, vector * min, vector * max);
static void grid_free(void * v);

static int cellbound(const grid *g, const gridindex *index, vector * cmin, vector * cmax);

static int engrid_objlist(grid * g, object ** list);
static int engrid_object(grid * g, object * obj, int addtolist);

static int engrid_objectlist(grid * g, objectlist ** list);
static int engrid_cell(scenedef *, int, grid *, gridindex *);

static int pos2grid(grid * g, vector * pos, gridindex * index);
static void grid_intersect(const grid *, ray *);
static int grid_bounds_intersect(const grid * g, const ray * ry, flt *hitnear, flt *hitfar);

#endif