This file is indexed.

/usr/include/ossim/vpfutil/vpfdraw.h is in libossim-dev 1.7.21-3ubuntu2.

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
/* VPFDRAW.H - DRAW FEATURES */

#ifndef __VPFDRAW_H__

#define __VPFDRAW_H__
#ifdef __cplusplus
extern "C" {
#endif

int draw_edge_row( row_type row, vpf_table_type table );
int draw_edge( long int rownum, vpf_table_type table );

int draw_point_row( row_type row, vpf_table_type table );
int draw_point( long int rownum, vpf_table_type table );

int draw_text_row( row_type row, vpf_table_type table );
int draw_text( long int rownum, vpf_table_type table );

void screen_bounds( double x1, double y1, double x2, double y2,
		    int *xmin, int *ymin, int *xmax, int *ymax );

void draw_face_row( row_type row,
		    vpf_table_type facetable,
		    vpf_table_type ringtable,
		    vpf_table_type edgetable,
		    vpf_table_type spx,
		    color_type outline,
		    color_type c1,
		    color_type c2,
		    color_type c3,
		    color_type c4 );
void draw_face( long int face_id,
		vpf_table_type facetable,
		vpf_table_type ringtable,
		vpf_table_type edgetable,
		vpf_table_type spx,
		color_type outline,
		color_type c1,
		color_type c2,
		color_type c3,
		color_type c4 );

long int next_polygon_edge( edge_rec_type *edge_rec,
			    long int *prevnode,
			    long int face_id );

void outline_face( long int face_id,
		   vpf_table_type facetable,
		   vpf_table_type ringtable,
		   vpf_table_type edgetable,
		   color_type outline,
		   int inner );


void outline_face_table( long int face_id,
			 char *fname,
			 int color,
			 int inner );

#ifdef __cplusplus
}
#endif

#endif