2012-05-23 17:04:46 +10:00
|
|
|
/*
|
|
|
|
* This file is part of libgim.
|
|
|
|
*
|
|
|
|
* libgim 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.
|
2014-08-18 22:14:31 +10:00
|
|
|
*
|
2012-05-23 17:04:46 +10:00
|
|
|
* libgim 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.
|
2014-08-18 22:14:31 +10:00
|
|
|
*
|
2012-05-23 17:04:46 +10:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with libgim. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
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-07-07 15:17:45 +10:00
|
|
|
void scale (T x, T y, T z);
|
|
|
|
void translate (T x, T y, T z);
|
2011-05-23 17:18:52 +10:00
|
|
|
|
2014-07-07 15:17:45 +10:00
|
|
|
matrix<T> inverse (void) const;
|
|
|
|
matrix<T>& invert (void);
|
2011-05-23 17:18:52 +10:00
|
|
|
|
2014-07-07 15:17:45 +10:00
|
|
|
matrix<T> operator* (const matrix<T>&) const;
|
2011-05-23 17:18:52 +10:00
|
|
|
|
2012-05-18 17:56:24 +10:00
|
|
|
point<3> to_local (const point<3> &p) const;
|
|
|
|
point<3> to_global (const point<3> &p) 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
|
|
|
|
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-07-07 15:17:45 +10:00
|
|
|
template <typename T>
|
|
|
|
std::ostream& operator<< (std::ostream&, const util::matrix<T>&);
|
2011-05-23 17:18:52 +10:00
|
|
|
|
|
|
|
#endif
|