This file is indexed.

/usr/include/simbody/SimTKcommon/internal/UnitVec.h is in libsimbody-dev 3.5.4+dfsg-1ubuntu2.

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
#ifndef SimTK_UNITVEC_H 
#define SimTK_UNITVEC_H 

/* -------------------------------------------------------------------------- *
 *                       Simbody(tm): SimTKcommon                             *
 * -------------------------------------------------------------------------- *
 * This is part of the SimTK biosimulation toolkit originating from           *
 * Simbios, the NIH National Center for Physics-Based Simulation of           *
 * Biological Structures at Stanford, funded under the NIH Roadmap for        *
 * Medical Research, grant U54 GM072970. See https://simtk.org/home/simbody.  *
 *                                                                            *
 * Portions copyright (c) 2005-12 Stanford University and the Authors.        *
 * Authors: Michael Sherman                                                   *
 * Contributors: Paul Mitiguy                                                 *
 *                                                                            *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may    *
 * not use this file except in compliance with the License. You may obtain a  *
 * copy of the License at http://www.apache.org/licenses/LICENSE-2.0.         *
 *                                                                            *
 * Unless required by applicable law or agreed to in writing, software        *
 * distributed under the License is distributed on an "AS IS" BASIS,          *
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   *
 * See the License for the specific language governing permissions and        *
 * limitations under the License.                                             *
 * -------------------------------------------------------------------------- */

/** @file
Declares and defines the UnitVec and UnitRow classes. **/

#include "SimTKcommon/SmallMatrix.h"
#include "SimTKcommon/internal/CoordinateAxis.h"

#include <iosfwd>  // Forward declaration of iostream

namespace SimTK {

//-----------------------------------------------------------------------------
// Forward declarations. These are templatized by precision P and and stride S
// but always have length 3. TODO: this should be generalized to other lengths.
template <class P, int S> class UnitVec;
template <class P, int S> class UnitRow;

// UnitVec3 is more intelligible name for UnitVec<Real,1>.
typedef UnitVec<Real,1>     UnitVec3;
typedef UnitVec<float,1>    fUnitVec3;
typedef UnitVec<double,1>   dUnitVec3;

//-----------------------------------------------------------------------------
/**
 * This class is a Vec3 plus an ironclad guarantee either that:
 *      - the length is one (to within a very small tolerance), or
 *      - all components are NaN.
 */
//-----------------------------------------------------------------------------
template <class P, int S>
class UnitVec : public Vec<3,P,S> {
    typedef P   RealP;
public:
    typedef Vec<3,P,S>      BaseVec;
    typedef UnitRow<P,S>    TransposeType;

    /// Default constructor initializes to all-NaN even in Release mode so that
    /// we maintain the above-promised contract.
    UnitVec() : BaseVec(NTraits<P>::getNaN()) {}

    /// Copy constructor does not require normalization since we know the
    /// source is a unit vector.
    UnitVec(const UnitVec& u) 
    :   BaseVec( static_cast<const BaseVec&>(u) ) {}

    /// Automatic conversion from UnitVec with different stride; no computation
    /// required.
    template <int S2> UnitVec(const UnitVec<P,S2>& u) 
    :   BaseVec( static_cast<const typename UnitVec<P,S2>::BaseVec&>(u) ) {}

    /// Explicit conversion from Vec to UnitVec, requiring expensive normalization.
    explicit UnitVec(const BaseVec& v) : BaseVec(v/v.norm()) {}
    /// Explicit conversion from Vec of any stride to this UnitVec, requiring 
    /// expensive normalization.
    template <int S2> 
    explicit UnitVec(const Vec<3,P,S2>& v) : BaseVec(v/v.norm())  {}

    /// Create a unit vector in the direction of the vector (x,y,z) whose measure
    /// numbers are supplied -- this requires an expensive normalization since
    /// we don't know that the supplied vector is normalized.
    UnitVec(const RealP& x, const RealP& y, const RealP& z) : BaseVec(x,y,z)  
    {   static_cast<BaseVec&>(*this) /= BaseVec::norm(); }

    /// Implicit conversion from a coordinate axis XAxis, YAxis, or ZAxis to
    /// a UnitVec3.\ Does not require any computation.
    UnitVec(const CoordinateAxis& axis) : BaseVec(0) 
    {   BaseVec::operator[](axis) = 1; }

