This file is indexed.

/usr/include/SurgSim/Graphics/OsgMatrixConversions.h is in libopensurgsim-dev 0.7.0-5.

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
// This file is a part of the OpenSurgSim project.
// Copyright 2013, SimQuest Solutions Inc.
//
// 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
/// Conversions to and from OSG matrix types
///
/// SurgSim's Eigen vectors are a single <b>column</b>, and matrix operations use <b>postfix</b> notation.
/// OSG vectors are a single <b>row</b> and matrix operations use <b>prefix</b> notation,
///
/// For example, with Eigen, one might write:
/// \code{.cpp}
/// Vector3d columnVector;
/// Matrix33d matrix;
/// Vector3d result = matrix * columnVector;
/// \endcode
///
/// However, with OSG, this should be written in the form:
/// \code{.cpp}
/// osg::Vec3d rowVector;
/// osg::Matrix3d columnMajorMatrix;
/// osg::Vec3d result = rowVector * columnMajorMatrix;
/// \endcode
///
/// For the result to be the same, the OSG matrix data must be interpreted as column-major.
/// These conversions handle that.

#ifndef SURGSIM_GRAPHICS_OSGMATRIXCONVERSIONS_H
#define SURGSIM_GRAPHICS_OSGMATRIXCONVERSIONS_H

#include "SurgSim/Math/Matrix.h"

#include <osg/Matrixf>
#include <osg/Matrixd>
#include <osg/Uniform>

namespace SurgSim
{

namespace Graphics
{

/// Convert a fixed-size 2x2 matrix of floats to OSG.
template <int MOpt> inline
const osg::Matrix2 toOsg(const Eigen::Matrix<float, 2, 2, MOpt>& matrix)
{
	osg::Matrix2 osgMatrix;
	Eigen::Map<Eigen::Matrix<float, 2, 2, Eigen::ColMajor>>(osgMatrix.ptr()) = matrix;
	return osgMatrix;
}

/// Convert a fixed-size 2x2 matrix of doubles to OSG.
template <int MOpt> inline
const osg::Matrix2d toOsg(const Eigen::Matrix<double, 2, 2, MOpt>& matrix)
{
	osg::Matrix2d osgMatrix;
	Eigen::Map<Eigen::Matrix<double, 2, 2, Eigen::ColMajor>>(osgMatrix.ptr()) = matrix;
	return osgMatrix;
}

/// Convert from OSG to a 2x2 matrix of floats.
inline const Eigen::Matrix<float, 2, 2, Eigen::RowMajor> fromOsg(const osg::Matrix2& matrix)
{
	return Eigen::Map<const Eigen::Matrix<float, 2, 2, Eigen::ColMajor>>(matrix.ptr());
}
/// Convert from OSG to a 2x2 matrix of doubles.
inline const Eigen::Matrix<double, 2, 2, Eigen::RowMajor> fromOsg(const osg::Matrix2d& matrix)
{
	return Eigen::Map<const Eigen::Matrix<double, 2, 2, Eigen::ColMajor>>(matrix.ptr());
}

/// Convert a fixed-size 3x3 matrix of floats to OSG.
template <int MOpt> inline
const osg::Matrix3 toOsg(const Eigen::Matrix<float, 3, 3, MOpt>& matrix)
{
	osg::Matrix3 osgMatrix;
	Eigen::Map<Eigen::Matrix<float, 3, 3, Eigen::ColMajor>>(osgMatrix.ptr()) = matrix;
	return osgMatrix;
}

/// Convert a fixed-size 3x3 matrix of doubles to OSG.
template <int MOpt> inline
	const osg::Matrix3d toOsg(const Eigen::Matrix<double, 3, 3, MOpt>& matrix)
{
	osg::Matrix3d osgMatrix;
	Eigen::Map<Eigen::Matrix<double, 3, 3, Eigen::ColMajor>>(osgMatrix.ptr()) = matrix;
	return osgMatrix;
}

/// Convert from OSG to a 3x3 matrix of floats.
inline const Eigen::Matrix<float, 3, 3, Eigen::RowMajor> fromOsg(const osg::Matrix3& matrix)
{
	return Eigen::Map<const Eigen::Matrix<float, 3, 3, Eigen::ColMajor>>(matrix.ptr());
}

/// Convert from OSG to a 3x3 matrix of doubles.
inline const Eigen::Matrix<double, 3, 3, Eigen::RowMajor> fromOsg(const osg::Matrix3d& matrix)
{
	return Eigen::Map<const Eigen::Matrix<double, 3, 3, Eigen::ColMajor>>(matrix.ptr());
}

/// Convert a fixed-size 4x4 matrix of floats to OSG.
template <int MOpt> inline
const osg::Matrixf toOsg(const Eigen::Matrix<float, 4, 4, MOpt>& matrix)
{
	osg::Matrixf osgMatrix;
	Eigen::Map<Eigen::Matrix<float, 4, 4, Eigen::ColMajor>>(osgMatrix.ptr()) = matrix;
	return osgMatrix;
}

/// Convert from OSG to a 4x4 matrix of floats.
inline const Eigen::Matrix<float, 4, 4, Eigen::RowMajor> fromOsg(const osg::Matrixf& matrix)
{
	return Eigen::Map<const Eigen::Matrix<float, 4, 4, Eigen::ColMajor>>(matrix.ptr());
}

/// Convert a fixed-size 4x4 matrix of doubles to OSG.
template <int MOpt> inline
const osg::Matrixd toOsg(const Eigen::Matrix<double, 4, 4, MOpt>& matrix)
{
	osg::Matrixd osgMatrix;
	Eigen::Map<Eigen::Matrix<double, 4, 4, Eigen::ColMajor>>(osgMatrix.ptr()) = matrix;
	return osgMatrix;
}

/// Convert from OSG to a 4x4 matrix of doubles.
inline const Eigen::Matrix<double, 4, 4, Eigen::RowMajor> fromOsg(const osg::Matrixd& matrix)
{
	return Eigen::Map<const Eigen::Matrix<double, 4, 4, Eigen::ColMajor>>(matrix.ptr());
}

};  // namespace Graphics

};  // namespace SurgSim

#endif  // SURGSIM_GRAPHICS_OSGMATRIXCONVERSIONS_H