1.0.0 API documentation
Loading...
Searching...
No Matches
matrix_common.hpp
Go to the documentation of this file.
1
12
13#pragma once
14
15#include "../detail/qualifier.hpp"
16#include "../detail/_fixes.hpp"
17
18#if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
19# pragma message("GLM: GLM_EXT_matrix_common extension included")
20#endif
21
22namespace glm
23{
26
27 template<length_t C, length_t R, typename T, typename U, qualifier Q>
28 GLM_FUNC_DECL mat<C, R, T, Q> mix(mat<C, R, T, Q> const& x, mat<C, R, T, Q> const& y, mat<C, R, U, Q> const& a);
29
30 template<length_t C, length_t R, typename T, typename U, qualifier Q>
31 GLM_FUNC_DECL mat<C, R, T, Q> mix(mat<C, R, T, Q> const& x, mat<C, R, T, Q> const& y, U a);
32
33 template <length_t C, length_t R, typename T, qualifier Q>
34 GLM_FUNC_DECL GLM_CONSTEXPR mat<C, R, T, Q> abs(mat<C, R, T, Q> const& x);
35
37}//namespace glm
38
39#include "matrix_common.inl"
GLM_FUNC_DECL GLM_CONSTEXPR genTypeT mix(genTypeT x, genTypeT y, genTypeU a)
If genTypeU is a floating scalar or vector: Returns x * (1.0 - a) + y * a, i.e., the linear blend of ...
GLM_FUNC_DECL GLM_CONSTEXPR genType abs(genType x)
Returns x if x >= 0; otherwise, it returns -x.