    /// Implicit conversion from a coordinate axis direction to a 
    /// UnitVec3.\ The axis direction is given by one of XAxis, YAxis, ZAxis 
    /// or NegXAxis, NegYAxis, NegZAxis.\ Does not require any computation.
    UnitVec(const CoordinateDirection& dir) : BaseVec(0) 
    {   BaseVec::operator[](dir.getAxis()) = RealP(dir.getDirection()); }

    /// Construct a unit axis vector 100 010 001 given 0,1, or 2; this is not
    /// an implicit conversion.
    explicit UnitVec(int axis) : BaseVec(0) 
    {   assert(0 <= axis && axis <= 2);
        BaseVec::operator[](axis) = 1; }

    /// Copy assignment does not require normalization.
    UnitVec& operator=(const UnitVec& u) 
    {   BaseVec::operator=(static_cast<const BaseVec&>(u)); 
        return *this; }

    /// Copy assignment from a UnitVec whose stride differs from this one; no
    /// normalization required.
    template <int S2> UnitVec& operator=(const UnitVec<P,S2>& u) 
    {   BaseVec::operator=(static_cast<const typename UnitVec<P,S2>::BaseVec&>(u));
        return *this; }

    /// Return a reference to the underlying Vec3 (no copying here).
    const BaseVec& asVec3() const {return static_cast<const BaseVec&>(*this);}

    // Override Vec3 methods which preserve length. These return a 
    // packed UnitVec regardless of our stride.

    /// Returns a new unit vector pointing in the opposite direction from this one;
    /// does \e not modify this UnitVec object. Cost is 3 flops.
    UnitVec<P,1> negate()    const {return UnitVec<P,1>(-asVec3(),true);}
    /// Returns a new unit vector pointing in the opposite direction from this one.
    /// Cost is 3 flops.
    UnitVec<P,1> operator-() const {return negate();}

    /// Return a const reference to this unit vector re-expressed as a unit row; no
    /// computational cost.
    const TransposeType& operator~() const {return *reinterpret_cast<const TransposeType*>(this);}
    /// Return a writable reference to this unit vector re-expressed as a unit row; no
    /// computational cost.
    TransposeType& operator~() {return *reinterpret_cast<TransposeType*>(this);}

    // We have to define these here so that the non-const ones won't be
    // inherited. We don't trust anyone to write on one element of a UnitVec!

    /// Return one element of this unit vector as a const reference; there is no 
    /// corresponding writable index function since changing a single element of
    /// a unit vector would violate the contract that it has unit length at all times.
    const RealP&  operator[](int i) const  { return BaseVec::operator[](i); }
    /// Return one element of this unit vector as a const reference; there is no 
    /// corresponding writable index function since changing a single element of
    /// a unit vector would violate the contract that it has unit length at all times.
    const RealP&  operator()(int i) const  { return BaseVec::operator()(i); }

    /// Return a new unit vector whose measure numbers are the absolute values
    /// of the ones here. This will still have unit length but will be
    /// a reflection of this unit vector into the first octant (+x,+y,+z).
    /// Note that we are returning the packed form of UnitVec regardless
    /// of our stride here.
    UnitVec<P,1> abs() const {return UnitVec<P,1>( asVec3().abs(), true );}

    /// Return a new unit vector perpendicular to this one but otherwise
    /// arbitrary. Some care is taken to ensure good numerical conditioning
    /// for the result regardless of what goes in. Cost is about 50 flops.
    inline UnitVec<P,1> perp() const;

    /// (Advanced) This constructor is only for our friends whom we trust to
    /// give us an already-normalized vector which we simply accept as
    /// normalized without checking.
    UnitVec(const BaseVec& v, bool) : BaseVec(v) {}
    /// (Advanced) This constructor is only for our friends whom we trust to
    /// give us an already-normalized vector which we simply accept as
    /// normalized without checking (this version accepts an input
    /// vector of any stride).
    template <int S2> UnitVec(const Vec<3,RealP,S2>& v, bool) : BaseVec(v) { }

