2012-05-23 17:04:46 +10:00
|
|
|
/*
|
2015-04-13 18:05:28 +10:00
|
|
|
* 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
|
2012-05-23 17:04:46 +10:00
|
|
|
*
|
2015-04-13 18:05:28 +10:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2014-08-18 22:14:31 +10:00
|
|
|
*
|
2015-04-13 18:05:28 +10:00
|
|
|
* 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.
|
2012-05-23 17:04:46 +10:00
|
|
|
*
|
2015-10-30 23:40:13 +11:00
|
|
|
* Copyright 2011-2015 Danny Robson <danny@nerdcruft.net>
|
2012-05-23 17:04:46 +10:00
|
|
|
*/
|
2011-05-23 17:18:52 +10:00
|
|
|
|
|
|
|
#ifndef __UTIL_MATRIX_HPP
|
|
|
|
#define __UTIL_MATRIX_HPP
|
|
|
|
|
2011-10-18 21:45:55 +11:00
|
|
|
#include "point.hpp"
|
2015-12-02 10:03:25 +11:00
|
|
|
#include "range.hpp"
|
2011-05-23 17:18:52 +10:00
|
|
|
|
2016-03-17 18:10:27 +11:00
|
|
|
#include <ostream>
|
2017-02-21 21:19:28 +11:00
|
|
|
#include <cstdlib>
|
2011-05-23 17:18:52 +10:00
|
|
|
|
2011-10-18 21:45:55 +11:00
|
|
|
namespace util {
|
2017-02-21 21:19:28 +11:00
|
|
|
template <size_t Rows, size_t Cols, typename T>
|
2011-10-18 21:45:55 +11:00
|
|
|
struct matrix {
|
2017-02-21 21:19:28 +11:00
|
|
|
static constexpr auto rows = Rows;
|
|
|
|
static constexpr auto cols = Cols;
|
2011-05-23 17:18:52 +10:00
|
|
|
|
2017-02-21 21:19:28 +11:00
|
|
|
T values[Rows][Cols];
|
2014-08-19 20:45:28 +10:00
|
|
|
|
2017-10-10 14:08:41 +11:00
|
|
|
///////////////////////////////////////////////////////////////////////
|
2016-08-15 17:33:53 +10:00
|
|
|
// index operators return a pointer into the data array so that
|
|
|
|
// multidimensional array syntax can be used transparently on this
|
|
|
|
// type.
|
2017-10-10 14:08:41 +11:00
|
|
|
constexpr T*
|
|
|
|
operator[] (size_t idx) noexcept
|
|
|
|
{
|
|
|
|
return this->values[idx];
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------
|
|
|
|
constexpr const T*
|
|
|
|
operator[] (size_t idx) const noexcept
|
|
|
|
{
|
|
|
|
return this->values[idx];
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------
|
|
|
|
constexpr T*
|
|
|
|
data (void) noexcept
|
|
|
|
{
|
|
|
|
return begin ();
|
|
|
|
}
|
2015-11-04 23:23:46 +11:00
|
|
|
|
2017-10-10 14:08:41 +11:00
|
|
|
//---------------------------------------------------------------------
|
|
|
|
constexpr const T*
|
|
|
|
data (void) const noexcept
|
|
|
|
{
|
|
|
|
return begin ();
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------
|
|
|
|
constexpr const T*
|
|
|
|
begin (void) const noexcept
|
|
|
|
{
|
|
|
|
return &(*this)[0][0];
|
|
|
|
}
|
2017-01-05 19:49:43 +11:00
|
|
|
|
2017-10-10 14:08:41 +11:00
|
|
|
//---------------------------------------------------------------------
|
|
|
|
constexpr const T*
|
|
|
|
end (void) const noexcept
|
|
|
|
{
|
|
|
|
return &(*this)[Rows][0];
|
|
|
|
}
|
2016-08-15 17:33:53 +10:00
|
|
|
|
2017-10-10 14:08:41 +11:00
|
|
|
//---------------------------------------------------------------------
|
|
|
|
constexpr T*
|
|
|
|
begin (void) noexcept
|
|
|
|
{
|
|
|
|
return &(*this)[0][0];
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------
|
|
|
|
constexpr T*
|
|
|
|
end (void) noexcept
|
|
|
|
{
|
|
|
|
return &(*this)[Rows][0];
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------
|
|
|
|
constexpr auto
|
|
|
|
cbegin (void) const noexcept
|
|
|
|
{
|
|
|
|
return begin ();
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------
|
|
|
|
constexpr auto
|
|
|
|
cend (void) const noexcept
|
|
|
|
{
|
|
|
|
return end ();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////
|
2015-11-04 23:23:46 +11:00
|
|
|
T determinant (void) const;
|
|
|
|
|
2017-08-22 15:06:16 +10:00
|
|
|
matrix inverse (void) const;
|
|
|
|
|
|
|
|
matrix
|
|
|
|
inverse_affine (void) const
|
|
|
|
{
|
|
|
|
// TODO: ensure we have specialisations for typical dimensions
|
|
|
|
return inverse ();
|
|
|
|
}
|
2014-08-19 20:45:28 +10:00
|
|
|
|
2017-10-10 14:08:41 +11:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////
|
2017-02-21 21:19:28 +11:00
|
|
|
vector<Rows,T> operator* (const vector<Rows,T>&) const;
|
|
|
|
point<Rows,T> operator* (const point<Rows,T> &) const;
|
2014-08-19 20:46:00 +10:00
|
|
|
|
2011-10-18 21:45:55 +11:00
|
|
|
bool is_affine (void) const;
|
2011-05-23 17:18:52 +10:00
|
|
|
|
2015-02-19 13:24:37 +11:00
|
|
|
template <typename U>
|
2017-02-21 21:19:28 +11:00
|
|
|
matrix<Rows,Cols,U>
|
2017-10-10 14:08:41 +11:00
|
|
|
cast (void) const
|
|
|
|
{
|
|
|
|
util::matrix<Rows,Cols,T> out;
|
|
|
|
std::copy (cbegin (), cend (), std::begin (out));
|
|
|
|
return out;
|
|
|
|
}
|
2015-02-19 13:24:37 +11:00
|
|
|
|
2014-12-15 13:44:33 +11:00
|
|
|
// Perspective matrices
|
2017-02-21 21:19:28 +11:00
|
|
|
static matrix<4,4,T> ortho (T left, T right, T bottom, T top, T near, T far);
|
|
|
|
static matrix<4,4,T> ortho2D (T left, T right, T bottom, T top);
|
|
|
|
static matrix<4,4,T> perspective (T fov, T aspect, range<T> Z);
|
|
|
|
static matrix<4,4,T> look_at (point<3,T> eye, point<3,T> target, vector<3,T> up);
|
2014-12-15 13:44:33 +11:00
|
|
|
|
2014-12-15 13:45:17 +11:00
|
|
|
// Affine matrices
|
2017-02-21 21:19:28 +11:00
|
|
|
static matrix<4,4,T> translation (util::vector<2,T>);
|
|
|
|
static matrix<4,4,T> translation (util::vector<3,T>);
|
|
|
|
static matrix<4,4,T> scale (util::vector<3,T>);
|
|
|
|
static matrix<4,4,T> scale (T);
|
|
|
|
static matrix<4,4,T> rotation (T angle, util::vector<3,T> about);
|
2014-12-15 13:45:17 +11:00
|
|
|
|
2014-12-15 13:44:33 +11:00
|
|
|
// Constant matrices
|
2016-10-17 22:34:53 +11:00
|
|
|
static constexpr matrix identity ();
|
|
|
|
static constexpr matrix zeroes ();
|
2011-05-23 17:18:52 +10:00
|
|
|
};
|
2014-08-19 20:46:15 +10:00
|
|
|
|
2015-11-04 23:23:46 +11:00
|
|
|
|
2016-09-14 17:53:34 +10:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
// Convert an affine rotation matrix to euler angles.
|
|
|
|
//
|
|
|
|
// Results are undefined if the matrix is not purely a rotation matrix,
|
|
|
|
// or if the dimension is not 3x3 or 4x4.
|
2017-02-21 21:19:28 +11:00
|
|
|
template <size_t Rows, size_t Cols, typename T>
|
2016-09-14 17:53:34 +10:00
|
|
|
vector<3,T>
|
2017-02-21 21:19:28 +11:00
|
|
|
to_euler (const matrix<Rows, Cols, T>&);
|
2016-09-14 17:53:34 +10:00
|
|
|
|
|
|
|
|
2016-08-15 20:32:24 +10:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
// logical operations
|
2017-02-21 21:19:28 +11:00
|
|
|
template <size_t Rows, size_t Cols, typename T>
|
2016-08-15 20:32:24 +10:00
|
|
|
constexpr
|
|
|
|
bool
|
2017-02-21 21:19:28 +11:00
|
|
|
operator== (const matrix<Rows,Cols,T>&, const matrix<Rows,Cols,T>&);
|
2016-08-15 20:32:24 +10:00
|
|
|
|
|
|
|
|
2017-02-21 21:19:28 +11:00
|
|
|
template <size_t Rows, size_t Cols, typename T>
|
2016-08-15 20:32:24 +10:00
|
|
|
constexpr
|
|
|
|
bool
|
2017-02-21 21:19:28 +11:00
|
|
|
operator!= (const matrix<Rows,Cols,T>&, const matrix<Rows,Cols,T>&);
|
2016-08-15 20:32:24 +10:00
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
// element operations
|
2017-02-21 21:19:28 +11:00
|
|
|
template <size_t Rows, size_t Cols, typename T>
|
2016-08-15 18:53:52 +10:00
|
|
|
constexpr
|
2017-02-21 21:19:28 +11:00
|
|
|
matrix<Rows,Cols,T>
|
|
|
|
operator+ (const matrix<Rows,Cols,T>&, const matrix<Rows,Cols,T>&);
|
2016-08-15 18:53:52 +10:00
|
|
|
|
2017-02-21 21:19:28 +11:00
|
|
|
template <size_t Rows, size_t Cols, typename T>
|
2016-08-15 18:53:52 +10:00
|
|
|
constexpr
|
2017-02-21 21:19:28 +11:00
|
|
|
matrix<Rows,Cols,T>
|
|
|
|
operator- (const matrix<Rows,Cols,T>&, const matrix<Rows,Cols,T>&);
|
2016-08-15 18:53:52 +10:00
|
|
|
|
2016-08-15 20:32:24 +10:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
// scalar operations
|
2017-02-21 21:19:28 +11:00
|
|
|
template <size_t R, size_t C, typename T> constexpr matrix<R,C,T> operator* (const matrix<R,C,T>&, T);
|
|
|
|
template <size_t R, size_t C, typename T> constexpr matrix<R,C,T> operator/ (const matrix<R,C,T>&, T);
|
|
|
|
template <size_t R, size_t C, typename T> constexpr matrix<R,C,T> operator+ (const matrix<R,C,T>&, T);
|
|
|
|
template <size_t R, size_t C, typename T> constexpr matrix<R,C,T> operator- (const matrix<R,C,T>&, T);
|
|
|
|
|
|
|
|
template <size_t R, size_t C, typename T> constexpr matrix<R,C,T> operator* (T, const matrix<R,C,T>&);
|
|
|
|
template <size_t R, size_t C, typename T> constexpr matrix<R,C,T> operator/ (T, const matrix<R,C,T>&);
|
|
|
|
template <size_t R, size_t C, typename T> constexpr matrix<R,C,T> operator+ (T, const matrix<R,C,T>&);
|
|
|
|
template <size_t R, size_t C, typename T> constexpr matrix<R,C,T> operator- (T, const matrix<R,C,T>&);
|
2016-08-15 20:32:24 +10:00
|
|
|
|
2017-02-21 21:19:28 +11:00
|
|
|
template <size_t R, size_t C, typename T> constexpr matrix<R,C,T>& operator*= (matrix<R,C,T>&, T);
|
|
|
|
template <size_t R, size_t C, typename T> constexpr matrix<R,C,T>& operator/= (matrix<R,C,T>&, T);
|
|
|
|
template <size_t R, size_t C, typename T> constexpr matrix<R,C,T>& operator+= (matrix<R,C,T>&, T);
|
|
|
|
template <size_t R, size_t C, typename T> constexpr matrix<R,C,T>& operator-= (matrix<R,C,T>&, T);
|
2016-08-15 20:32:24 +10:00
|
|
|
|
2017-02-21 21:19:28 +11:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
// matrix operations
|
|
|
|
template <
|
|
|
|
size_t R1, size_t C1,
|
|
|
|
size_t R2, size_t C2,
|
|
|
|
typename T
|
2017-03-06 21:36:04 +11:00
|
|
|
>
|
|
|
|
constexpr
|
|
|
|
matrix<R1,C2,T>
|
|
|
|
operator* (const matrix<R1,C1,T>&, const matrix<R2,C2,T>&);
|
|
|
|
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
template <
|
|
|
|
size_t R1, size_t C1,
|
|
|
|
size_t R2, size_t C2,
|
|
|
|
typename T
|
|
|
|
>
|
|
|
|
constexpr
|
|
|
|
matrix<R1,C2,T>&
|
|
|
|
operator*= (matrix<R1,C1,T> &a, const matrix<R2,C2,T> &b)
|
|
|
|
{ return a = a * b; };
|
2016-08-15 20:32:24 +10:00
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2017-02-21 21:19:28 +11:00
|
|
|
template <size_t Rows, size_t Cols, typename T>
|
2016-08-15 18:53:52 +10:00
|
|
|
T
|
2017-02-21 21:19:28 +11:00
|
|
|
determinant (const matrix<Rows,Cols,T>&);
|
2015-11-04 23:23:46 +11:00
|
|
|
|
2017-02-21 21:19:28 +11:00
|
|
|
template <size_t Rows, size_t Cols, typename T>
|
|
|
|
matrix<Rows,Cols,T>
|
|
|
|
inverse (const matrix<Rows,Cols,T>&);
|
2015-11-04 23:23:46 +11:00
|
|
|
|
2017-02-21 21:19:28 +11:00
|
|
|
template <size_t Rows, size_t Cols, typename T>
|
|
|
|
matrix<Cols,Rows,T>
|
|
|
|
transposed (const matrix<Rows,Cols,T>&);
|
2016-09-14 17:46:03 +10:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2017-02-21 21:19:28 +11:00
|
|
|
template <size_t Rows, size_t Cols, typename T>
|
|
|
|
matrix<Rows,Cols,T>
|
|
|
|
abs (const matrix<Rows,Cols,T>&);
|
2016-08-15 18:44:27 +10:00
|
|
|
|
2017-02-21 21:19:28 +11:00
|
|
|
template <size_t Rows, size_t Cols, typename T>
|
2016-08-15 18:45:25 +10:00
|
|
|
constexpr
|
|
|
|
T
|
2017-02-21 21:19:28 +11:00
|
|
|
sum (const matrix<Rows,Cols,T>&);
|
2016-08-15 18:45:25 +10:00
|
|
|
|
2016-09-14 17:53:34 +10:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2017-02-21 21:19:28 +11:00
|
|
|
template <typename T> using matrix3 = matrix<3,3,T>;
|
|
|
|
template <typename T> using matrix4 = matrix<4,4,T>;
|
2015-07-13 16:27:54 +10:00
|
|
|
|
2017-02-21 21:19:28 +11:00
|
|
|
template <size_t Rows, size_t Cols> using matrixf = matrix<Rows,Cols,float>;
|
|
|
|
template <size_t Rows, size_t Cols> using matrixd = matrix<Rows,Cols,double>;
|
2014-08-19 20:46:15 +10:00
|
|
|
|
2017-02-21 21:19:28 +11:00
|
|
|
typedef matrix<2,2,float> matrix2f;
|
|
|
|
typedef matrix<2,2,double> matrix2d;
|
2015-11-04 23:23:46 +11:00
|
|
|
|
2017-02-21 21:19:28 +11:00
|
|
|
typedef matrix<3,3,float> matrix3f;
|
|
|
|
typedef matrix<3,3,double> matrix3d;
|
2015-11-04 23:23:46 +11:00
|
|
|
|
2017-02-21 21:19:28 +11:00
|
|
|
typedef matrix<4,4,float> matrix4f;
|
|
|
|
typedef matrix<4,4,double> matrix4d;
|
2015-10-30 23:40:13 +11:00
|
|
|
|
2016-09-14 17:53:34 +10:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2017-02-21 21:19:28 +11:00
|
|
|
template <size_t Rows, size_t Cols, typename T>
|
|
|
|
std::ostream& operator<< (std::ostream&, const matrix<Rows,Cols,T>&);
|
2011-05-23 17:18:52 +10:00
|
|
|
}
|
|
|
|
|
2015-02-19 13:24:37 +11:00
|
|
|
#include "matrix.ipp"
|
2011-05-23 17:18:52 +10:00
|
|
|
|
|
|
|
#endif
|