| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195 |
- /// @ref core
- /// @file glm/detail/type_mat4x4.hpp
- #pragma once
- #include "../fwd.hpp"
- #include "type_vec4.hpp"
- #include "type_mat.hpp"
- #include <limits>
- #include <cstddef>
- namespace glm
- {
- template<typename T, precision P>
- struct mat<4, 4, T, P>
- {
- typedef vec<4, T, P> col_type;
- typedef vec<4, T, P> row_type;
- typedef mat<4, 4, T, P> type;
- typedef mat<4, 4, T, P> transpose_type;
- typedef T value_type;
- private:
- col_type value[4];
- public:
- // -- Accesses --
- typedef length_t length_type;
- GLM_FUNC_DECL static length_type length(){return 4;}
- GLM_FUNC_DECL col_type & operator[](length_type i);
- GLM_FUNC_DECL col_type const & operator[](length_type i) const;
- // -- Constructors --
- GLM_FUNC_DECL mat() GLM_DEFAULT_CTOR;
- GLM_FUNC_DECL mat(mat<4, 4, T, P> const& m) GLM_DEFAULT;
- template<precision Q>
- GLM_FUNC_DECL mat(mat<4, 4, T, Q> const& m);
- GLM_FUNC_DECL explicit mat(ctor);
- GLM_FUNC_DECL explicit mat(T const & x);
- GLM_FUNC_DECL mat(
- T const & x0, T const & y0, T const & z0, T const & w0,
- T const & x1, T const & y1, T const & z1, T const & w1,
- T const & x2, T const & y2, T const & z2, T const & w2,
- T const & x3, T const & y3, T const & z3, T const & w3);
- GLM_FUNC_DECL mat(
- col_type const & v0,
- col_type const & v1,
- col_type const & v2,
- col_type const & v3);
- // -- Conversions --
- template<
- typename X1, typename Y1, typename Z1, typename W1,
- typename X2, typename Y2, typename Z2, typename W2,
- typename X3, typename Y3, typename Z3, typename W3,
- typename X4, typename Y4, typename Z4, typename W4>
- GLM_FUNC_DECL mat(
- X1 const & x1, Y1 const & y1, Z1 const & z1, W1 const & w1,
- X2 const & x2, Y2 const & y2, Z2 const & z2, W2 const & w2,
- X3 const & x3, Y3 const & y3, Z3 const & z3, W3 const & w3,
- X4 const & x4, Y4 const & y4, Z4 const & z4, W4 const & w4);
- template<typename V1, typename V2, typename V3, typename V4>
- GLM_FUNC_DECL mat(
- vec<4, V1, P> const & v1,
- vec<4, V2, P> const & v2,
- vec<4, V3, P> const & v3,
- vec<4, V4, P> const & v4);
- // -- Matrix conversions --
- template<typename U, precision Q>
- GLM_FUNC_DECL GLM_EXPLICIT mat(mat<4, 4, U, Q> const & m);
- GLM_FUNC_DECL GLM_EXPLICIT mat(mat<2, 2, T, P> const & x);
- GLM_FUNC_DECL GLM_EXPLICIT mat(mat<3, 3, T, P> const & x);
- GLM_FUNC_DECL GLM_EXPLICIT mat(mat<2, 3, T, P> const & x);
- GLM_FUNC_DECL GLM_EXPLICIT mat(mat<3, 2, T, P> const & x);
- GLM_FUNC_DECL GLM_EXPLICIT mat(mat<2, 4, T, P> const & x);
- GLM_FUNC_DECL GLM_EXPLICIT mat(mat<4, 2, T, P> const & x);
- GLM_FUNC_DECL GLM_EXPLICIT mat(mat<3, 4, T, P> const & x);
- GLM_FUNC_DECL GLM_EXPLICIT mat(mat<4, 3, T, P> const & x);
- // -- Unary arithmetic operators --
- GLM_FUNC_DECL mat<4, 4, T, P> & operator=(mat<4, 4, T, P> const & m) GLM_DEFAULT;
- template<typename U>
- GLM_FUNC_DECL mat<4, 4, T, P> & operator=(mat<4, 4, U, P> const & m);
- template<typename U>
- GLM_FUNC_DECL mat<4, 4, T, P> & operator+=(U s);
- template<typename U>
- GLM_FUNC_DECL mat<4, 4, T, P> & operator+=(mat<4, 4, U, P> const & m);
- template<typename U>
- GLM_FUNC_DECL mat<4, 4, T, P> & operator-=(U s);
- template<typename U>
- GLM_FUNC_DECL mat<4, 4, T, P> & operator-=(mat<4, 4, U, P> const & m);
- template<typename U>
- GLM_FUNC_DECL mat<4, 4, T, P> & operator*=(U s);
- template<typename U>
- GLM_FUNC_DECL mat<4, 4, T, P> & operator*=(mat<4, 4, U, P> const & m);
- template<typename U>
- GLM_FUNC_DECL mat<4, 4, T, P> & operator/=(U s);
- template<typename U>
- GLM_FUNC_DECL mat<4, 4, T, P> & operator/=(mat<4, 4, U, P> const & m);
- // -- Increment and decrement operators --
- GLM_FUNC_DECL mat<4, 4, T, P> & operator++();
- GLM_FUNC_DECL mat<4, 4, T, P> & operator--();
- GLM_FUNC_DECL mat<4, 4, T, P> operator++(int);
- GLM_FUNC_DECL mat<4, 4, T, P> operator--(int);
- };
- // -- Unary operators --
- template<typename T, precision P>
- GLM_FUNC_DECL mat<4, 4, T, P> operator+(mat<4, 4, T, P> const & m);
- template<typename T, precision P>
- GLM_FUNC_DECL mat<4, 4, T, P> operator-(mat<4, 4, T, P> const & m);
- // -- Binary operators --
- template<typename T, precision P>
- GLM_FUNC_DECL mat<4, 4, T, P> operator+(mat<4, 4, T, P> const & m, T const & s);
- template<typename T, precision P>
- GLM_FUNC_DECL mat<4, 4, T, P> operator+(T const & s, mat<4, 4, T, P> const & m);
- template<typename T, precision P>
- GLM_FUNC_DECL mat<4, 4, T, P> operator+(mat<4, 4, T, P> const & m1, mat<4, 4, T, P> const & m2);
- template<typename T, precision P>
- GLM_FUNC_DECL mat<4, 4, T, P> operator-(mat<4, 4, T, P> const & m, T const & s);
- template<typename T, precision P>
- GLM_FUNC_DECL mat<4, 4, T, P> operator-(T const & s, mat<4, 4, T, P> const & m);
- template<typename T, precision P>
- GLM_FUNC_DECL mat<4, 4, T, P> operator-(mat<4, 4, T, P> const & m1, mat<4, 4, T, P> const& m2);
- template<typename T, precision P>
- GLM_FUNC_DECL mat<4, 4, T, P> operator*(mat<4, 4, T, P> const & m, T const & s);
- template<typename T, precision P>
- GLM_FUNC_DECL mat<4, 4, T, P> operator*(T const & s, mat<4, 4, T, P> const & m);
- template<typename T, precision P>
- GLM_FUNC_DECL typename mat<4, 4, T, P>::col_type operator*(mat<4, 4, T, P> const & m, typename mat<4, 4, T, P>::row_type const & v);
- template<typename T, precision P>
- GLM_FUNC_DECL typename mat<4, 4, T, P>::row_type operator*(typename mat<4, 4, T, P>::col_type const & v, mat<4, 4, T, P> const & m);
- template<typename T, precision P>
- GLM_FUNC_DECL mat<2, 4, T, P> operator*(mat<4, 4, T, P> const & m1, mat<2, 4, T, P> const & m2);
- template<typename T, precision P>
- GLM_FUNC_DECL mat<3, 4, T, P> operator*(mat<4, 4, T, P> const & m1, mat<3, 4, T, P> const & m2);
- template<typename T, precision P>
- GLM_FUNC_DECL mat<4, 4, T, P> operator*(mat<4, 4, T, P> const & m1, mat<4, 4, T, P> const & m2);
- template<typename T, precision P>
- GLM_FUNC_DECL mat<4, 4, T, P> operator/(mat<4, 4, T, P> const & m, T const & s);
- template<typename T, precision P>
- GLM_FUNC_DECL mat<4, 4, T, P> operator/(T const & s, mat<4, 4, T, P> const & m);
- template<typename T, precision P>
- GLM_FUNC_DECL typename mat<4, 4, T, P>::col_type operator/(mat<4, 4, T, P> const & m, typename mat<4, 4, T, P>::row_type const & v);
- template<typename T, precision P>
- GLM_FUNC_DECL typename mat<4, 4, T, P>::row_type operator/(typename mat<4, 4, T, P>::col_type const & v, mat<4, 4, T, P> const & m);
- template<typename T, precision P>
- GLM_FUNC_DECL mat<4, 4, T, P> operator/(mat<4, 4, T, P> const & m1, mat<4, 4, T, P> const& m2);
- // -- Boolean operators --
- template<typename T, precision P>
- GLM_FUNC_DECL bool operator==(mat<4, 4, T, P> const & m1, mat<4, 4, T, P> const & m2);
- template<typename T, precision P>
- GLM_FUNC_DECL bool operator!=(mat<4, 4, T, P> const & m1, mat<4, 4, T, P> const & m2);
- }//namespace glm
- #ifndef GLM_EXTERNAL_TEMPLATE
- #include "type_mat4x4.inl"
- #endif//GLM_EXTERNAL_TEMPLATE
|