    /// (Advanced) Reinterpret a given memory location as a %UnitVec like
    /// this one, without checking -- don't use this if you aren't absolutely 
    /// certain that the memory location actually \e does contain a unit vector, 
    /// with the correct stride! This overrides the base Vec class method of the
    /// same name.
    static const UnitVec& getAs(const RealP* p)  
    {   return *reinterpret_cast<const UnitVec*>(p); }
};


template <class P, int S> inline UnitVec<P,1> 
UnitVec<P,S>::perp() const {
    // Choose the coordinate axis which makes the largest angle
    // with this vector, that is, has the "least u" along it.
    const UnitVec<P,1> u(abs());    // reflect to first octant
    const int minAxis = u[0] <= u[1] ? (u[0] <= u[2] ? 0 : 2)
                                     : (u[1] <= u[2] ? 1 : 2);
    // Cross returns a Vec3 result which is then normalized.
    return UnitVec<P,1>( *this % UnitVec<P,1>(minAxis) );
}

/// Compare two UnitVec3 objects for exact, bitwise equality (not very useful).
/// @relates UnitVec
template <class P, int S1, int S2> inline bool
operator==(const UnitVec<P,S1>& u1, const UnitVec<P,S2>& u2)
{   return u1.asVec3() == u2.asVec3(); }

/// Compare two UnitVec3 objects and return true unless they are exactly
/// bitwise equal (not very useful).
/// @relates UnitVec
template <class P, int S1, int S2> inline bool
operator!=(const UnitVec<P,S1>& u1, const UnitVec<P,S2>& u2)
{   return !(u1==u2); }

//-----------------------------------------------------------------------------
/**
 * This type is used for the transpose of UnitVec, and as the returned row
 * type of a Rotation. Don't construct these directly.
 */
//-----------------------------------------------------------------------------
template <class P, int S>
class UnitRow : public Row<3,P,S> {
    typedef P   RealP;
public:
    typedef Row<3,P,S>      BaseRow;
    typedef UnitVec<P,S>    TransposeType;

    UnitRow() : BaseRow(NTraits<P>::getNaN()) { }

    /// Copy constructor does not require normalization.
    UnitRow(const UnitRow& u) 
    :   BaseRow(static_cast<const BaseRow&>(u)) {}

    /// Implicit conversion from UnitRow with different stride; no
    /// normalization required.
    template <int S2> UnitRow(const UnitRow<P,S2>& u)
    :   BaseRow(static_cast<const typename UnitRow<P,S2>::BaseRow&>(u)) { }

    /// Copy assignment does not require normalization.
    UnitRow& operator=(const UnitRow& u) 
    {   BaseRow::operator=(static_cast<const BaseRow&>(u)); 
        return *this; }

    /// Copy assignment from UnitRow with different stride; no computation needed.
    template <int S2> UnitRow& operator=(const UnitRow<P,S2>& u) 
    {   BaseRow::operator=(static_cast<const typename UnitRow<P,S2>::BaseRow&>(u));
        return *this; }

    /// Explicit conversion from Row to UnitRow, requiring expensive normalization.
    explicit UnitRow(const BaseRow& v) : BaseRow(v/v.norm()) {}
    /// Explicit conversion from Row of any stride to UnitRow, requiring expensive 
    /// normalization.
    template <int S2> 
    explicit UnitRow(const Row<3,P,S2>& v) : BaseRow(v/v.norm()) {}

    /// Create a unit row from explicitly specified measure numbers (x,y,z); 
    /// requires expensive normalization.
    UnitRow(const RealP& x, const RealP& y, const RealP& z)
    :   BaseRow(x,y,z)
    {   static_cast<BaseRow&>(*this) /= BaseRow::norm(); }

    /// Create a unit axis vector 100 010 001 given 0, 1, or 2.
    explicit UnitRow(int axis) : BaseRow(0) 
    {   assert(0 <= axis && axis <= 2);
        BaseRow::operator[](axis) = 1; }

    /// Return a const reference to the Row3 underlying this UnitRow.
    const BaseRow& asRow3() const  {return static_cast<const BaseRow&>(*this);}

    // Override Row3 methods which preserve length. These return the 
    // packed UnitRow regardless of our stride.

