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
|
|
|
*
|
2014-07-07 15:17:45 +10:00
|
|
|
* Copyright 2011-2014 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"
|
2011-05-23 17:18:52 +10:00
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
2011-10-18 21:45:55 +11:00
|
|
|
namespace util {
|
2014-07-07 15:17:45 +10:00
|
|
|
template <typename T>
|
2011-10-18 21:45:55 +11:00
|
|
|
struct matrix {
|
2014-07-07 15:17:45 +10:00
|
|
|
T values[4][4];
|
2011-05-23 17:18:52 +10:00
|
|
|
|
2014-08-19 20:45:28 +10:00
|
|
|
static const size_t rows = 4;
|
|
|
|
static const size_t cols = 4;
|
|
|
|
|
2014-12-15 13:42:44 +11:00
|
|
|
matrix& transpose (void);
|
|
|
|
matrix transposed (void) const;
|
|
|
|
|
2014-07-07 15:17:45 +10:00
|
|
|
matrix<T> inverse (void) const;
|
|
|
|
matrix<T>& invert (void);
|
2014-08-19 20:45:28 +10:00
|
|
|
matrix<T> inverse_affine (void) const;
|
|
|
|
matrix<T>& invert_affine (void);
|
|
|
|
|
|
|
|
T det (void) const;
|
2011-05-23 17:18:52 +10:00
|
|
|
|
2014-12-15 20:10:56 +11:00
|
|
|
matrix<T> operator* (const matrix<T>&) const;
|
2015-01-13 18:38:12 +11:00
|
|
|
matrix<T>& operator*=(const matrix<T>&);
|
|
|
|
|
2015-07-21 01:40:00 +10:00
|
|
|
vector<3,T> operator* (vector<3,T>) const;
|
|
|
|
point<3,T> operator* (point<3,T>) const;
|
|
|
|
|
2014-12-15 20:10:56 +11:00
|
|
|
vector<4,T> operator* (const vector<4,T>&) const;
|
2015-01-13 18:37:53 +11:00
|
|
|
point<4,T> operator* (const point<4,T> &) const;
|
2014-08-19 20:46:00 +10:00
|
|
|
|
2015-02-19 13:23:33 +11:00
|
|
|
matrix<T> operator* (T) const;
|
2014-12-15 13:43:53 +11:00
|
|
|
matrix<T>& operator*= (T);
|
|
|
|
matrix<T> operator/ (T) const;
|
2014-08-19 20:46:00 +10:00
|
|
|
matrix<T>& operator/= (T);
|
|
|
|
|
|
|
|
bool operator== (const matrix<T>&) const;
|
2011-05-23 17:18:52 +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>
|
|
|
|
matrix<U> cast (void) const;
|
|
|
|
|
2014-12-15 13:44:33 +11:00
|
|
|
// Perspective matrices
|
|
|
|
static matrix<T> ortho (T left, T right, T bottom, T top, T near, T far);
|
|
|
|
static matrix<T> ortho2D (T left, T right, T bottom, T top);
|
|
|
|
static matrix<T> perspective (T fov, T aspect, T near, T far);
|
2014-12-15 20:10:56 +11:00
|
|
|
static matrix<T> look_at (point<3,T> eye, point<3,T> centre, vector<3,T> up);
|
2014-12-15 13:44:33 +11:00
|
|
|
|
2014-12-15 13:45:17 +11:00
|
|
|
// Affine matrices
|
2015-04-02 14:58:02 +11:00
|
|
|
static matrix<T> translate (util::vector<2,T>);
|
2014-12-15 20:10:56 +11:00
|
|
|
static matrix<T> translate (util::vector<3,T>);
|
|
|
|
static matrix<T> scale (util::vector<3,T>);
|
2015-01-19 19:12:44 +11:00
|
|
|
static matrix<T> scale (T);
|
2015-01-15 14:05:17 +11:00
|
|
|
static matrix<T> rotate (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
|
2014-07-07 15:17:45 +10:00
|
|
|
static const matrix<T> IDENTITY;
|
|
|
|
static const matrix<T> ZEROES;
|
2011-05-23 17:18:52 +10:00
|
|
|
};
|
2014-08-19 20:46:15 +10:00
|
|
|
|
2015-07-13 16:27:54 +10:00
|
|
|
template <typename T> using matrix4 = matrix<T>;
|
|
|
|
|
2014-08-19 20:46:15 +10:00
|
|
|
typedef matrix<float> matrixf;
|
2015-01-13 18:38:48 +11:00
|
|
|
typedef matrix<float> matrix4f;
|
2014-08-19 20:46:15 +10:00
|
|
|
|
|
|
|
template <typename T>
|
2014-12-15 20:10:56 +11:00
|
|
|
std::ostream& operator<< (std::ostream&, const matrix<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
|