This file is indexed.

/usr/include/dx/clipped.h is in libdx4-dev 1:4.4.4-9.

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
/***********************************************************************/
/* Open Visualization Data Explorer                                    */
/* (C) Copyright IBM Corp. 1989,1999                                   */
/* ALL RIGHTS RESERVED                                                 */
/* This code licensed under the                                        */
/*    "IBM PUBLIC LICENSE - Open Visualization Data Explorer"          */
/***********************************************************************/


#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {
#endif

#ifndef _DXI_CLIPPED_H_
#define _DXI_CLIPPED_H_

/* TeX starts here. Do not remove this comment. */

/*
\section{Clipped class}
A {\tt Clipped} object represents one object clipped by another.  The
first object is actually rendered; the second represents a region to
which the first object is clipped.  The clipping object is expected to
be a closed convex surface.  The portion of the first object that is
within the clipping object is rendered.  If the clipping object is not
a closed convex surface, the results are undefined.  The clipping is
performed by the renderer during the rendering process.  Thus clipping
is provided as a data structure for representing the clipped object to
the renderer, rather than as an explicit operation.
*/

Clipped DXNewClipped(Object render, Object clipping);
/**
\index{DXNewClipped}
Constructs a clipped object that instructs the renderer to render the
first argument {\tt render} clipped by the second argument {\tt
clipping}.  The {\tt clipping} object must have only surface data (no
volume data); the colors and opacity of the surface are ignored.  In
the current version of the Data Explorer, nesting of clipping objects
is not supported, and the clipping object must be convex.  Every
volume and translucent surface in a scene must have the same clipping
object.  Returns the clipped object, or returns null and sets the
error code to indicate an error.
**/

Clipped DXGetClippedInfo(Clipped c, Object *render, Object *clipping);
/**
\index{DXGetClippedInfo}
If {\tt render} is not null, this routine returns the object to be
rendered in {\tt *render}.  If {\tt clipping} is not null, it returns
the clipping object in {\tt *clipping}.  Returns {\tt c}, or returns
null and sets the error code to indicate an error.
**/

Clipped DXSetClippedObjects(Clipped c, Object render, Object clipping);
/**
\index{SetClippedObject}
If {\tt render} is not null, his routine sets the object to be
rendered to {\tt render}.  If {\tt clipping} is not null, this routine
sets the clipping object to {\tt clipping}.  Returns {\tt c}, or
returns null and sets the error code to indicate an error.
**/

#endif /* _DXI_CLIPPED_H_ */

#if defined(__cplusplus) || defined(c_plusplus)
}
#endif