This file is indexed.

/usr/include/OGRE/OgreDualQuaternion.h is in libogre-1.8-dev 1.8.0+dfsg1-7+b1.

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
/*
-----------------------------------------------------------------------------
This source file is part of OGRE
    (Object-oriented Graphics Rendering Engine)
For the latest info, see http://www.ogre3d.org/

Copyright (c) 2000-2012 Torus Knot Software Ltd

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-----------------------------------------------------------------------------
*/

#ifndef __DualQuaternion_H__
#define __DualQuaternion_H__

#include "OgrePrerequisites.h"
#include "OgreMath.h"

namespace Ogre {

	/** \addtogroup Core
	*  @{
	*/
	/** \addtogroup Math
	*  @{
	*/
	/** Implementation of a dual quaternion, i.e. a rotation around an axis and a translation.
	    This implementation may note be appropriate as a general implementation, but is intended for use with
	    dual quaternion skinning.
	*/
	class _OgreExport DualQuaternion
	{
	public:
		/// Default constructor, initializes to identity rotation (aka 0°), and zero translation (0,0,0)
		inline DualQuaternion ()
			: w(1), x(0), y(0), z(0), dw(1), dx(0), dy(0), dz(0)
		{
		}
		
		/// Construct from an explicit list of values
		inline DualQuaternion (Real fW, Real fX, Real fY, Real fZ, 
				Real fdW, Real fdX, Real fdY, Real fdZ)
			: w(fW), x(fX), y(fY), z(fZ), dw(fdW), dx(fdX), dy(fdY), dz(fdZ)
		{
		}
        
		/// Construct a dual quaternion from a transformation matrix
		inline DualQuaternion(const Matrix4& rot)
		{
			this->fromTransformationMatrix(rot);
		}
		
		/// Construct a dual quaternion from a unit quaternion and a translation vector
		inline DualQuaternion(const Quaternion& q, const Vector3& trans)
		{
			this->fromRotationTranslation(q, trans);
		}
		
		/// Construct a dual quaternion from 8 manual w/x/y/z/dw/dx/dy/dz values
		inline DualQuaternion(Real* valptr)
		{
			memcpy(&w, valptr, sizeof(Real)*8);
		}

		/// Array accessor operator
		inline Real operator [] ( const size_t i ) const
		{
			assert( i < 8 );

			return *(&w+i);
		}

		/// Array accessor operator
		inline Real& operator [] ( const size_t i )
		{
			assert( i < 8 );

			return *(&w+i);
		}
		
		inline DualQuaternion& operator= (const DualQuaternion& rkQ)
		{
			w = rkQ.w;
			x = rkQ.x;
			y = rkQ.y;
			z = rkQ.z;
			dw = rkQ.dw;
			dx = rkQ.dx;
			dy = rkQ.dy;
			dz = rkQ.dz;
			
			return *this;
		}

		inline bool operator== (const DualQuaternion& rhs) const
		{
			return (rhs.w == w) && (rhs.x == x) && (rhs.y == y) && (rhs.z == z) && 
				(rhs.dw == dw) && (rhs.dx == dx) && (rhs.dy == dy) && (rhs.dz == dz);
		}

		inline bool operator!= (const DualQuaternion& rhs) const
		{
			return !operator==(rhs);
		}

		/// Pointer accessor for direct copying
		inline Real* ptr()
		{
			return &w;
		}

		/// Pointer accessor for direct copying
		inline const Real* ptr() const
		{
			return &w;
		}
		
		/// Exchange the contents of this dual quaternion with another. 
		inline void swap(DualQuaternion& other)
		{
			std::swap(w, other.w);
			std::swap(x, other.x);
			std::swap(y, other.y);
			std::swap(z, other.z);
			std::swap(dw, other.dw);
			std::swap(dx, other.dx);
			std::swap(dy, other.dy);
			std::swap(dz, other.dz);
		}
		
		/// Check whether this dual quaternion contains valid values
		inline bool isNaN() const
		{
			return Math::isNaN(w) || Math::isNaN(x) || Math::isNaN(y) || Math::isNaN(z) ||  
				Math::isNaN(dw) || Math::isNaN(dx) || Math::isNaN(dy) || Math::isNaN(dz);
		}

		/// Construct a dual quaternion from a rotation described by a Quaternion and a translation described by a Vector3
		void fromRotationTranslation (const Quaternion& q, const Vector3& trans);
		
		/// Convert a dual quaternion into its two components, a Quaternion representing the rotation and a Vector3 representing the translation
		void toRotationTranslation (Quaternion& q, Vector3& translation) const;

		/// Construct a dual quaternion from a 4x4 transformation matrix
		void fromTransformationMatrix (const Matrix4& kTrans);
		
		/// Convert a dual quaternion to a 4x4 transformation matrix
		void toTransformationMatrix (Matrix4& kTrans) const;

		Real w, x, y, z, dw, dx, dy, dz;

		/** 
		Function for writing to a stream. Outputs "DualQuaternion(w, x, y, z, dw, dx, dy, dz)" with w, x, y, z, dw, dx, dy, dz
		being the member values of the dual quaternion.
		*/
		inline _OgreExport friend std::ostream& operator <<
		( std::ostream& o, const DualQuaternion& q )
		{
			o << "DualQuaternion(" << q.w << ", " << q.x << ", " << q.y << ", " << q.z << ", " << q.dw << ", " << q.dx << ", " << q.dy << ", " << q.dz << ")";
			return o;
		}
	};
	/** @} */
	/** @} */

}

#endif