This file is indexed.

/usr/include/BALL/MATHS/line3.h is in libball1.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
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
// -*- Mode: C++; tab-width: 2; -*-
// vi: set ts=2:
//
// $Id: line3.h,v 1.48 2004/07/05 20:57:28 oliver Exp $
//

#ifndef BALL_MATHS_LINE3_H
#define BALL_MATHS_LINE3_H

#ifndef BALL_COMMON_EXCEPTION_H
# include <BALL/COMMON/exception.h>
#endif

#ifndef BALL_MATHS_VECTOR3_H
#	include <BALL/MATHS/vector3.h>
#endif

namespace BALL 
{
	/** \defgroup Line Generic Line in Three-Dimensional Space.

		\ingroup GeometricObjects
	*/
	
	//@{

	template <typename T>
	class TLine3;
	
	/** @name Storers
		Stream operators of Line3
	*/
	//@{
	template <typename T>
	std::ostream& operator << (std::ostream& s, const TLine3<T>& line)
		;

	template <typename T>
	std::istream& operator >> (std::istream& s, TLine3<T>& line)
		;
	//@}
	
	/**	Generic Line in Three-Dimensional Space.
	*/
	template <typename T>
	class TLine3
	{
		public:

		BALL_CREATE(TLine3<T>)

		/**	@name	Enums
		*/
		//@{

		/** form of parameter to describe the line:
				<tt>0</tt> one Point and one Vector.
				<tt>1</tt> two Points
		*/
		enum Form
		{
			FORM__PARAMETER  = 0,
			FORM__TWO_POINTS = 1
		};
		//@}

		/**	@name	Constructors and Destructors
		*/
		//@{

		/**	Default constructor
		*/
		TLine3()
			
			:	p(),
				d()
		{
		}

		/**	Copy constructor.
				@param TLine3 the TLine3 object to be copied
				@param bool ignored - just for interface consistency
		*/	
		TLine3(const TLine3& line)
			
			:	p(line.p),
				d(line.d)
		{
		}

		// form: PARAMETER (default) or TWO_POINTS

		/**	Detailed constructor.
				Depending on form, create a new TLine3 object from a point and a vector
				or from two points.
				@param	point assigned to <tt>p</tt>
				@param	vector assigned to <tt>d</tt>
				@param	form assigns form of parameter
								<tt>0</tt> one Point and one Vector \par
								<tt>1</tt> two Points
		*/
		TLine3(const TVector3<T>& point, const TVector3<T>& vector, Form form = FORM__PARAMETER)
			
			:	p(point),
				d((form == FORM__PARAMETER) 
					? vector 
					: vector - point)
		{
		}

		/**	Destructor.	
				Destructs the TLine3 object. As there are no dynamic
				data structures, nothing happens.
		*/
		virtual ~TLine3()
			
		{
		}

		/**	Clear method.
				The values are set to 0.
		*/
		virtual void clear() 
			
		{
			p.clear();
			d.clear();
		}

		//@}

		/**	@name	Assignment	
		*/
		//@{

		/**	Swap the contents of two instances of lines.
				@param	line the TLine3 to swap contents with
		*/
		void swap(TLine3& line)
			
		{
			TVector3<T> temp_point(p);
			p = line.p;
			line.p = temp_point;

			TVector3<T> temp_vector(d);
			d = line.d;
			line.d = temp_vector;
		}

		/**	Assign from another instance of TLine3.
				@param line	the TLine3 object to assign from
		*/
		void set(const TLine3& line)
			
		{
			p = line.p;
			d = line.d;
		}

		/**	Assign from one point and a vector
				or from two points, depending on form.
				@param	point assigned to <tt>p</tt>
				@param	vector assigned to <tt>d</tt>
				@param	form assigns form of parameter
		*/
		void set(const TVector3<T>& point, const TVector3<T>& vector, Form form = FORM__PARAMETER)
			
		{
			p = point;
			if (form == FORM__PARAMETER) 
			{
				d = vector;
			}
			else 
			{
				d = vector - point;
			}
		}

		/**	Assignment operator.
				Assign the components from another instance of line.
				@param line the vector to assign from
		**/
		TLine3& operator = (const TLine3& line)
			
		{
			p = line.p;
			d = line.d;

			return *this;
		}

		/**	Assign to another instance of TLine3.
				Assigns the vector components to another vector.
				@param line	the line to be assigned to
		*/
		void get(TLine3& line) const 
		{
			line.p = p;
			line.d = d;
		}

