/* * 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. * * Copyright 2011-2014 Danny Robson */ #ifndef __UTIL_MATRIX_HPP #define __UTIL_MATRIX_HPP #include "point.hpp" #include namespace util { template struct matrix { T values[4][4]; static const size_t rows = 4; static const size_t cols = 4; matrix& transpose (void); matrix transposed (void) const; matrix inverse (void) const; matrix& invert (void); matrix inverse_affine (void) const; matrix& invert_affine (void); T det (void) const; matrix operator* (const matrix&) const; matrix& operator*=(const matrix&); vector<4,T> operator* (const vector<4,T>&) const; point<4,T> operator* (const point<4,T> &) const; matrix operator* (T) const; matrix& operator*= (T); matrix operator/ (T) const; matrix& operator/= (T); bool operator== (const matrix&) const; bool is_affine (void) const; template matrix cast (void) const; // Perspective matrices static matrix ortho (T left, T right, T bottom, T top, T near, T far); static matrix ortho2D (T left, T right, T bottom, T top); static matrix perspective (T fov, T aspect, T near, T far); static matrix look_at (point<3,T> eye, point<3,T> centre, vector<3,T> up); // Affine matrices static matrix translate (util::vector<2,T>); static matrix translate (util::vector<3,T>); static matrix scale (util::vector<3,T>); static matrix scale (T); static matrix rotate (T angle, util::vector<3,T> about); // Constant matrices static const matrix IDENTITY; static const matrix ZEROES; }; typedef matrix matrixf; typedef matrix matrix4f; template std::ostream& operator<< (std::ostream&, const matrix&); } #include "matrix.ipp" #endif