[go: up one dir, main page]

Menu

[8286ad]: / body / Frame.cpp  Maximize  Restore  History

Download this file

130 lines (115 with data), 4.2 kB

  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
// Copyright (C) 2001-2019 Sam Varner
//
// This file is part of Vamos Automotive Simulator.
//
// Vamos is free software: you can redistribute it and/or modify it under the terms of
// the GNU General Public License as published by the Free Software Foundation, either
// version 3 of the License, or (at your option) any later version.
//
// Vamos is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
// without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
// PURPOSE. See the GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License along with Vamos.
// If not, see <http://www.gnu.org/licenses/>.
#include "Frame.hpp"
#include "../geometry/Constants.hpp"
#include <cassert>
#include <cmath>
using Vamos_Geometry::Three_Matrix;
using Vamos_Geometry::Three_Vector;
using namespace Vamos_Body;
Frame::Frame(const Three_Vector& position, const Three_Matrix& orientation)
: m_orientation(orientation),
m_position(position)
{}
Frame::Frame(const Three_Vector& position)
: m_position(position)
{}
Three_Vector Frame::transform_in(const Three_Vector& r) const
{
return rotate_in(r - m_position);
}
Three_Vector Frame::transform_out(const Three_Vector& r) const
{
return rotate_out(r) + m_position;
}
Three_Vector Frame::transform_velocity_in(const Three_Vector& v) const
{
return rotate_in(v - m_velocity);
}
Three_Vector Frame::transform_velocity_out(const Three_Vector& v) const
{
return rotate_out(v) + m_velocity;
}
Three_Vector Frame::rotate_in(const Three_Vector& vector) const
{
return m_orientation.transpose() * vector;
}
Three_Vector Frame::rotate_out(const Three_Vector& vector) const
{
return m_orientation * vector;
}
std::tuple<Three_Vector, double> Frame::axis_angle() const
{
// To convert the rotation matrix representation of the body's orientation to an
// axis-angle orientation, we transform first to a quaternion representation. The
// matrix-to-quaternion and quaternion-to-axis-angle transformations are described in
// the Matrix and Quaternion FAQ (matrixfaq.htm) in the doc directory.
// Make a local reference to the tranformation matrix for brevity.
const Three_Matrix& omat = m_orientation;
// Convert from matrix to quaternion
double trace = omat[0][0] + omat[1][1] + omat[2][2] + 1.0;
double s, w, x, y, z;
s = w = x = y = z = 0.0;
if (trace > 0.0)
{
s = 0.5 / sqrt(trace);
w = 0.25 / s;
x = (omat[2][1] - omat[1][2]) * s;
y = (omat[0][2] - omat[2][0]) * s;
z = (omat[1][0] - omat[0][1]) * s;
}
else
{
// Find the largest diagonal element and do the appropriate transformation.
double largest = omat[0][0];
int index = 0;
if (omat[1][1] > largest)
{
largest = omat[1][1];
index = 1;
}
if (omat[2][2] > largest)
{
largest = omat[2][2];
s = sqrt(1.0 - omat[0][0] - omat[1][1] + omat[2][2]) * 2.0;
w = (omat[0][1] + omat[1][0]) / s;
x = (omat[0][2] + omat[2][0]) / s;
y = (omat[1][2] + omat[2][1]) / s;
z = 0.5 / s;
}
else if (index == 0)
{
s = sqrt(1.0 + omat[0][0] - omat[1][1] - omat[2][2]) * 2.0;
w = (omat[1][2] + omat[2][1]) / s;
x = 0.5 / s;
y = (omat[0][1] + omat[1][0]) / s;
z = (omat[0][2] + omat[2][0]) / s;
}
else
{
assert(index == 1);
s = sqrt(1.0 - omat[0][0] + omat[1][1] - omat[2][2]) * 2.0;
w = (omat[0][2] + omat[2][0]) / s;
x = (omat[0][1] + omat[1][0]) / s;
y = 0.5 / s;
z = (omat[1][2] + omat[2][1]) / s;
}
}
// Convert from quaternion to angle-axis.
double angle = Vamos_Geometry::rad_to_deg(acos(w) * 2.0);
// The return value would be divided by sin (angle) to give a unit vector, but
// glRotate* () does not care about the length so we'll leave it as is.
return std::make_tuple(Three_Vector(x, y, z), angle);
}