		/**	Assign to two instances of <tt>TVector3</tt>.
				Type of components depends on form.
				@param	point the first point
				@param	vector the second point or the vector component
				@param	form assigns form of parameter  \par
								<tt>0</tt> one Point and one Vector  \par
								<tt>1</tt> two Points
		*/
		void get(TVector3<T>& point,TVector3<T>& vector, Form form = FORM__PARAMETER) const
			
		{
			point = p;
			if (form == FORM__PARAMETER) 
			{
				vector = d;
			}
			else 
			{
				vector - point = d;
			}
		}

		//@}

		/**	@name	Accessors
		*/
		//@{

		/**	Normalize the vector component.
				The vector is scaled with its length:
				\f$\{x|y|z|\} *= \sqrt{x^2 + y^2 + z^2}\f$.
				@exception DivisionByZero if the length of the vector is 0
		*/
		void normalize()
			
		{
			d.normalize();
		}
		//@}

		/**	@name	Predicates
		*/
		//@{

		/**	Equality operator.
				@return bool, <b>true</b> if both components are equal, <b>false</b> otherwise
		*/
		bool operator == (const TLine3& line) const
			
		{
			return (p == line.p && d == line.d);
		}

		/**	Inequality operator.
				@return bool, <b>true</b> if the two lines differ in at least one component, <b>false</b> otherwise
		*/
		bool operator != (const TLine3& line) const
			
		{
			return (p != line.p || d != line.d);
		}

		/**	Test whether a given point is a member of the line.
				@return bool, <b>true</b> or <b>false</b>
		*/
		bool has(const TVector3<T>& point) const
			
		{
			if (Maths::isNotZero(d.x))
			{
				T c = (point.x - p.x) / d.x;

				return (Maths::isEqual(p.y + c * d.y, point.y) && Maths::isEqual(p.z + c * d.z, point.z));
			}
			else 
			{
				if (Maths::isNotZero(d.y))
				{
					T c = (point.y - p.y) / d.y;

					return (Maths::isEqual(p.x, point.x)   // invariant: d.x == 0
												&& Maths::isEqual(p.z + c * d.z, point.z));
				}
				else 
				{
					if (Maths::isNotZero(d.z))
					{
						return (Maths::isEqual(p.x, point.x)   // invariant: d.x == 0
													&& Maths::isEqual(p.y, point.y)); // invariant: d.y == 0
					}
					else 
					{
						return false;
					}
				}
			}
		}

		//@}
		/**	@name	Debugging and Diagnostics
		*/
		//@{

		/**	Test whether instance is valid.
				Always returns true.
				@return bool <b>true</b>
		*/
		bool isValid() const
			
		{
			return true;
		}

		/** Internal state dump.
				Dump the current internal state of {\em *this} to 
				the output ostream <b>  s </b> with dumping depth <b>  depth </b>.
				@param   s - output stream where to output the internal state of {\em *this}
				@param   depth - the dumping depth
		*/
		void dump(std::ostream& s = std::cout, Size depth = 0) const
			
		{
			BALL_DUMP_STREAM_PREFIX(s);

			BALL_DUMP_HEADER(s, this, this);

			BALL_DUMP_DEPTH(s, depth);
			s << "  position: " << p << std::endl;

			BALL_DUMP_DEPTH(s, depth);
			s << "  direction: " << d << std::endl;

			BALL_DUMP_STREAM_SUFFIX(s);
		}
		//@}


		/**	@name	Attributes
		*/
		//@{

		/**	Point Component.
		*/
		TVector3<T> p;

		/**	Vector Component.
		*/
		TVector3<T> d;
		//@}
	};
	//@}

	/**	Default line of type <b>float</b>.
	 		\ingroup Line
	*/
	typedef TLine3<float> Line3;

	/**	Input operator.
			Reads two objcts of type <b>TVector3</b> from an <tt>istream</tt> and
			assigns them to <tt>d</tt> and <tt>p</tt>.
	*/
	template <typename T>
	std::istream& operator >> (std::istream& s, TLine3<T>& line)
		
	{
		char c;
		s >> c >> line.p >> line.d >> c;
		return s;
	}

	/**	Output operator.
			Writes the two public attributes <tt>d</tt> and <tt>p</tt> to an output stream.
			The values of the two vectors are enclosed in brackets. \par
			<b>Example:</b> \par
			<tt>((0 0 0) (1 2 1))</tt>
			@see TVector3::operator<<
	*/
	template <typename T>
	std::ostream& operator << (std::ostream& s, const TLine3<T>& line)
		
	{
		s << '(' << line.p << ' ' << line.d << ')';
		return s;
	}
} // namespace BALL

#endif // BALL_MATHS_LINE3_H