    /// Returns a new unit vector pointing in the opposite direction from this one;
    /// does \e not modify this UnitVec object. Cost is 3 flops.
    UnitRow<P,1> negate()    const  { return UnitRow<P,1>(-asRow3(),true); }
    /// Returns a new unit vector pointing in the opposite direction from this one.
    /// Cost is 3 flops.
    UnitRow<P,1> operator-() const  { return negate();}

    /// Return a const reference to this UnitRow reinterpreted as a UnitVec; no
    /// computation requires since this is just a type cast.
    const TransposeType&  operator~() const {return *reinterpret_cast<const TransposeType*>(this);}
    /// Return a writable reference to this UnitRow reinterpreted as a UnitVec; no
    /// computation requires since this is just a type cast.
    TransposeType& operator~() {return *reinterpret_cast<TransposeType*>(this);}

    // We have to define these here so that the non-const ones won't be
    // inherited. We don't trust anyone to write on one element of a UnitRow!

    /// Return one element of this unit row as a const reference; there is no 
    /// corresponding writable index function since changing a single element of
    /// a unit vector would violate the contract that it has unit length at all times.
    const RealP&  operator[](int i) const  { return BaseRow::operator[](i); }
    /// Return one element of this unit row as a const reference; there is no 
    /// corresponding writable index function since changing a single element of
    /// a unit vector would violate the contract that it has unit length at all times.
    const RealP&  operator()(int i) const  { return BaseRow::operator()(i); }

    /// Return a new UnitRow whose measure numbers are the absolute values
    /// of the ones here. This will still have unit length but will be
    /// a reflection of this unit vector into the first octant (+x,+y,+z).
    /// Note that we are returning the packed form of UnitRow regardless
    /// of our stride here.
    UnitRow<P,1> abs() const {return UnitRow<P,1>(asRow3().abs(),true);}

    /// Return a new UnitRow perpendicular to this one but otherwise
    /// arbitrary. Some care is taken to ensure good numerical conditioning
    /// for the result regardless of what goes in. Cost is about 50 flops.
    inline UnitRow<P,1> perp() const;

    /// (Advanced) This constructor is only for our friends whom we trust to
    /// give us an already-normalized vector which we simply accept as
    /// normalized without checking.
    UnitRow( const BaseRow& v, bool ) : BaseRow(v) { }
    /// (Advanced) This constructor is only for our friends whom we trust to
    /// give us an already-normalized vector which we simply accept as
    /// normalized without checking (this version accepts an input
    /// vector of any stride).
    template <int S2> UnitRow( const Row<3,P,S2>& v, bool ) : BaseRow(v) { }

    /// (Advanced) Reinterpret a given memory location as a %UnitRow like
    /// this one, without checking -- don't use this if you aren't absolutely 
    /// certain that the memory location actually \e does contain a unit vector,
    /// with the correct stride! This overrides the base Row class method of the
    /// same name.
    static const UnitRow& getAs(const RealP* p)  
    {   return *reinterpret_cast<const UnitRow*>(p); }
};

template <class P, int S>
inline UnitRow<P,1> UnitRow<P,S>::perp() const {
    // Choose the coordinate axis which makes the largest angle
    // with this vector, that is, has the "least u" along it.
    const UnitRow<P,1> u(abs());    // reflect to first octant
    const int minAxis = u[0] <= u[1] ? (u[0] <= u[2] ? 0 : 2)
                                     : (u[1] <= u[2] ? 1 : 2);
    // Cross returns a Row3 result which is then normalized.
    return UnitRow<P,1>(*this % UnitRow<P,1>(minAxis));
}


/// Compare two UnitRow3 objects for exact, bitwise equality (not very useful).
/// @relates UnitRow
template <class P, int S1, int S2> inline bool
operator==(const UnitRow<P,S1>& u1, const UnitRow<P,S2>& u2)
{   return u1.asRow3() == u2.asRow3(); }

/// Compare two UnitRow3 objects and return true unless they are exactly
/// bitwise equal (not very useful).
/// @relates UnitRow
template <class P, int S1, int S2> inline bool
operator!=(const UnitRow<P,S1>& u1, const UnitRow<P,S2>& u2)
{   return !(u1==u2); }

//------------------------------------------------------------------------------
}  // End of namespace SimTK

//--------------------------------------------------------------------------
#endif // SimTK_UNITVEC_H_
//--------------------------------------------------------------------------