/usr/include/SurgSim/Math/MathConvert.h is in libopensurgsim-dev 0.7.0-6ubuntu1.
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 | // 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.
#ifndef SURGSIM_MATH_MATHCONVERT_H
#define SURGSIM_MATH_MATHCONVERT_H
#include <Eigen/Core>
#include <Eigen/Geometry>
#include <yaml-cpp/yaml.h>
#include "SurgSim/Framework/Macros.h"
#include "SurgSim/Math/LinearSparseSolveAndInverse.h"
#include "SurgSim/Math/OdeSolver.h"
namespace SurgSim
{
namespace Math
{
class Shape;
}
}
/// \file MathConvert.h
/// This contains a series of functions to encode and decode Eigen data structures to
/// and from YAML nodes. These conversion functions will extinguish Eigen options, these
/// are not serialized, the output is determined by the type as it is declared in the
/// appropriate conversion function, with Eigen::Transform, this could lead to problems
/// If the mode that is used for reading is different than the mode that was used while
/// writing.
namespace YAML
{
/// Specialization of convert for fixed size Eigen::Matrix
SURGSIM_DOUBLE_SPECIALIZATION
template <typename Type, int Rows, int Cols, int MOpt>
struct convert<typename Eigen::Matrix<Type, Rows, Cols, MOpt>>
{
static Node encode(const typename Eigen::Matrix<Type, Rows, Cols, MOpt>& rhs);
static bool decode(const Node& node, typename Eigen::Matrix<Type, Rows, Cols, MOpt>& rhs); //NOLINT
};
/// Specialization of convert for Eigen::Quaternion
SURGSIM_DOUBLE_SPECIALIZATION
template <class Type, int QOpt>
struct convert<typename Eigen::Quaternion<Type, QOpt>>
{
static Node encode(const typename Eigen::Quaternion<Type, QOpt>& rhs);
static bool decode(const Node& node, typename Eigen::Quaternion<Type, QOpt>& rhs); //NOLINT
};
/// Specialization of convert for Eigen::RigidTransform
SURGSIM_DOUBLE_SPECIALIZATION
template <class Type, int Dim, int TMode, int TOptions>
struct convert<typename Eigen::Transform<Type, Dim, TMode, TOptions>>
{
static Node encode(const typename Eigen::Transform<Type, Dim, TMode, TOptions>& rhs);
static bool decode(const Node& node, typename Eigen::Transform<Type, Dim, TMode, TOptions>& rhs); //NOLINT
};
/// Specialization of convert for Eigen::AngleAxis
SURGSIM_DOUBLE_SPECIALIZATION
template <typename Type>
struct convert<typename Eigen::AngleAxis<Type>>
{
static Node encode(const typename Eigen::AngleAxis<Type>& rhs);
static bool decode(const Node& node, typename Eigen::AngleAxis<Type>& rhs); //NOLINT
};
template <>
struct convert<std::shared_ptr<SurgSim::Math::Shape>>
{
static Node encode(const std::shared_ptr<SurgSim::Math::Shape>& rhs);
static bool decode(const Node& node, std::shared_ptr<SurgSim::Math::Shape>& rhs); //NOLINT
};
template <>
struct convert<SurgSim::Math::IntegrationScheme>
{
static Node encode(const SurgSim::Math::IntegrationScheme& rhs);
static bool decode(const Node& node, SurgSim::Math::IntegrationScheme& rhs); //NOLINT
};
template <>
struct convert<SurgSim::Math::LinearSolver>
{
static Node encode(const SurgSim::Math::LinearSolver& rhs);
static bool decode(const Node& node, SurgSim::Math::LinearSolver& rhs); //NOLINT
};
};
#include "SurgSim/Math/MathConvert-inl.h"
#endif // SURGSIM_MATH_MATHCONVERT_H
|