This file is indexed.

/usr/include/BALL/VIEW/PRIMITIVES/multiLine.h is in libballview1.4-dev 1.4.3~beta1-4.

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
// -*- Mode: C++; tab-width: 2; -*-
// vi: set ts=2:
//
// $Id: multiLine.h,v 1.1.4.1 2007-03-25 21:26:09 oliver Exp $
//

#ifndef BALL_VIEW_PRIMITIVES_MULTILINE_H
#define BALL_VIEW_PRIMITIVES_MULTILINE_H

#ifndef BALL_VIEW_KERNEL_GEOMETRICOBJECT_H
#	include <BALL/VIEW/KERNEL/geometricObject.h>
#endif

#ifndef BALL_VIEW_DATATYPE_VERTEX2_H
#	include <BALL/VIEW/DATATYPE/vertex2.h>
#endif

#ifndef BALL_VIEW_DATATYPE_COLOREXTENSIONS_H
# include <BALL/VIEW/DATATYPE/colorExtensions.h>
#endif

namespace BALL
{
	namespace VIEW
	{
         
		/** A line with multiple vertices and colors.
				\ingroup ViewPrimitives
		*/
		class BALL_VIEW_EXPORT MultiLine
			: public GeometricObject,
				public MultiColorExtension
		{
			public:

			BALL_CREATE(MultiLine)

			/// Default Constructor.
			MultiLine();

			/// Copy constructor with cloning facility.
			MultiLine(const MultiLine& line);

			/** Destructor
			*/
			virtual ~MultiLine();

			/** Explicit default initialization.
			*/
			virtual void clear();

			///
			void set(const MultiLine& line);

			/** Assignment operator.
			*/
			const MultiLine& operator = (const MultiLine& line);

			/** Internal state and consistency self-validation.
					Initiate self-validation of the internal state and data structure consistencies
					of this line.
					If the internal state of this line is correct (self-validated) and 
					consistent <tt> true</tt> is returned, <tt> false</tt> otherwise. 
					Calls GeometricObject::isValid.
					Calls Vertex2::isValid.
					\return			bool <tt> true</tt> if the internal state of this line is correct 
											(self-validated) and consistent, <tt> false</tt> otherwise
					\see        GeometricObject::isValid
					\see        Vertex2::isValid
			*/
			virtual bool isValid() const;

			/** Internal value dump.
					Dump the current value of this line to 
					the output ostream <b> s</b> with dumping depth <b> depth</b>.
					Calls GeometricObject::dump.
					Calls Vertex2::dump.
					\param   s output stream where to output the value of this line
					\param   depth the dumping depth
					\see        GeometricObject::dump
					\see        Vertex2::dump
			*/
			virtual void dump(std::ostream& s = std::cout, Size depth = 0) const;
			
			// Method to get all vertices from a geometric object
			virtual void getVertices(vector<Vector3>& vertices) const;


			vector<Vector3> tangents;
			vector<Vector3> vertices;
		//@}
		};
  
	} // namespace VIEW
} // namespace BALL

#endif // BALL_VIEW_PRIMITIVES_MULTILINE_H