@Article{kerbl3Dgaussians,
+ author = {Kerbl, Bernhard and Kopanas, Georgios and Leimk{\"u}hler, Thomas and Drettakis, George},
+ title = {3D Gaussian Splatting for Real-Time Radiance Field Rendering},
+ journal = {ACM Transactions on Graphics},
+ number = {4},
+ volume = {42},
+ month = {July},
+ year = {2023},
+ url = {https://repo-sam.inria.fr/fungraph/3d-gaussian-splatting/}
+}
+ ![]() |
+
+ 0.9.9 API documentation
+
+ |
+
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
Go to the source code of this file.
++Functions | |
template<typename genType > | |
GLM_FUNC_DECL GLM_CONSTEXPR genType | abs (genType x) |
Returns x if x >= 0; otherwise, it returns -x. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, T, Q > | abs (vec< L, T, Q > const &x) |
Returns x if x >= 0; otherwise, it returns -x. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, T, Q > | ceil (vec< L, T, Q > const &x) |
Returns a value equal to the nearest integer that is greater than or equal to x. More... | |
template<typename genType > | |
GLM_FUNC_DECL GLM_CONSTEXPR genType | clamp (genType x, genType minVal, genType maxVal) |
Returns min(max(x, minVal), maxVal) for each component in x using the floating-point values minVal and maxVal. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, T, Q > | clamp (vec< L, T, Q > const &x, T minVal, T maxVal) |
Returns min(max(x, minVal), maxVal) for each component in x using the floating-point values minVal and maxVal. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, T, Q > | clamp (vec< L, T, Q > const &x, vec< L, T, Q > const &minVal, vec< L, T, Q > const &maxVal) |
Returns min(max(x, minVal), maxVal) for each component in x using the floating-point values minVal and maxVal. More... | |
GLM_FUNC_DECL int | floatBitsToInt (float const &v) |
Returns a signed integer value representing the encoding of a floating-point value. More... | |
template<length_t L, qualifier Q> | |
GLM_FUNC_DECL vec< L, int, Q > | floatBitsToInt (vec< L, float, Q > const &v) |
Returns a signed integer value representing the encoding of a floating-point value. More... | |
GLM_FUNC_DECL uint | floatBitsToUint (float const &v) |
Returns a unsigned integer value representing the encoding of a floating-point value. More... | |
template<length_t L, qualifier Q> | |
GLM_FUNC_DECL vec< L, uint, Q > | floatBitsToUint (vec< L, float, Q > const &v) |
Returns a unsigned integer value representing the encoding of a floating-point value. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, T, Q > | floor (vec< L, T, Q > const &x) |
Returns a value equal to the nearest integer that is less then or equal to x. More... | |
template<typename genType > | |
GLM_FUNC_DECL genType | fma (genType const &a, genType const &b, genType const &c) |
Computes and returns a * b + c. More... | |
template<typename genType > | |
GLM_FUNC_DECL genType | fract (genType x) |
Return x - floor(x). More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, T, Q > | fract (vec< L, T, Q > const &x) |
Return x - floor(x). More... | |
template<typename genType > | |
GLM_FUNC_DECL genType | frexp (genType x, int &exp) |
Splits x into a floating-point significand in the range [0.5, 1.0) and an integral exponent of two, such that: x = significand * exp(2, exponent) More... | |
GLM_FUNC_DECL float | intBitsToFloat (int const &v) |
Returns a floating-point value corresponding to a signed integer encoding of a floating-point value. More... | |
template<length_t L, qualifier Q> | |
GLM_FUNC_DECL vec< L, float, Q > | intBitsToFloat (vec< L, int, Q > const &v) |
Returns a floating-point value corresponding to a signed integer encoding of a floating-point value. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, bool, Q > | isinf (vec< L, T, Q > const &x) |
Returns true if x holds a positive infinity or negative infinity representation in the underlying implementation's set of floating point representations. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, bool, Q > | isnan (vec< L, T, Q > const &x) |
Returns true if x holds a NaN (not a number) representation in the underlying implementation's set of floating point representations. More... | |
template<typename genType > | |
GLM_FUNC_DECL genType | ldexp (genType const &x, int const &exp) |
Builds a floating-point number from x and the corresponding integral exponent of two in exp, returning: significand * exp(2, exponent) More... | |
template<typename genType > | |
GLM_FUNC_DECL GLM_CONSTEXPR genType | max (genType x, genType y) |
Returns y if x < y; otherwise, it returns x. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, T, Q > | max (vec< L, T, Q > const &x, T y) |
Returns y if x < y; otherwise, it returns x. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, T, Q > | max (vec< L, T, Q > const &x, vec< L, T, Q > const &y) |
Returns y if x < y; otherwise, it returns x. More... | |
template<typename genType > | |
GLM_FUNC_DECL GLM_CONSTEXPR genType | min (genType x, genType y) |
Returns y if y < x; otherwise, it returns x. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, T, Q > | min (vec< L, T, Q > const &x, T y) |
Returns y if y < x; otherwise, it returns x. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, T, Q > | min (vec< L, T, Q > const &x, vec< L, T, Q > const &y) |
Returns y if y < x; otherwise, it returns x. More... | |
template<typename genTypeT , typename genTypeU > | |
GLM_FUNC_DECL 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 x and y using the floating-point value a. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, T, Q > | mod (vec< L, T, Q > const &x, vec< L, T, Q > const &y) |
Modulus. More... | |
template<typename genType > | |
GLM_FUNC_DECL genType | modf (genType x, genType &i) |
Returns the fractional part of x and sets i to the integer part (as a whole number floating point value). More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, T, Q > | round (vec< L, T, Q > const &x) |
Returns a value equal to the nearest integer to x. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, T, Q > | roundEven (vec< L, T, Q > const &x) |
Returns a value equal to the nearest integer to x. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, T, Q > | sign (vec< L, T, Q > const &x) |
Returns 1.0 if x > 0, 0.0 if x == 0, or -1.0 if x < 0. More... | |
template<typename genType > | |
GLM_FUNC_DECL genType | smoothstep (genType edge0, genType edge1, genType x) |
Returns 0.0 if x <= edge0 and 1.0 if x >= edge1 and performs smooth Hermite interpolation between 0 and 1 when edge0 < x < edge1. More... | |
template<typename genType > | |
GLM_FUNC_DECL genType | step (genType edge, genType x) |
Returns 0.0 if x < edge, otherwise it returns 1.0 for each component of a genType. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, T, Q > | step (T edge, vec< L, T, Q > const &x) |
Returns 0.0 if x < edge, otherwise it returns 1.0. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, T, Q > | step (vec< L, T, Q > const &edge, vec< L, T, Q > const &x) |
Returns 0.0 if x < edge, otherwise it returns 1.0. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, T, Q > | trunc (vec< L, T, Q > const &x) |
Returns a value equal to the nearest integer to x whose absolute value is not larger than the absolute value of x. More... | |
GLM_FUNC_DECL float | uintBitsToFloat (uint const &v) |
Returns a floating-point value corresponding to a unsigned integer encoding of a floating-point value. More... | |
template<length_t L, qualifier Q> | |
GLM_FUNC_DECL vec< L, float, Q > | uintBitsToFloat (vec< L, uint, Q > const &v) |
Returns a floating-point value corresponding to a unsigned integer encoding of a floating-point value. More... | |
Definition in file common.hpp.
+![]() |
+
+ 0.9.9 API documentation
+
+ |
+
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
Go to the source code of this file.
++Functions | |
template<typename genType > | |
GLM_FUNC_DECL genType | backEaseIn (genType const &a) |
template<typename genType > | |
GLM_FUNC_DECL genType | backEaseIn (genType const &a, genType const &o) |
template<typename genType > | |
GLM_FUNC_DECL genType | backEaseInOut (genType const &a) |
template<typename genType > | |
GLM_FUNC_DECL genType | backEaseInOut (genType const &a, genType const &o) |
template<typename genType > | |
GLM_FUNC_DECL genType | backEaseOut (genType const &a) |
template<typename genType > | |
GLM_FUNC_DECL genType | backEaseOut (genType const &a, genType const &o) |
template<typename genType > | |
GLM_FUNC_DECL genType | bounceEaseIn (genType const &a) |
template<typename genType > | |
GLM_FUNC_DECL genType | bounceEaseInOut (genType const &a) |
template<typename genType > | |
GLM_FUNC_DECL genType | bounceEaseOut (genType const &a) |
template<typename genType > | |
GLM_FUNC_DECL genType | circularEaseIn (genType const &a) |
Modelled after shifted quadrant IV of unit circle. More... | |
template<typename genType > | |
GLM_FUNC_DECL genType | circularEaseInOut (genType const &a) |
Modelled after the piecewise circular function y = (1/2)(1 - sqrt(1 - 4x^2)) ; [0, 0.5) y = (1/2)(sqrt(-(2x - 3)*(2x - 1)) + 1) ; [0.5, 1]. More... | |
template<typename genType > | |
GLM_FUNC_DECL genType | circularEaseOut (genType const &a) |
Modelled after shifted quadrant II of unit circle. More... | |
+template<typename genType > | |
GLM_FUNC_DECL genType | cubicEaseIn (genType const &a) |
Modelled after the cubic y = x^3. | |
template<typename genType > | |
GLM_FUNC_DECL genType | cubicEaseInOut (genType const &a) |
Modelled after the piecewise cubic y = (1/2)((2x)^3) ; [0, 0.5) y = (1/2)((2x-2)^3 + 2) ; [0.5, 1]. More... | |
template<typename genType > | |
GLM_FUNC_DECL genType | cubicEaseOut (genType const &a) |
Modelled after the cubic y = (x - 1)^3 + 1. More... | |
template<typename genType > | |
GLM_FUNC_DECL genType | elasticEaseIn (genType const &a) |
Modelled after the damped sine wave y = sin(13pi/2*x)*pow(2, 10 * (x - 1)) More... | |
template<typename genType > | |
GLM_FUNC_DECL genType | elasticEaseInOut (genType const &a) |
Modelled after the piecewise exponentially-damped sine wave: y = (1/2)*sin(13pi/2*(2*x))*pow(2, 10 * ((2*x) - 1)) ; [0,0.5) y = (1/2)*(sin(-13pi/2*((2x-1)+1))*pow(2,-10(2*x-1)) + 2) ; [0.5, 1]. More... | |
template<typename genType > | |
GLM_FUNC_DECL genType | elasticEaseOut (genType const &a) |
Modelled after the damped sine wave y = sin(-13pi/2*(x + 1))*pow(2, -10x) + 1. More... | |
template<typename genType > | |
GLM_FUNC_DECL genType | exponentialEaseIn (genType const &a) |
Modelled after the exponential function y = 2^(10(x - 1)) More... | |
template<typename genType > | |
GLM_FUNC_DECL genType | exponentialEaseInOut (genType const &a) |
Modelled after the piecewise exponential y = (1/2)2^(10(2x - 1)) ; [0,0.5) y = -(1/2)*2^(-10(2x - 1))) + 1 ; [0.5,1]. More... | |
template<typename genType > | |
GLM_FUNC_DECL genType | exponentialEaseOut (genType const &a) |
Modelled after the exponential function y = -2^(-10x) + 1. More... | |
template<typename genType > | |
GLM_FUNC_DECL genType | linearInterpolation (genType const &a) |
Modelled after the line y = x. More... | |
template<typename genType > | |
GLM_FUNC_DECL genType | quadraticEaseIn (genType const &a) |
Modelled after the parabola y = x^2. More... | |
template<typename genType > | |
GLM_FUNC_DECL genType | quadraticEaseInOut (genType const &a) |
Modelled after the piecewise quadratic y = (1/2)((2x)^2) ; [0, 0.5) y = -(1/2)((2x-1)*(2x-3) - 1) ; [0.5, 1]. More... | |
template<typename genType > | |
GLM_FUNC_DECL genType | quadraticEaseOut (genType const &a) |
Modelled after the parabola y = -x^2 + 2x. More... | |
template<typename genType > | |
GLM_FUNC_DECL genType | quarticEaseIn (genType const &a) |
Modelled after the quartic x^4. More... | |
template<typename genType > | |
GLM_FUNC_DECL genType | quarticEaseInOut (genType const &a) |
Modelled after the piecewise quartic y = (1/2)((2x)^4) ; [0, 0.5) y = -(1/2)((2x-2)^4 - 2) ; [0.5, 1]. More... | |
template<typename genType > | |
GLM_FUNC_DECL genType | quarticEaseOut (genType const &a) |
Modelled after the quartic y = 1 - (x - 1)^4. More... | |
template<typename genType > | |
GLM_FUNC_DECL genType | quinticEaseIn (genType const &a) |
Modelled after the quintic y = x^5. More... | |
template<typename genType > | |
GLM_FUNC_DECL genType | quinticEaseInOut (genType const &a) |
Modelled after the piecewise quintic y = (1/2)((2x)^5) ; [0, 0.5) y = (1/2)((2x-2)^5 + 2) ; [0.5, 1]. More... | |
template<typename genType > | |
GLM_FUNC_DECL genType | quinticEaseOut (genType const &a) |
Modelled after the quintic y = (x - 1)^5 + 1. More... | |
template<typename genType > | |
GLM_FUNC_DECL genType | sineEaseIn (genType const &a) |
Modelled after quarter-cycle of sine wave. More... | |
template<typename genType > | |
GLM_FUNC_DECL genType | sineEaseInOut (genType const &a) |
Modelled after half sine wave. More... | |
template<typename genType > | |
GLM_FUNC_DECL genType | sineEaseOut (genType const &a) |
Modelled after quarter-cycle of sine wave (different phase) More... | |
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
GLM_GTX_gradient_paint +More...
+ +Go to the source code of this file.
++Functions | |
template<typename T , qualifier Q> | |
GLM_FUNC_DECL T | linearGradient (vec< 2, T, Q > const &Point0, vec< 2, T, Q > const &Point1, vec< 2, T, Q > const &Position) |
Return a color from a linear gradient. More... | |
template<typename T , qualifier Q> | |
GLM_FUNC_DECL T | radialGradient (vec< 2, T, Q > const &Center, T const &Radius, vec< 2, T, Q > const &Focal, vec< 2, T, Q > const &Position) |
Return a color from a radial gradient. More... | |
Definition in file gradient_paint.hpp.
+![]() |
+
+ 0.9.9 API documentation
+
+ |
+
GLM_GTX_handed_coordinate_space +More...
+ +Go to the source code of this file.
++Functions | |
template<typename T , qualifier Q> | |
GLM_FUNC_DECL bool | leftHanded (vec< 3, T, Q > const &tangent, vec< 3, T, Q > const &binormal, vec< 3, T, Q > const &normal) |
Return if a trihedron left handed or not. More... | |
template<typename T , qualifier Q> | |
GLM_FUNC_DECL bool | rightHanded (vec< 3, T, Q > const &tangent, vec< 3, T, Q > const &binormal, vec< 3, T, Q > const &normal) |
Return if a trihedron right handed or not. More... | |
GLM_GTX_handed_coordinate_space
+Definition in file handed_coordinate_space.hpp.
+![]() |
+
+ 0.9.9 API documentation
+
+ |
+
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
Go to the source code of this file.
++Typedefs | |
typedef signed int | sint |
32bit signed integer. More... | |
+Functions | |
template<typename genType > | |
GLM_FUNC_DECL genType | factorial (genType const &x) |
Return the factorial value of a number (!12 max, integer only) From GLM_GTX_integer extension. More... | |
GLM_FUNC_DECL unsigned int | floor_log2 (unsigned int x) |
Returns the floor log2 of x. More... | |
GLM_FUNC_DECL int | mod (int x, int y) |
Modulus. More... | |
GLM_FUNC_DECL uint | mod (uint x, uint y) |
Modulus. More... | |
GLM_FUNC_DECL uint | nlz (uint x) |
Returns the number of leading zeros. More... | |
GLM_FUNC_DECL int | pow (int x, uint y) |
Returns x raised to the y power. More... | |
GLM_FUNC_DECL uint | pow (uint x, uint y) |
Returns x raised to the y power. More... | |
GLM_FUNC_DECL int | sqrt (int x) |
Returns the positive square root of x. More... | |
GLM_FUNC_DECL uint | sqrt (uint x) |
Returns the positive square root of x. More... | |
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
Go to the source code of this file.
+Definition in file mat4x2.hpp.
+![]() |
+
+ 0.9.9 API documentation
+
+ |
+
Go to the source code of this file.
+Definition in file mat4x3.hpp.
+![]() |
+
+ 0.9.9 API documentation
+
+ |
+
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
GLM_GTC_matrix_access +More...
+ +Go to the source code of this file.
++Functions | |
template<typename genType > | |
GLM_FUNC_DECL genType::col_type | column (genType const &m, length_t index) |
Get a specific column of a matrix. More... | |
template<typename genType > | |
GLM_FUNC_DECL genType | column (genType const &m, length_t index, typename genType::col_type const &x) |
Set a specific column to a matrix. More... | |
template<typename genType > | |
GLM_FUNC_DECL genType::row_type | row (genType const &m, length_t index) |
Get a specific row of a matrix. More... | |
template<typename genType > | |
GLM_FUNC_DECL genType | row (genType const &m, length_t index, typename genType::row_type const &x) |
Set a specific row to a matrix. More... | |
Definition in file matrix_access.hpp.
+![]() |
+
+ 0.9.9 API documentation
+
+ |
+
GLM_GTX_matrix_decompose +More...
+ +Go to the source code of this file.
++Functions | |
template<typename T , qualifier Q> | |
GLM_FUNC_DECL bool | decompose (mat< 4, 4, T, Q > const &modelMatrix, vec< 3, T, Q > &scale, qua< T, Q > &orientation, vec< 3, T, Q > &translation, vec< 3, T, Q > &skew, vec< 4, T, Q > &perspective) |
Decomposes a model matrix to translations, rotation and scale components. More... | |
Definition in file matrix_decompose.hpp.
+![]() |
+
+ 0.9.9 API documentation
+
+ |
+
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
Go to the source code of this file.
++Typedefs | |
typedef mat< 3, 4, double, highp > | highp_dmat3x4 |
3 columns of 4 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More... | |
typedef mat< 3, 4, double, lowp > | lowp_dmat3x4 |
3 columns of 4 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs. More... | |
typedef mat< 3, 4, double, mediump > | mediump_dmat3x4 |
3 columns of 4 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More... | |
Definition in file matrix_double3x4_precision.hpp.
+![]() |
+
+ 0.9.9 API documentation
+
+ |
+
Go to the source code of this file.
++Typedefs | |
typedef mat< 4, 3, double, highp > | highp_dmat4x3 |
4 columns of 3 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More... | |
typedef mat< 4, 3, double, lowp > | lowp_dmat4x3 |
4 columns of 3 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs. More... | |
typedef mat< 4, 3, double, mediump > | mediump_dmat4x3 |
4 columns of 3 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More... | |
Definition in file matrix_double4x3_precision.hpp.
+![]() |
+
+ 0.9.9 API documentation
+
+ |
+
Go to the source code of this file.
++Typedefs | |
typedef mat< 4, 4, double, defaultp > | dmat4 |
4 columns of 4 components matrix of double-precision floating-point numbers. More... | |
typedef mat< 4, 4, double, defaultp > | dmat4x4 |
4 columns of 4 components matrix of double-precision floating-point numbers. More... | |
Definition in file matrix_double4x4.hpp.
+![]() |
+
+ 0.9.9 API documentation
+
+ |
+
Go to the source code of this file.
++Typedefs | |
typedef mat< 4, 4, double, highp > | highp_dmat4 |
4 columns of 4 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More... | |
typedef mat< 4, 4, double, highp > | highp_dmat4x4 |
4 columns of 4 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More... | |
typedef mat< 4, 4, double, lowp > | lowp_dmat4 |
4 columns of 4 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs. More... | |
typedef mat< 4, 4, double, lowp > | lowp_dmat4x4 |
4 columns of 4 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs. More... | |
typedef mat< 4, 4, double, mediump > | mediump_dmat4 |
4 columns of 4 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More... | |
typedef mat< 4, 4, double, mediump > | mediump_dmat4x4 |
4 columns of 4 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More... | |
Definition in file matrix_double4x4_precision.hpp.
+![]() |
+
+ 0.9.9 API documentation
+
+ |
+
GLM_GTX_matrix_factorisation +More...
+ +Go to the source code of this file.
++Functions | |
template<length_t C, length_t R, typename T , qualifier Q> | |
GLM_FUNC_DECL mat< C, R, T, Q > | fliplr (mat< C, R, T, Q > const &in) |
Flips the matrix columns right and left. More... | |
template<length_t C, length_t R, typename T , qualifier Q> | |
GLM_FUNC_DECL mat< C, R, T, Q > | flipud (mat< C, R, T, Q > const &in) |
Flips the matrix rows up and down. More... | |
template<length_t C, length_t R, typename T , qualifier Q> | |
GLM_FUNC_DECL void | qr_decompose (mat< C, R, T, Q > const &in, mat<(C< R?C:R), R, T, Q > &q, mat< C,(C< R?C:R), T, Q > &r) |
Performs QR factorisation of a matrix. More... | |
template<length_t C, length_t R, typename T , qualifier Q> | |
GLM_FUNC_DECL void | rq_decompose (mat< C, R, T, Q > const &in, mat<(C< R?C:R), R, T, Q > &r, mat< C,(C< R?C:R), T, Q > &q) |
Performs RQ factorisation of a matrix. More... | |
Definition in file matrix_factorisation.hpp.
+![]() |
+
+ 0.9.9 API documentation
+
+ |
+
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
Go to the source code of this file.
++Typedefs | |
typedef mat< 4, 3, float, defaultp > | mat4x3 |
4 columns of 3 components matrix of single-precision floating-point numbers. More... | |
Definition in file matrix_float4x3.hpp.
+![]() |
+
+ 0.9.9 API documentation
+
+ |
+
Go to the source code of this file.
++Typedefs | |
typedef mat< 4, 3, float, highp > | highp_mat4x3 |
4 columns of 3 components matrix of single-precision floating-point numbers using high precision arithmetic in term of ULPs. More... | |
typedef mat< 4, 3, float, lowp > | lowp_mat4x3 |
4 columns of 3 components matrix of single-precision floating-point numbers using low precision arithmetic in term of ULPs. More... | |
typedef mat< 4, 3, float, mediump > | mediump_mat4x3 |
4 columns of 3 components matrix of single-precision floating-point numbers using medium precision arithmetic in term of ULPs. More... | |
Definition in file matrix_float4x3_precision.hpp.
+![]() |
+
+ 0.9.9 API documentation
+
+ |
+
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
GLM_EXT_matrix_relational +More...
+ +Go to the source code of this file.
++Functions | |
template<length_t C, length_t R, typename T , qualifier Q> | |
GLM_FUNC_DECL GLM_CONSTEXPR vec< C, bool, Q > | equal (mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y) |
Perform a component-wise equal-to comparison of two matrices. More... | |
template<length_t C, length_t R, typename T , qualifier Q> | |
GLM_FUNC_DECL GLM_CONSTEXPR vec< C, bool, Q > | equal (mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y, T epsilon) |
Returns the component-wise comparison of |x - y| < epsilon. More... | |
template<length_t C, length_t R, typename T , qualifier Q> | |
GLM_FUNC_DECL GLM_CONSTEXPR vec< C, bool, Q > | equal (mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y, vec< C, T, Q > const &epsilon) |
Returns the component-wise comparison of |x - y| < epsilon. More... | |
template<length_t C, length_t R, typename T , qualifier Q> | |
GLM_FUNC_DECL GLM_CONSTEXPR vec< C, bool, Q > | equal (mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y, int ULPs) |
Returns the component-wise comparison between two vectors in term of ULPs. More... | |
template<length_t C, length_t R, typename T , qualifier Q> | |
GLM_FUNC_DECL GLM_CONSTEXPR vec< C, bool, Q > | equal (mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y, vec< C, int, Q > const &ULPs) |
Returns the component-wise comparison between two vectors in term of ULPs. More... | |
template<length_t C, length_t R, typename T , qualifier Q> | |
GLM_FUNC_DECL GLM_CONSTEXPR vec< C, bool, Q > | notEqual (mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y) |
Perform a component-wise not-equal-to comparison of two matrices. More... | |
template<length_t C, length_t R, typename T , qualifier Q> | |
GLM_FUNC_DECL GLM_CONSTEXPR vec< C, bool, Q > | notEqual (mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y, T epsilon) |
Returns the component-wise comparison of |x - y| < epsilon. More... | |
template<length_t C, length_t R, typename T , qualifier Q> | |
GLM_FUNC_DECL GLM_CONSTEXPR vec< C, bool, Q > | notEqual (mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y, vec< C, T, Q > const &epsilon) |
Returns the component-wise comparison of |x - y| >= epsilon. More... | |
template<length_t C, length_t R, typename T , qualifier Q> | |
GLM_FUNC_DECL GLM_CONSTEXPR vec< C, bool, Q > | notEqual (mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y, int ULPs) |
Returns the component-wise comparison between two vectors in term of ULPs. More... | |
template<length_t C, length_t R, typename T , qualifier Q> | |
GLM_FUNC_DECL GLM_CONSTEXPR vec< C, bool, Q > | notEqual (mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y, vec< C, int, Q > const &ULPs) |
Returns the component-wise comparison between two vectors in term of ULPs. More... | |
Definition in file matrix_relational.hpp.
+![]() |
+
+ 0.9.9 API documentation
+
+ |
+
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
GLM_GTX_mixed_producte +More...
+ +Go to the source code of this file.
++Functions | |
+template<typename T , qualifier Q> | |
GLM_FUNC_DECL T | mixedProduct (vec< 3, T, Q > const &v1, vec< 3, T, Q > const &v2, vec< 3, T, Q > const &v3) |
Mixed product of 3 vectors (from GLM_GTX_mixed_product extension) | |
Definition in file mixed_product.hpp.
+![]() |
+
+ 0.9.9 API documentation
+
+ |
+
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
GLM_EXT_quaternion_common +More...
+ +Go to the source code of this file.
++Functions | |
template<typename T , qualifier Q> | |
GLM_FUNC_DECL qua< T, Q > | conjugate (qua< T, Q > const &q) |
Returns the q conjugate. More... | |
template<typename T , qualifier Q> | |
GLM_FUNC_DECL qua< T, Q > | inverse (qua< T, Q > const &q) |
Returns the q inverse. More... | |
template<typename T , qualifier Q> | |
GLM_FUNC_DECL vec< 4, bool, Q > | isinf (qua< T, Q > const &x) |
Returns true if x holds a positive infinity or negative infinity representation in the underlying implementation's set of floating point representations. More... | |
template<typename T , qualifier Q> | |
GLM_FUNC_DECL vec< 4, bool, Q > | isnan (qua< T, Q > const &x) |
Returns true if x holds a NaN (not a number) representation in the underlying implementation's set of floating point representations. More... | |
template<typename T , qualifier Q> | |
GLM_FUNC_DECL qua< T, Q > | lerp (qua< T, Q > const &x, qua< T, Q > const &y, T a) |
Linear interpolation of two quaternions. More... | |
template<typename T , qualifier Q> | |
GLM_FUNC_DECL qua< T, Q > | mix (qua< T, Q > const &x, qua< T, Q > const &y, T a) |
Spherical linear interpolation of two quaternions. More... | |
template<typename T , qualifier Q> | |
GLM_FUNC_DECL qua< T, Q > | slerp (qua< T, Q > const &x, qua< T, Q > const &y, T a) |
Spherical linear interpolation of two quaternions. More... | |
Definition in file quaternion_common.hpp.
+![]() |
+
+ 0.9.9 API documentation
+
+ |
+
GLM_EXT_quaternion_float +More...
+ +Go to the source code of this file.
++Typedefs | |
+typedef qua< float, defaultp > | quat |
Quaternion of single-precision floating-point numbers. | |
Definition in file quaternion_float.hpp.
+![]() |
+
+ 0.9.9 API documentation
+
+ |
+
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
GLM_EXT_scalar_int_sized +More...
+ +Go to the source code of this file.
++Typedefs | |
+typedef detail::int16 | int16 |
16 bit signed integer type. | |
+typedef detail::int32 | int32 |
32 bit signed integer type. | |
+typedef detail::int64 | int64 |
64 bit signed integer type. | |
+typedef detail::int8 | int8 |
8 bit signed integer type. | |
Definition in file scalar_int_sized.hpp.
+![]() |
+
+ 0.9.9 API documentation
+
+ |
+
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
GLM_GTX_scalar_relational +More...
+ +Go to the source code of this file.
+Definition in file gtx/scalar_relational.hpp.
+![]() |
+
+ 0.9.9 API documentation
+
+ |
+
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
Go to the source code of this file.
+Definition in file type_mat2x3.hpp.
+![]() |
+
+ 0.9.9 API documentation
+
+ |
+
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
Go to the source code of this file.
+Definition in file type_mat3x4.hpp.
+![]() |
+
+ 0.9.9 API documentation
+
+ |
+
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
Go to the source code of this file.
+Definition in file vec2.hpp.
+![]() |
+
+ 0.9.9 API documentation
+
+ |
+
Go to the source code of this file.
+Definition in file vec3.hpp.
+![]() |
+
+ 0.9.9 API documentation
+
+ |
+
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
Go to the source code of this file.
++Typedefs | |
+typedef vec< 1, bool, defaultp > | bvec1 |
1 components vector of boolean. | |
Definition in file vector_bool1.hpp.
+![]() |
+
+ 0.9.9 API documentation
+
+ |
+
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
Go to the source code of this file.
++Typedefs | |
typedef vec< 2, bool, highp > | highp_bvec2 |
2 components vector of high qualifier bool numbers. More... | |
typedef vec< 2, bool, lowp > | lowp_bvec2 |
2 components vector of low qualifier bool numbers. More... | |
typedef vec< 2, bool, mediump > | mediump_bvec2 |
2 components vector of medium qualifier bool numbers. More... | |
Definition in file vector_bool2_precision.hpp.
+![]() |
+
+ 0.9.9 API documentation
+
+ |
+
Go to the source code of this file.
++Typedefs | |
typedef vec< 3, bool, defaultp > | bvec3 |
3 components vector of boolean. More... | |
Definition in file vector_bool3.hpp.
+![]() |
+
+ 0.9.9 API documentation
+
+ |
+
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
Go to the source code of this file.
++Typedefs | |
typedef vec< 3, double, defaultp > | dvec3 |
3 components vector of double-precision floating-point numbers. More... | |
Definition in file vector_double3.hpp.
+![]() |
+
+ 0.9.9 API documentation
+
+ |
+
Go to the source code of this file.
++Typedefs | |
typedef vec< 3, double, highp > | highp_dvec3 |
3 components vector of high double-qualifier floating-point numbers. More... | |
typedef vec< 3, double, lowp > | lowp_dvec3 |
3 components vector of low double-qualifier floating-point numbers. More... | |
typedef vec< 3, double, mediump > | mediump_dvec3 |
3 components vector of medium double-qualifier floating-point numbers. More... | |
Definition in file vector_double3_precision.hpp.
+![]() |
+
+ 0.9.9 API documentation
+
+ |
+
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
Go to the source code of this file.
++Typedefs | |
+typedef vec< 1, int, defaultp > | ivec1 |
1 component vector of signed integer numbers. | |
Definition in file vector_int1.hpp.
+![]() |
+
+ 0.9.9 API documentation
+
+ |
+
GLM_EXT_vector_int1_precision +More...
+ +Go to the source code of this file.
++Typedefs | |
+typedef vec< 1, int, highp > | highp_ivec1 |
1 component vector of signed integer values. | |
+typedef vec< 1, int, lowp > | lowp_ivec1 |
1 component vector of signed integer values. | |
+typedef vec< 1, int, mediump > | mediump_ivec1 |
1 component vector of signed integer values. | |
Definition in file vector_int1_precision.hpp.
+![]() |
+
+ 0.9.9 API documentation
+
+ |
+
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
Go to the source code of this file.
++Typedefs | |
typedef vec< 3, int, defaultp > | ivec3 |
3 components vector of signed integer numbers. More... | |
Definition in file vector_int3.hpp.
+![]() |
+
+ 0.9.9 API documentation
+
+ |
+
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
GLM_EXT_vector_integer +More...
+ +Go to the source code of this file.
++Functions | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, int, Q > | findNSB (vec< L, T, Q > const &Source, vec< L, int, Q > SignificantBitCount) |
Returns the bit number of the Nth significant bit set to 1 in the binary representation of value. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, bool, Q > | isMultiple (vec< L, T, Q > const &v, T Multiple) |
Return true if the 'Value' is a multiple of 'Multiple'. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, bool, Q > | isMultiple (vec< L, T, Q > const &v, vec< L, T, Q > const &Multiple) |
Return true if the 'Value' is a multiple of 'Multiple'. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, bool, Q > | isPowerOfTwo (vec< L, T, Q > const &v) |
Return true if the value is a power of two number. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, T, Q > | nextMultiple (vec< L, T, Q > const &v, T Multiple) |
Higher multiple number of Source. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, T, Q > | nextMultiple (vec< L, T, Q > const &v, vec< L, T, Q > const &Multiple) |
Higher multiple number of Source. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, T, Q > | nextPowerOfTwo (vec< L, T, Q > const &v) |
Return the power of two number which value is just higher the input value, round up to a power of two. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, T, Q > | prevMultiple (vec< L, T, Q > const &v, T Multiple) |
Lower multiple number of Source. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, T, Q > | prevMultiple (vec< L, T, Q > const &v, vec< L, T, Q > const &Multiple) |
Lower multiple number of Source. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, T, Q > | prevPowerOfTwo (vec< L, T, Q > const &v) |
Return the power of two number which value is just lower the input value, round down to a power of two. More... | |
Definition in file vector_integer.hpp.
+![]() |
+
+ 0.9.9 API documentation
+
+ |
+
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
Go to the source code of this file.
++Functions | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, int, Q > | floatDistance (vec< L, float, Q > const &x, vec< L, float, Q > const &y) |
Return the distance in the number of ULP between 2 single-precision floating-point scalars. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, int64, Q > | floatDistance (vec< L, double, Q > const &x, vec< L, double, Q > const &y) |
Return the distance in the number of ULP between 2 double-precision floating-point scalars. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, T, Q > | nextFloat (vec< L, T, Q > const &x) |
Return the next ULP value(s) after the input value(s). More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, T, Q > | nextFloat (vec< L, T, Q > const &x, int ULPs) |
Return the value(s) ULP distance after the input value(s). More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, T, Q > | nextFloat (vec< L, T, Q > const &x, vec< L, int, Q > const &ULPs) |
Return the value(s) ULP distance after the input value(s). More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, T, Q > | prevFloat (vec< L, T, Q > const &x) |
Return the previous ULP value(s) before the input value(s). More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, T, Q > | prevFloat (vec< L, T, Q > const &x, int ULPs) |
Return the value(s) ULP distance before the input value(s). More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, T, Q > | prevFloat (vec< L, T, Q > const &x, vec< L, int, Q > const &ULPs) |
Return the value(s) ULP distance before the input value(s). More... | |
Definition in file vector_ulp.hpp.
+![]() |
+
+ 0.9.9 API documentation
+
+ |
+
Provides GLSL exponential functions. +More...
++Functions | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, T, Q > | exp (vec< L, T, Q > const &v) |
Returns the natural exponentiation of v, i.e., e^v. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, T, Q > | exp2 (vec< L, T, Q > const &v) |
Returns 2 raised to the v power. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, T, Q > | inversesqrt (vec< L, T, Q > const &v) |
Returns the reciprocal of the positive square root of v. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, T, Q > | log (vec< L, T, Q > const &v) |
Returns the natural logarithm of v, i.e., returns the value y which satisfies the equation x = e^y. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, T, Q > | log2 (vec< L, T, Q > const &v) |
Returns the base 2 log of x, i.e., returns the value y, which satisfies the equation x = 2 ^ y. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, T, Q > | pow (vec< L, T, Q > const &base, vec< L, T, Q > const &exponent) |
Returns 'base' raised to the power 'exponent'. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, T, Q > | sqrt (vec< L, T, Q > const &v) |
Returns the positive square root of v. More... | |
Provides GLSL exponential functions.
+These all operate component-wise. The description is per component.
+Include <glm/exponential.hpp> to use these core features.
+GLM_FUNC_DECL vec<L, T, Q> glm::exp | +( | +vec< L, T, Q > const & | +v | ) | ++ |
Returns the natural exponentiation of x, i.e., e^x.
+v | exp function is defined for input values of v defined in the range (inf-, inf+) in the limit of the type qualifier. |
L | An integer between 1 and 4 included that qualify the dimension of the vector. |
T | Floating-point scalar types. |
GLM_FUNC_DECL vec<L, T, Q> glm::exp2 | +( | +vec< L, T, Q > const & | +v | ) | ++ |
Returns 2 raised to the v power.
+v | exp2 function is defined for input values of v defined in the range (inf-, inf+) in the limit of the type qualifier. |
L | An integer between 1 and 4 included that qualify the dimension of the vector. |
T | Floating-point scalar types. |
GLM_FUNC_DECL vec<L, T, Q> glm::inversesqrt | +( | +vec< L, T, Q > const & | +v | ) | ++ |
Returns the reciprocal of the positive square root of v.
+v | inversesqrt function is defined for input values of v defined in the range [0, inf+) in the limit of the type qualifier. |
L | An integer between 1 and 4 included that qualify the dimension of the vector. |
T | Floating-point scalar types. |
GLM_FUNC_DECL vec<L, T, Q> glm::log | +( | +vec< L, T, Q > const & | +v | ) | ++ |
Returns the natural logarithm of v, i.e., returns the value y which satisfies the equation x = e^y.
+Results are undefined if v <= 0.
+v | log function is defined for input values of v defined in the range (0, inf+) in the limit of the type qualifier. |
L | An integer between 1 and 4 included that qualify the dimension of the vector. |
T | Floating-point scalar types. |
GLM_FUNC_DECL vec<L, T, Q> glm::log2 | +( | +vec< L, T, Q > const & | +v | ) | ++ |
Returns the base 2 log of x, i.e., returns the value y, which satisfies the equation x = 2 ^ y.
+v | log2 function is defined for input values of v defined in the range (0, inf+) in the limit of the type qualifier. |
L | An integer between 1 and 4 included that qualify the dimension of the vector. |
T | Floating-point scalar types. |
GLM_FUNC_DECL vec<L, T, Q> glm::pow | +( | +vec< L, T, Q > const & | +base, | +
+ | + | vec< L, T, Q > const & | +exponent | +
+ | ) | ++ |
Returns 'base' raised to the power 'exponent'.
+base | Floating point value. pow function is defined for input values of 'base' defined in the range (inf-, inf+) in the limit of the type qualifier. |
exponent | Floating point value representing the 'exponent'. |
GLM_FUNC_DECL vec<L, T, Q> glm::sqrt | +( | +vec< L, T, Q > const & | +v | ) | ++ |
Returns the positive square root of v.
+v | sqrt function is defined for input values of v defined in the range [0, inf+) in the limit of the type qualifier. |
L | An integer between 1 and 4 included that qualify the dimension of the vector. |
T | Floating-point scalar types. |
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
Defines functions that generate clip space transformation matrices. +More...
++Functions | |
template<typename T > | |
GLM_FUNC_DECL mat< 4, 4, T, defaultp > | frustum (T left, T right, T bottom, T top, T near, T far) |
Creates a frustum matrix with default handedness, using the default handedness and default near and far clip planes definition. More... | |
template<typename T > | |
GLM_FUNC_DECL mat< 4, 4, T, defaultp > | frustumLH (T left, T right, T bottom, T top, T near, T far) |
Creates a left handed frustum matrix. More... | |
template<typename T > | |
GLM_FUNC_DECL mat< 4, 4, T, defaultp > | frustumLH_NO (T left, T right, T bottom, T top, T near, T far) |
Creates a left handed frustum matrix. More... | |
template<typename T > | |
GLM_FUNC_DECL mat< 4, 4, T, defaultp > | frustumLH_ZO (T left, T right, T bottom, T top, T near, T far) |
Creates a left handed frustum matrix. More... | |
template<typename T > | |
GLM_FUNC_DECL mat< 4, 4, T, defaultp > | frustumNO (T left, T right, T bottom, T top, T near, T far) |
Creates a frustum matrix using left-handed coordinates if GLM_FORCE_LEFT_HANDED if defined or right-handed coordinates otherwise. More... | |
template<typename T > | |
GLM_FUNC_DECL mat< 4, 4, T, defaultp > | frustumRH (T left, T right, T bottom, T top, T near, T far) |
Creates a right handed frustum matrix. More... | |
template<typename T > | |
GLM_FUNC_DECL mat< 4, 4, T, defaultp > | frustumRH_NO (T left, T right, T bottom, T top, T near, T far) |
Creates a right handed frustum matrix. More... | |
template<typename T > | |
GLM_FUNC_DECL mat< 4, 4, T, defaultp > | frustumRH_ZO (T left, T right, T bottom, T top, T near, T far) |
Creates a right handed frustum matrix. More... | |
template<typename T > | |
GLM_FUNC_DECL mat< 4, 4, T, defaultp > | frustumZO (T left, T right, T bottom, T top, T near, T far) |
Creates a frustum matrix using left-handed coordinates if GLM_FORCE_LEFT_HANDED if defined or right-handed coordinates otherwise. More... | |
template<typename T > | |
GLM_FUNC_DECL mat< 4, 4, T, defaultp > | infinitePerspective (T fovy, T aspect, T near) |
Creates a matrix for a symmetric perspective-view frustum with far plane at infinite with default handedness. More... | |
template<typename T > | |
GLM_FUNC_DECL mat< 4, 4, T, defaultp > | infinitePerspectiveLH (T fovy, T aspect, T near) |
Creates a matrix for a left handed, symmetric perspective-view frustum with far plane at infinite. More... | |
template<typename T > | |
GLM_FUNC_DECL mat< 4, 4, T, defaultp > | infinitePerspectiveRH (T fovy, T aspect, T near) |
Creates a matrix for a right handed, symmetric perspective-view frustum with far plane at infinite. More... | |
template<typename T > | |
GLM_FUNC_DECL mat< 4, 4, T, defaultp > | ortho (T left, T right, T bottom, T top) |
Creates a matrix for projecting two-dimensional coordinates onto the screen. More... | |
template<typename T > | |
GLM_FUNC_DECL mat< 4, 4, T, defaultp > | ortho (T left, T right, T bottom, T top, T zNear, T zFar) |
Creates a matrix for an orthographic parallel viewing volume, using the default handedness and default near and far clip planes definition. More... | |
template<typename T > | |
GLM_FUNC_DECL mat< 4, 4, T, defaultp > | orthoLH (T left, T right, T bottom, T top, T zNear, T zFar) |
Creates a matrix for an orthographic parallel viewing volume, using left-handed coordinates. More... | |
template<typename T > | |
GLM_FUNC_DECL mat< 4, 4, T, defaultp > | orthoLH_NO (T left, T right, T bottom, T top, T zNear, T zFar) |
Creates a matrix for an orthographic parallel viewing volume using right-handed coordinates. More... | |
template<typename T > | |
GLM_FUNC_DECL mat< 4, 4, T, defaultp > | orthoLH_ZO (T left, T right, T bottom, T top, T zNear, T zFar) |
Creates a matrix for an orthographic parallel viewing volume, using left-handed coordinates. More... | |
template<typename T > | |
GLM_FUNC_DECL mat< 4, 4, T, defaultp > | orthoNO (T left, T right, T bottom, T top, T zNear, T zFar) |
Creates a matrix for an orthographic parallel viewing volume, using left-handed coordinates if GLM_FORCE_LEFT_HANDED if defined or right-handed coordinates otherwise. More... | |
template<typename T > | |
GLM_FUNC_DECL mat< 4, 4, T, defaultp > | orthoRH (T left, T right, T bottom, T top, T zNear, T zFar) |
Creates a matrix for an orthographic parallel viewing volume, using right-handed coordinates. More... | |
template<typename T > | |
GLM_FUNC_DECL mat< 4, 4, T, defaultp > | orthoRH_NO (T left, T right, T bottom, T top, T zNear, T zFar) |
Creates a matrix for an orthographic parallel viewing volume, using right-handed coordinates. More... | |
template<typename T > | |
GLM_FUNC_DECL mat< 4, 4, T, defaultp > | orthoRH_ZO (T left, T right, T bottom, T top, T zNear, T zFar) |
Creates a matrix for an orthographic parallel viewing volume, using left-handed coordinates. More... | |
template<typename T > | |
GLM_FUNC_DECL mat< 4, 4, T, defaultp > | orthoZO (T left, T right, T bottom, T top, T zNear, T zFar) |
Creates a matrix for an orthographic parallel viewing volume, using left-handed coordinates. More... | |
template<typename T > | |
GLM_FUNC_DECL mat< 4, 4, T, defaultp > | perspective (T fovy, T aspect, T near, T far) |
Creates a matrix for a symetric perspective-view frustum based on the default handedness and default near and far clip planes definition. More... | |
template<typename T > | |
GLM_FUNC_DECL mat< 4, 4, T, defaultp > | perspectiveFov (T fov, T width, T height, T near, T far) |
Builds a perspective projection matrix based on a field of view and the default handedness and default near and far clip planes definition. More... | |
template<typename T > | |
GLM_FUNC_DECL mat< 4, 4, T, defaultp > | perspectiveFovLH (T fov, T width, T height, T near, T far) |
Builds a left handed perspective projection matrix based on a field of view. More... | |
template<typename T > | |
GLM_FUNC_DECL mat< 4, 4, T, defaultp > | perspectiveFovLH_NO (T fov, T width, T height, T near, T far) |
Builds a perspective projection matrix based on a field of view using left-handed coordinates. More... | |
template<typename T > | |
GLM_FUNC_DECL mat< 4, 4, T, defaultp > | perspectiveFovLH_ZO (T fov, T width, T height, T near, T far) |
Builds a perspective projection matrix based on a field of view using left-handed coordinates. More... | |
template<typename T > | |
GLM_FUNC_DECL mat< 4, 4, T, defaultp > | perspectiveFovNO (T fov, T width, T height, T near, T far) |
Builds a perspective projection matrix based on a field of view using left-handed coordinates if GLM_FORCE_LEFT_HANDED if defined or right-handed coordinates otherwise. More... | |
template<typename T > | |
GLM_FUNC_DECL mat< 4, 4, T, defaultp > | perspectiveFovRH (T fov, T width, T height, T near, T far) |
Builds a right handed perspective projection matrix based on a field of view. More... | |
template<typename T > | |
GLM_FUNC_DECL mat< 4, 4, T, defaultp > | perspectiveFovRH_NO (T fov, T width, T height, T near, T far) |
Builds a perspective projection matrix based on a field of view using right-handed coordinates. More... | |
template<typename T > | |
GLM_FUNC_DECL mat< 4, 4, T, defaultp > | perspectiveFovRH_ZO (T fov, T width, T height, T near, T far) |
Builds a perspective projection matrix based on a field of view using right-handed coordinates. More... | |
template<typename T > | |
GLM_FUNC_DECL mat< 4, 4, T, defaultp > | perspectiveFovZO (T fov, T width, T height, T near, T far) |
Builds a perspective projection matrix based on a field of view using left-handed coordinates if GLM_FORCE_LEFT_HANDED if defined or right-handed coordinates otherwise. More... | |
template<typename T > | |
GLM_FUNC_DECL mat< 4, 4, T, defaultp > | perspectiveLH (T fovy, T aspect, T near, T far) |
Creates a matrix for a left handed, symetric perspective-view frustum. More... | |
template<typename T > | |
GLM_FUNC_DECL mat< 4, 4, T, defaultp > | perspectiveLH_NO (T fovy, T aspect, T near, T far) |
Creates a matrix for a left handed, symetric perspective-view frustum. More... | |
template<typename T > | |
GLM_FUNC_DECL mat< 4, 4, T, defaultp > | perspectiveLH_ZO (T fovy, T aspect, T near, T far) |
Creates a matrix for a left handed, symetric perspective-view frustum. More... | |
template<typename T > | |
GLM_FUNC_DECL mat< 4, 4, T, defaultp > | perspectiveNO (T fovy, T aspect, T near, T far) |
Creates a matrix for a symetric perspective-view frustum using left-handed coordinates if GLM_FORCE_LEFT_HANDED if defined or right-handed coordinates otherwise. More... | |
template<typename T > | |
GLM_FUNC_DECL mat< 4, 4, T, defaultp > | perspectiveRH (T fovy, T aspect, T near, T far) |
Creates a matrix for a right handed, symetric perspective-view frustum. More... | |
template<typename T > | |
GLM_FUNC_DECL mat< 4, 4, T, defaultp > | perspectiveRH_NO (T fovy, T aspect, T near, T far) |
Creates a matrix for a right handed, symetric perspective-view frustum. More... | |
template<typename T > | |
GLM_FUNC_DECL mat< 4, 4, T, defaultp > | perspectiveRH_ZO (T fovy, T aspect, T near, T far) |
Creates a matrix for a right handed, symetric perspective-view frustum. More... | |
template<typename T > | |
GLM_FUNC_DECL mat< 4, 4, T, defaultp > | perspectiveZO (T fovy, T aspect, T near, T far) |
Creates a matrix for a symetric perspective-view frustum using left-handed coordinates if GLM_FORCE_LEFT_HANDED if defined or right-handed coordinates otherwise. More... | |
template<typename T > | |
GLM_FUNC_DECL mat< 4, 4, T, defaultp > | tweakedInfinitePerspective (T fovy, T aspect, T near) |
Creates a matrix for a symmetric perspective-view frustum with far plane at infinite for graphics hardware that doesn't support depth clamping. More... | |
template<typename T > | |
GLM_FUNC_DECL mat< 4, 4, T, defaultp > | tweakedInfinitePerspective (T fovy, T aspect, T near, T ep) |
Creates a matrix for a symmetric perspective-view frustum with far plane at infinite for graphics hardware that doesn't support depth clamping. More... | |
Defines functions that generate clip space transformation matrices.
+The matrices generated by this extension use standard OpenGL fixed-function conventions. For example, the lookAt function generates a transform from world space into the specific eye space that the projective matrix functions (perspective, ortho, etc) are designed to expect. The OpenGL compatibility specifications defines the particular layout of this eye space.
+Include <glm/ext/matrix_clip_space.hpp> to use the features of this extension.
+ +GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::frustum | +( | +T | +left, | +
+ | + | T | +right, | +
+ | + | T | +bottom, | +
+ | + | T | +top, | +
+ | + | T | +near, | +
+ | + | T | +far | +
+ | ) | ++ |
Creates a frustum matrix with default handedness, using the default handedness and default near and far clip planes definition.
+To change default handedness use GLM_FORCE_LEFT_HANDED. To change default near and far clip planes definition use GLM_FORCE_DEPTH_ZERO_TO_ONE.
+T | A floating-point scalar type |
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::frustumLH | +( | +T | +left, | +
+ | + | T | +right, | +
+ | + | T | +bottom, | +
+ | + | T | +top, | +
+ | + | T | +near, | +
+ | + | T | +far | +
+ | ) | ++ |
Creates a left handed frustum matrix.
+If GLM_FORCE_DEPTH_ZERO_TO_ONE is defined, the near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition) Otherwise, the near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)
+T | A floating-point scalar type |
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::frustumLH_NO | +( | +T | +left, | +
+ | + | T | +right, | +
+ | + | T | +bottom, | +
+ | + | T | +top, | +
+ | + | T | +near, | +
+ | + | T | +far | +
+ | ) | ++ |
Creates a left handed frustum matrix.
+The near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)
+T | A floating-point scalar type |
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::frustumLH_ZO | +( | +T | +left, | +
+ | + | T | +right, | +
+ | + | T | +bottom, | +
+ | + | T | +top, | +
+ | + | T | +near, | +
+ | + | T | +far | +
+ | ) | ++ |
Creates a left handed frustum matrix.
+The near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition)
+T | A floating-point scalar type |
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::frustumNO | +( | +T | +left, | +
+ | + | T | +right, | +
+ | + | T | +bottom, | +
+ | + | T | +top, | +
+ | + | T | +near, | +
+ | + | T | +far | +
+ | ) | ++ |
Creates a frustum matrix using left-handed coordinates if GLM_FORCE_LEFT_HANDED if defined or right-handed coordinates otherwise.
+The near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)
+T | A floating-point scalar type |
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::frustumRH | +( | +T | +left, | +
+ | + | T | +right, | +
+ | + | T | +bottom, | +
+ | + | T | +top, | +
+ | + | T | +near, | +
+ | + | T | +far | +
+ | ) | ++ |
Creates a right handed frustum matrix.
+If GLM_FORCE_DEPTH_ZERO_TO_ONE is defined, the near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition) Otherwise, the near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)
+T | A floating-point scalar type |
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::frustumRH_NO | +( | +T | +left, | +
+ | + | T | +right, | +
+ | + | T | +bottom, | +
+ | + | T | +top, | +
+ | + | T | +near, | +
+ | + | T | +far | +
+ | ) | ++ |
Creates a right handed frustum matrix.
+The near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)
+T | A floating-point scalar type |
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::frustumRH_ZO | +( | +T | +left, | +
+ | + | T | +right, | +
+ | + | T | +bottom, | +
+ | + | T | +top, | +
+ | + | T | +near, | +
+ | + | T | +far | +
+ | ) | ++ |
Creates a right handed frustum matrix.
+The near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition)
+T | A floating-point scalar type |
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::frustumZO | +( | +T | +left, | +
+ | + | T | +right, | +
+ | + | T | +bottom, | +
+ | + | T | +top, | +
+ | + | T | +near, | +
+ | + | T | +far | +
+ | ) | ++ |
Creates a frustum matrix using left-handed coordinates if GLM_FORCE_LEFT_HANDED if defined or right-handed coordinates otherwise.
+The near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition)
+T | A floating-point scalar type |
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::infinitePerspective | +( | +T | +fovy, | +
+ | + | T | +aspect, | +
+ | + | T | +near | +
+ | ) | ++ |
Creates a matrix for a symmetric perspective-view frustum with far plane at infinite with default handedness.
+fovy | Specifies the field of view angle, in degrees, in the y direction. Expressed in radians. |
aspect | Specifies the aspect ratio that determines the field of view in the x direction. The aspect ratio is the ratio of x (width) to y (height). |
near | Specifies the distance from the viewer to the near clipping plane (always positive). |
T | A floating-point scalar type |
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::infinitePerspectiveLH | +( | +T | +fovy, | +
+ | + | T | +aspect, | +
+ | + | T | +near | +
+ | ) | ++ |
Creates a matrix for a left handed, symmetric perspective-view frustum with far plane at infinite.
+fovy | Specifies the field of view angle, in degrees, in the y direction. Expressed in radians. |
aspect | Specifies the aspect ratio that determines the field of view in the x direction. The aspect ratio is the ratio of x (width) to y (height). |
near | Specifies the distance from the viewer to the near clipping plane (always positive). |
T | A floating-point scalar type |
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::infinitePerspectiveRH | +( | +T | +fovy, | +
+ | + | T | +aspect, | +
+ | + | T | +near | +
+ | ) | ++ |
Creates a matrix for a right handed, symmetric perspective-view frustum with far plane at infinite.
+fovy | Specifies the field of view angle, in degrees, in the y direction. Expressed in radians. |
aspect | Specifies the aspect ratio that determines the field of view in the x direction. The aspect ratio is the ratio of x (width) to y (height). |
near | Specifies the distance from the viewer to the near clipping plane (always positive). |
T | A floating-point scalar type |
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::ortho | +( | +T | +left, | +
+ | + | T | +right, | +
+ | + | T | +bottom, | +
+ | + | T | +top | +
+ | ) | ++ |
Creates a matrix for projecting two-dimensional coordinates onto the screen.
+T | A floating-point scalar type |
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::ortho | +( | +T | +left, | +
+ | + | T | +right, | +
+ | + | T | +bottom, | +
+ | + | T | +top, | +
+ | + | T | +zNear, | +
+ | + | T | +zFar | +
+ | ) | ++ |
Creates a matrix for an orthographic parallel viewing volume, using the default handedness and default near and far clip planes definition.
+To change default handedness use GLM_FORCE_LEFT_HANDED. To change default near and far clip planes definition use GLM_FORCE_DEPTH_ZERO_TO_ONE.
+T | A floating-point scalar type |
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::orthoLH | +( | +T | +left, | +
+ | + | T | +right, | +
+ | + | T | +bottom, | +
+ | + | T | +top, | +
+ | + | T | +zNear, | +
+ | + | T | +zFar | +
+ | ) | ++ |
Creates a matrix for an orthographic parallel viewing volume, using left-handed coordinates.
+If GLM_FORCE_DEPTH_ZERO_TO_ONE is defined, the near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition) Otherwise, the near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)
+T | A floating-point scalar type |
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::orthoLH_NO | +( | +T | +left, | +
+ | + | T | +right, | +
+ | + | T | +bottom, | +
+ | + | T | +top, | +
+ | + | T | +zNear, | +
+ | + | T | +zFar | +
+ | ) | ++ |
Creates a matrix for an orthographic parallel viewing volume using right-handed coordinates.
+The near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)
+T | A floating-point scalar type |
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::orthoLH_ZO | +( | +T | +left, | +
+ | + | T | +right, | +
+ | + | T | +bottom, | +
+ | + | T | +top, | +
+ | + | T | +zNear, | +
+ | + | T | +zFar | +
+ | ) | ++ |
Creates a matrix for an orthographic parallel viewing volume, using left-handed coordinates.
+The near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition)
+T | A floating-point scalar type |
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::orthoNO | +( | +T | +left, | +
+ | + | T | +right, | +
+ | + | T | +bottom, | +
+ | + | T | +top, | +
+ | + | T | +zNear, | +
+ | + | T | +zFar | +
+ | ) | ++ |
Creates a matrix for an orthographic parallel viewing volume, using left-handed coordinates if GLM_FORCE_LEFT_HANDED if defined or right-handed coordinates otherwise.
+The near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)
+T | A floating-point scalar type |
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::orthoRH | +( | +T | +left, | +
+ | + | T | +right, | +
+ | + | T | +bottom, | +
+ | + | T | +top, | +
+ | + | T | +zNear, | +
+ | + | T | +zFar | +
+ | ) | ++ |
Creates a matrix for an orthographic parallel viewing volume, using right-handed coordinates.
+If GLM_FORCE_DEPTH_ZERO_TO_ONE is defined, the near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition) Otherwise, the near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)
+T | A floating-point scalar type |
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::orthoRH_NO | +( | +T | +left, | +
+ | + | T | +right, | +
+ | + | T | +bottom, | +
+ | + | T | +top, | +
+ | + | T | +zNear, | +
+ | + | T | +zFar | +
+ | ) | ++ |
Creates a matrix for an orthographic parallel viewing volume, using right-handed coordinates.
+The near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)
+T | A floating-point scalar type |
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::orthoRH_ZO | +( | +T | +left, | +
+ | + | T | +right, | +
+ | + | T | +bottom, | +
+ | + | T | +top, | +
+ | + | T | +zNear, | +
+ | + | T | +zFar | +
+ | ) | ++ |
Creates a matrix for an orthographic parallel viewing volume, using left-handed coordinates.
+The near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition)
+T | A floating-point scalar type |
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::orthoZO | +( | +T | +left, | +
+ | + | T | +right, | +
+ | + | T | +bottom, | +
+ | + | T | +top, | +
+ | + | T | +zNear, | +
+ | + | T | +zFar | +
+ | ) | ++ |
Creates a matrix for an orthographic parallel viewing volume, using left-handed coordinates.
+The near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition)
+T | A floating-point scalar type |
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::perspective | +( | +T | +fovy, | +
+ | + | T | +aspect, | +
+ | + | T | +near, | +
+ | + | T | +far | +
+ | ) | ++ |
Creates a matrix for a symetric perspective-view frustum based on the default handedness and default near and far clip planes definition.
+To change default handedness use GLM_FORCE_LEFT_HANDED. To change default near and far clip planes definition use GLM_FORCE_DEPTH_ZERO_TO_ONE.
+fovy | Specifies the field of view angle in the y direction. Expressed in radians. |
aspect | Specifies the aspect ratio that determines the field of view in the x direction. The aspect ratio is the ratio of x (width) to y (height). |
near | Specifies the distance from the viewer to the near clipping plane (always positive). |
far | Specifies the distance from the viewer to the far clipping plane (always positive). |
T | A floating-point scalar type |
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::perspectiveFov | +( | +T | +fov, | +
+ | + | T | +width, | +
+ | + | T | +height, | +
+ | + | T | +near, | +
+ | + | T | +far | +
+ | ) | ++ |
Builds a perspective projection matrix based on a field of view and the default handedness and default near and far clip planes definition.
+To change default handedness use GLM_FORCE_LEFT_HANDED. To change default near and far clip planes definition use GLM_FORCE_DEPTH_ZERO_TO_ONE.
+fov | Expressed in radians. |
width | Width of the viewport |
height | Height of the viewport |
near | Specifies the distance from the viewer to the near clipping plane (always positive). |
far | Specifies the distance from the viewer to the far clipping plane (always positive). |
T | A floating-point scalar type |
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::perspectiveFovLH | +( | +T | +fov, | +
+ | + | T | +width, | +
+ | + | T | +height, | +
+ | + | T | +near, | +
+ | + | T | +far | +
+ | ) | ++ |
Builds a left handed perspective projection matrix based on a field of view.
+If GLM_FORCE_DEPTH_ZERO_TO_ONE is defined, the near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition) Otherwise, the near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)
+fov | Expressed in radians. |
width | Width of the viewport |
height | Height of the viewport |
near | Specifies the distance from the viewer to the near clipping plane (always positive). |
far | Specifies the distance from the viewer to the far clipping plane (always positive). |
T | A floating-point scalar type |
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::perspectiveFovLH_NO | +( | +T | +fov, | +
+ | + | T | +width, | +
+ | + | T | +height, | +
+ | + | T | +near, | +
+ | + | T | +far | +
+ | ) | ++ |
Builds a perspective projection matrix based on a field of view using left-handed coordinates.
+The near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)
+fov | Expressed in radians. |
width | Width of the viewport |
height | Height of the viewport |
near | Specifies the distance from the viewer to the near clipping plane (always positive). |
far | Specifies the distance from the viewer to the far clipping plane (always positive). |
T | A floating-point scalar type |
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::perspectiveFovLH_ZO | +( | +T | +fov, | +
+ | + | T | +width, | +
+ | + | T | +height, | +
+ | + | T | +near, | +
+ | + | T | +far | +
+ | ) | ++ |
Builds a perspective projection matrix based on a field of view using left-handed coordinates.
+The near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition)
+fov | Expressed in radians. |
width | Width of the viewport |
height | Height of the viewport |
near | Specifies the distance from the viewer to the near clipping plane (always positive). |
far | Specifies the distance from the viewer to the far clipping plane (always positive). |
T | A floating-point scalar type |
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::perspectiveFovNO | +( | +T | +fov, | +
+ | + | T | +width, | +
+ | + | T | +height, | +
+ | + | T | +near, | +
+ | + | T | +far | +
+ | ) | ++ |
Builds a perspective projection matrix based on a field of view using left-handed coordinates if GLM_FORCE_LEFT_HANDED if defined or right-handed coordinates otherwise.
+The near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)
+fov | Expressed in radians. |
width | Width of the viewport |
height | Height of the viewport |
near | Specifies the distance from the viewer to the near clipping plane (always positive). |
far | Specifies the distance from the viewer to the far clipping plane (always positive). |
T | A floating-point scalar type |
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::perspectiveFovRH | +( | +T | +fov, | +
+ | + | T | +width, | +
+ | + | T | +height, | +
+ | + | T | +near, | +
+ | + | T | +far | +
+ | ) | ++ |
Builds a right handed perspective projection matrix based on a field of view.
+If GLM_FORCE_DEPTH_ZERO_TO_ONE is defined, the near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition) Otherwise, the near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)
+fov | Expressed in radians. |
width | Width of the viewport |
height | Height of the viewport |
near | Specifies the distance from the viewer to the near clipping plane (always positive). |
far | Specifies the distance from the viewer to the far clipping plane (always positive). |
T | A floating-point scalar type |
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::perspectiveFovRH_NO | +( | +T | +fov, | +
+ | + | T | +width, | +
+ | + | T | +height, | +
+ | + | T | +near, | +
+ | + | T | +far | +
+ | ) | ++ |
Builds a perspective projection matrix based on a field of view using right-handed coordinates.
+The near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)
+fov | Expressed in radians. |
width | Width of the viewport |
height | Height of the viewport |
near | Specifies the distance from the viewer to the near clipping plane (always positive). |
far | Specifies the distance from the viewer to the far clipping plane (always positive). |
T | A floating-point scalar type |
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::perspectiveFovRH_ZO | +( | +T | +fov, | +
+ | + | T | +width, | +
+ | + | T | +height, | +
+ | + | T | +near, | +
+ | + | T | +far | +
+ | ) | ++ |
Builds a perspective projection matrix based on a field of view using right-handed coordinates.
+The near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition)
+fov | Expressed in radians. |
width | Width of the viewport |
height | Height of the viewport |
near | Specifies the distance from the viewer to the near clipping plane (always positive). |
far | Specifies the distance from the viewer to the far clipping plane (always positive). |
T | A floating-point scalar type |
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::perspectiveFovZO | +( | +T | +fov, | +
+ | + | T | +width, | +
+ | + | T | +height, | +
+ | + | T | +near, | +
+ | + | T | +far | +
+ | ) | ++ |
Builds a perspective projection matrix based on a field of view using left-handed coordinates if GLM_FORCE_LEFT_HANDED if defined or right-handed coordinates otherwise.
+The near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition)
+fov | Expressed in radians. |
width | Width of the viewport |
height | Height of the viewport |
near | Specifies the distance from the viewer to the near clipping plane (always positive). |
far | Specifies the distance from the viewer to the far clipping plane (always positive). |
T | A floating-point scalar type |
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::perspectiveLH | +( | +T | +fovy, | +
+ | + | T | +aspect, | +
+ | + | T | +near, | +
+ | + | T | +far | +
+ | ) | ++ |
Creates a matrix for a left handed, symetric perspective-view frustum.
+If GLM_FORCE_DEPTH_ZERO_TO_ONE is defined, the near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition) Otherwise, the near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)
+fovy | Specifies the field of view angle, in degrees, in the y direction. Expressed in radians. |
aspect | Specifies the aspect ratio that determines the field of view in the x direction. The aspect ratio is the ratio of x (width) to y (height). |
near | Specifies the distance from the viewer to the near clipping plane (always positive). |
far | Specifies the distance from the viewer to the far clipping plane (always positive). |
T | A floating-point scalar type |
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::perspectiveLH_NO | +( | +T | +fovy, | +
+ | + | T | +aspect, | +
+ | + | T | +near, | +
+ | + | T | +far | +
+ | ) | ++ |
Creates a matrix for a left handed, symetric perspective-view frustum.
+The near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)
+fovy | Specifies the field of view angle, in degrees, in the y direction. Expressed in radians. |
aspect | Specifies the aspect ratio that determines the field of view in the x direction. The aspect ratio is the ratio of x (width) to y (height). |
near | Specifies the distance from the viewer to the near clipping plane (always positive). |
far | Specifies the distance from the viewer to the far clipping plane (always positive). |
T | A floating-point scalar type |
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::perspectiveLH_ZO | +( | +T | +fovy, | +
+ | + | T | +aspect, | +
+ | + | T | +near, | +
+ | + | T | +far | +
+ | ) | ++ |
Creates a matrix for a left handed, symetric perspective-view frustum.
+The near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition)
+fovy | Specifies the field of view angle, in degrees, in the y direction. Expressed in radians. |
aspect | Specifies the aspect ratio that determines the field of view in the x direction. The aspect ratio is the ratio of x (width) to y (height). |
near | Specifies the distance from the viewer to the near clipping plane (always positive). |
far | Specifies the distance from the viewer to the far clipping plane (always positive). |
T | A floating-point scalar type |
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::perspectiveNO | +( | +T | +fovy, | +
+ | + | T | +aspect, | +
+ | + | T | +near, | +
+ | + | T | +far | +
+ | ) | ++ |
Creates a matrix for a symetric perspective-view frustum using left-handed coordinates if GLM_FORCE_LEFT_HANDED if defined or right-handed coordinates otherwise.
+The near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)
+fovy | Specifies the field of view angle, in degrees, in the y direction. Expressed in radians. |
aspect | Specifies the aspect ratio that determines the field of view in the x direction. The aspect ratio is the ratio of x (width) to y (height). |
near | Specifies the distance from the viewer to the near clipping plane (always positive). |
far | Specifies the distance from the viewer to the far clipping plane (always positive). |
T | A floating-point scalar type |
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::perspectiveRH | +( | +T | +fovy, | +
+ | + | T | +aspect, | +
+ | + | T | +near, | +
+ | + | T | +far | +
+ | ) | ++ |
Creates a matrix for a right handed, symetric perspective-view frustum.
+If GLM_FORCE_DEPTH_ZERO_TO_ONE is defined, the near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition) Otherwise, the near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)
+fovy | Specifies the field of view angle, in degrees, in the y direction. Expressed in radians. |
aspect | Specifies the aspect ratio that determines the field of view in the x direction. The aspect ratio is the ratio of x (width) to y (height). |
near | Specifies the distance from the viewer to the near clipping plane (always positive). |
far | Specifies the distance from the viewer to the far clipping plane (always positive). |
T | A floating-point scalar type |
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::perspectiveRH_NO | +( | +T | +fovy, | +
+ | + | T | +aspect, | +
+ | + | T | +near, | +
+ | + | T | +far | +
+ | ) | ++ |
Creates a matrix for a right handed, symetric perspective-view frustum.
+The near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)
+fovy | Specifies the field of view angle, in degrees, in the y direction. Expressed in radians. |
aspect | Specifies the aspect ratio that determines the field of view in the x direction. The aspect ratio is the ratio of x (width) to y (height). |
near | Specifies the distance from the viewer to the near clipping plane (always positive). |
far | Specifies the distance from the viewer to the far clipping plane (always positive). |
T | A floating-point scalar type |
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::perspectiveRH_ZO | +( | +T | +fovy, | +
+ | + | T | +aspect, | +
+ | + | T | +near, | +
+ | + | T | +far | +
+ | ) | ++ |
Creates a matrix for a right handed, symetric perspective-view frustum.
+The near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition)
+fovy | Specifies the field of view angle, in degrees, in the y direction. Expressed in radians. |
aspect | Specifies the aspect ratio that determines the field of view in the x direction. The aspect ratio is the ratio of x (width) to y (height). |
near | Specifies the distance from the viewer to the near clipping plane (always positive). |
far | Specifies the distance from the viewer to the far clipping plane (always positive). |
T | A floating-point scalar type |
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::perspectiveZO | +( | +T | +fovy, | +
+ | + | T | +aspect, | +
+ | + | T | +near, | +
+ | + | T | +far | +
+ | ) | ++ |
Creates a matrix for a symetric perspective-view frustum using left-handed coordinates if GLM_FORCE_LEFT_HANDED if defined or right-handed coordinates otherwise.
+The near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition)
+fovy | Specifies the field of view angle, in degrees, in the y direction. Expressed in radians. |
aspect | Specifies the aspect ratio that determines the field of view in the x direction. The aspect ratio is the ratio of x (width) to y (height). |
near | Specifies the distance from the viewer to the near clipping plane (always positive). |
far | Specifies the distance from the viewer to the far clipping plane (always positive). |
T | A floating-point scalar type |
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::tweakedInfinitePerspective | +( | +T | +fovy, | +
+ | + | T | +aspect, | +
+ | + | T | +near | +
+ | ) | ++ |
Creates a matrix for a symmetric perspective-view frustum with far plane at infinite for graphics hardware that doesn't support depth clamping.
+fovy | Specifies the field of view angle, in degrees, in the y direction. Expressed in radians. |
aspect | Specifies the aspect ratio that determines the field of view in the x direction. The aspect ratio is the ratio of x (width) to y (height). |
near | Specifies the distance from the viewer to the near clipping plane (always positive). |
T | A floating-point scalar type |
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::tweakedInfinitePerspective | +( | +T | +fovy, | +
+ | + | T | +aspect, | +
+ | + | T | +near, | +
+ | + | T | +ep | +
+ | ) | ++ |
Creates a matrix for a symmetric perspective-view frustum with far plane at infinite for graphics hardware that doesn't support depth clamping.
+fovy | Specifies the field of view angle, in degrees, in the y direction. Expressed in radians. |
aspect | Specifies the aspect ratio that determines the field of view in the x direction. The aspect ratio is the ratio of x (width) to y (height). |
near | Specifies the distance from the viewer to the near clipping plane (always positive). |
ep | Epsilon |
T | A floating-point scalar type |
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
Provides geometric functions for quaternion types. +More...
++Functions | |
template<typename T , qualifier Q> | |
GLM_FUNC_QUALIFIER qua< T, Q > | cross (qua< T, Q > const &q1, qua< T, Q > const &q2) |
Compute a cross product. More... | |
template<typename T , qualifier Q> | |
GLM_FUNC_DECL T | dot (qua< T, Q > const &x, qua< T, Q > const &y) |
Returns dot product of q1 and q2, i.e., q1[0] * q2[0] + q1[1] * q2[1] + ... More... | |
template<typename T , qualifier Q> | |
GLM_FUNC_DECL T | length (qua< T, Q > const &q) |
Returns the norm of a quaternions. More... | |
template<typename T , qualifier Q> | |
GLM_FUNC_DECL qua< T, Q > | normalize (qua< T, Q > const &q) |
Returns the normalized quaternion. More... | |
Provides geometric functions for quaternion types.
+Include <glm/ext/quaternion_geometric.hpp> to use the features of this extension.
+GLM_FUNC_QUALIFIER qua<T, Q> glm::cross | +( | +qua< T, Q > const & | +q1, | +
+ | + | qua< T, Q > const & | +q2 | +
+ | ) | ++ |
Compute a cross product.
+T | Floating-point scalar types |
Q | Value from qualifier enum |
GLM_FUNC_DECL T glm::dot | +( | +qua< T, Q > const & | +x, | +
+ | + | qua< T, Q > const & | +y | +
+ | ) | ++ |
Returns dot product of q1 and q2, i.e., q1[0] * q2[0] + q1[1] * q2[1] + ...
+T | Floating-point scalar types. |
Q | Value from qualifier enum |
GLM_FUNC_DECL T glm::length | +( | +qua< T, Q > const & | +q | ) | ++ |
Returns the norm of a quaternions.
+T | Floating-point scalar types |
Q | Value from qualifier enum |
GLM_FUNC_DECL qua<T, Q> glm::normalize | +( | +qua< T, Q > const & | +q | ) | ++ |
Returns the normalized quaternion.
+T | Floating-point scalar types |
Q | Value from qualifier enum |
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
Exposes comparison functions for quaternion types that take a user defined epsilon values. +More...
++Functions | |
template<typename T , qualifier Q> | |
GLM_FUNC_DECL vec< 4, bool, Q > | equal (qua< T, Q > const &x, qua< T, Q > const &y) |
Returns the component-wise comparison of result x == y. More... | |
template<typename T , qualifier Q> | |
GLM_FUNC_DECL vec< 4, bool, Q > | equal (qua< T, Q > const &x, qua< T, Q > const &y, T epsilon) |
Returns the component-wise comparison of |x - y| < epsilon. More... | |
template<typename T , qualifier Q> | |
GLM_FUNC_DECL vec< 4, bool, Q > | notEqual (qua< T, Q > const &x, qua< T, Q > const &y) |
Returns the component-wise comparison of result x != y. More... | |
template<typename T , qualifier Q> | |
GLM_FUNC_DECL vec< 4, bool, Q > | notEqual (qua< T, Q > const &x, qua< T, Q > const &y, T epsilon) |
Returns the component-wise comparison of |x - y| >= epsilon. More... | |
Exposes comparison functions for quaternion types that take a user defined epsilon values.
+Include <glm/ext/quaternion_relational.hpp> to use the features of this extension.
+GLM_FUNC_DECL vec<4, bool, Q> glm::equal | +( | +qua< T, Q > const & | +x, | +
+ | + | qua< T, Q > const & | +y | +
+ | ) | ++ |
Returns the component-wise comparison of result x == y.
+T | Floating-point scalar types |
Q | Value from qualifier enum |
GLM_FUNC_DECL vec<4, bool, Q> glm::equal | +( | +qua< T, Q > const & | +x, | +
+ | + | qua< T, Q > const & | +y, | +
+ | + | T | +epsilon | +
+ | ) | ++ |
Returns the component-wise comparison of |x - y| < epsilon.
+T | Floating-point scalar types |
Q | Value from qualifier enum |
GLM_FUNC_DECL vec<4, bool, Q> glm::notEqual | +( | +qua< T, Q > const & | +x, | +
+ | + | qua< T, Q > const & | +y | +
+ | ) | ++ |
Returns the component-wise comparison of result x != y.
+T | Floating-point scalar types |
Q | Value from qualifier enum |
GLM_FUNC_DECL vec<4, bool, Q> glm::notEqual | +( | +qua< T, Q > const & | +x, | +
+ | + | qua< T, Q > const & | +y, | +
+ | + | T | +epsilon | +
+ | ) | ++ |
Returns the component-wise comparison of |x - y| >= epsilon.
+T | Floating-point scalar types |
Q | Value from qualifier enum |
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
Provides a list of constants and precomputed useful values. +More...
++Functions | |
+template<typename genType > | |
GLM_FUNC_DECL GLM_CONSTEXPR genType | epsilon () |
Return the epsilon constant for floating point types. | |
+template<typename genType > | |
GLM_FUNC_DECL GLM_CONSTEXPR genType | pi () |
Return the pi constant for floating point types. | |
Provides a list of constants and precomputed useful values.
+Include <glm/ext/scalar_constants.hpp> to use the features of this extension.
+![]() |
+
+ 0.9.9 API documentation
+
+ |
+
Exposes sized unsigned integer scalar types. +More...
++Typedefs | |
+typedef detail::uint16 | uint16 |
16 bit unsigned integer type. | |
+typedef detail::uint32 | uint32 |
32 bit unsigned integer type. | |
+typedef detail::uint64 | uint64 |
64 bit unsigned integer type. | |
+typedef detail::uint8 | uint8 |
8 bit unsigned integer type. | |
Exposes sized unsigned integer scalar types.
+Include <glm/ext/scalar_uint_sized.hpp> to use the features of this extension.
+![]() |
+
+ 0.9.9 API documentation
+
+ |
+
Exposes comparison functions for vector types that take a user defined epsilon values. +More...
++Functions | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > | equal (vec< L, T, Q > const &x, vec< L, T, Q > const &y, T epsilon) |
Returns the component-wise comparison of |x - y| < epsilon. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > | equal (vec< L, T, Q > const &x, vec< L, T, Q > const &y, vec< L, T, Q > const &epsilon) |
Returns the component-wise comparison of |x - y| < epsilon. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > | equal (vec< L, T, Q > const &x, vec< L, T, Q > const &y, int ULPs) |
Returns the component-wise comparison between two vectors in term of ULPs. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > | equal (vec< L, T, Q > const &x, vec< L, T, Q > const &y, vec< L, int, Q > const &ULPs) |
Returns the component-wise comparison between two vectors in term of ULPs. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > | notEqual (vec< L, T, Q > const &x, vec< L, T, Q > const &y, T epsilon) |
Returns the component-wise comparison of |x - y| >= epsilon. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > | notEqual (vec< L, T, Q > const &x, vec< L, T, Q > const &y, vec< L, T, Q > const &epsilon) |
Returns the component-wise comparison of |x - y| >= epsilon. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > | notEqual (vec< L, T, Q > const &x, vec< L, T, Q > const &y, int ULPs) |
Returns the component-wise comparison between two vectors in term of ULPs. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > | notEqual (vec< L, T, Q > const &x, vec< L, T, Q > const &y, vec< L, int, Q > const &ULPs) |
Returns the component-wise comparison between two vectors in term of ULPs. More... | |
Exposes comparison functions for vector types that take a user defined epsilon values.
+Include <glm/ext/vector_relational.hpp> to use the features of this extension.
+GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q> glm::equal | +( | +vec< L, T, Q > const & | +x, | +
+ | + | vec< L, T, Q > const & | +y, | +
+ | + | T | +epsilon | +
+ | ) | ++ |
Returns the component-wise comparison of |x - y| < epsilon.
+True if this expression is satisfied.
+L | Integer between 1 and 4 included that qualify the dimension of the vector |
T | Floating-point or integer scalar types |
Q | Value from qualifier enum |
GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q> glm::equal | +( | +vec< L, T, Q > const & | +x, | +
+ | + | vec< L, T, Q > const & | +y, | +
+ | + | vec< L, T, Q > const & | +epsilon | +
+ | ) | ++ |
Returns the component-wise comparison of |x - y| < epsilon.
+True if this expression is satisfied.
+L | Integer between 1 and 4 included that qualify the dimension of the vector |
T | Floating-point or integer scalar types |
Q | Value from qualifier enum |
GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q> glm::equal | +( | +vec< L, T, Q > const & | +x, | +
+ | + | vec< L, T, Q > const & | +y, | +
+ | + | int | +ULPs | +
+ | ) | ++ |
Returns the component-wise comparison between two vectors in term of ULPs.
+True if this expression is satisfied.
+L | Integer between 1 and 4 included that qualify the dimension of the vector |
T | Floating-point |
Q | Value from qualifier enum |
GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q> glm::equal | +( | +vec< L, T, Q > const & | +x, | +
+ | + | vec< L, T, Q > const & | +y, | +
+ | + | vec< L, int, Q > const & | +ULPs | +
+ | ) | ++ |
Returns the component-wise comparison between two vectors in term of ULPs.
+True if this expression is satisfied.
+L | Integer between 1 and 4 included that qualify the dimension of the vector |
T | Floating-point |
Q | Value from qualifier enum |
GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q> glm::notEqual | +( | +vec< L, T, Q > const & | +x, | +
+ | + | vec< L, T, Q > const & | +y, | +
+ | + | T | +epsilon | +
+ | ) | ++ |
Returns the component-wise comparison of |x - y| >= epsilon.
+True if this expression is not satisfied.
+L | Integer between 1 and 4 included that qualify the dimension of the vector |
T | Floating-point or integer scalar types |
Q | Value from qualifier enum |
GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q> glm::notEqual | +( | +vec< L, T, Q > const & | +x, | +
+ | + | vec< L, T, Q > const & | +y, | +
+ | + | vec< L, T, Q > const & | +epsilon | +
+ | ) | ++ |
Returns the component-wise comparison of |x - y| >= epsilon.
+True if this expression is not satisfied.
+L | Integer between 1 and 4 included that qualify the dimension of the vector |
T | Floating-point or integer scalar types |
Q | Value from qualifier enum |
GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q> glm::notEqual | +( | +vec< L, T, Q > const & | +x, | +
+ | + | vec< L, T, Q > const & | +y, | +
+ | + | int | +ULPs | +
+ | ) | ++ |
Returns the component-wise comparison between two vectors in term of ULPs.
+True if this expression is not satisfied.
+L | Integer between 1 and 4 included that qualify the dimension of the vector |
T | Floating-point |
Q | Value from qualifier enum |
GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q> glm::notEqual | +( | +vec< L, T, Q > const & | +x, | +
+ | + | vec< L, T, Q > const & | +y, | +
+ | + | vec< L, int, Q > const & | +ULPs | +
+ | ) | ++ |
Returns the component-wise comparison between two vectors in term of ULPs.
+True if this expression is not satisfied.
+L | Integer between 1 and 4 included that qualify the dimension of the vector |
T | Floating-point |
Q | Value from qualifier enum |
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
These operate on vectors as vectors, not component-wise. +More...
++Functions | |
template<typename T , qualifier Q> | |
GLM_FUNC_DECL vec< 3, T, Q > | cross (vec< 3, T, Q > const &x, vec< 3, T, Q > const &y) |
Returns the cross product of x and y. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL T | distance (vec< L, T, Q > const &p0, vec< L, T, Q > const &p1) |
Returns the distance betwwen p0 and p1, i.e., length(p0 - p1). More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL T | dot (vec< L, T, Q > const &x, vec< L, T, Q > const &y) |
Returns the dot product of x and y, i.e., result = x * y. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, T, Q > | faceforward (vec< L, T, Q > const &N, vec< L, T, Q > const &I, vec< L, T, Q > const &Nref) |
If dot(Nref, I) < 0.0, return N, otherwise, return -N. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL T | length (vec< L, T, Q > const &x) |
Returns the length of x, i.e., sqrt(x * x). More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, T, Q > | normalize (vec< L, T, Q > const &x) |
Returns a vector in the same direction as x but with length of 1. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, T, Q > | reflect (vec< L, T, Q > const &I, vec< L, T, Q > const &N) |
For the incident vector I and surface orientation N, returns the reflection direction : result = I - 2.0 * dot(N, I) * N. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, T, Q > | refract (vec< L, T, Q > const &I, vec< L, T, Q > const &N, T eta) |
For the incident vector I and surface normal N, and the ratio of indices of refraction eta, return the refraction vector. More... | |
These operate on vectors as vectors, not component-wise.
+Include <glm/geometric.hpp> to use these core features.
+GLM_FUNC_DECL vec<3, T, Q> glm::cross | +( | +vec< 3, T, Q > const & | +x, | +
+ | + | vec< 3, T, Q > const & | +y | +
+ | ) | ++ |
Returns the cross product of x and y.
+T | Floating-point scalar types. |
GLM_FUNC_DECL T glm::distance | +( | +vec< L, T, Q > const & | +p0, | +
+ | + | vec< L, T, Q > const & | +p1 | +
+ | ) | ++ |
Returns the distance betwwen p0 and p1, i.e., length(p0 - p1).
+L | An integer between 1 and 4 included that qualify the dimension of the vector. |
T | Floating-point scalar types. |
GLM_FUNC_DECL T glm::dot | +( | +vec< L, T, Q > const & | +x, | +
+ | + | vec< L, T, Q > const & | +y | +
+ | ) | ++ |
Returns the dot product of x and y, i.e., result = x * y.
+L | An integer between 1 and 4 included that qualify the dimension of the vector. |
T | Floating-point scalar types. |
GLM_FUNC_DECL vec<L, T, Q> glm::faceforward | +( | +vec< L, T, Q > const & | +N, | +
+ | + | vec< L, T, Q > const & | +I, | +
+ | + | vec< L, T, Q > const & | +Nref | +
+ | ) | ++ |
If dot(Nref, I) < 0.0, return N, otherwise, return -N.
+L | An integer between 1 and 4 included that qualify the dimension of the vector. |
T | Floating-point scalar types. |
GLM_FUNC_DECL T glm::length | +( | +vec< L, T, Q > const & | +x | ) | ++ |
Returns the length of x, i.e., sqrt(x * x).
+L | An integer between 1 and 4 included that qualify the dimension of the vector. |
T | Floating-point scalar types. |
GLM_FUNC_DECL vec<L, T, Q> glm::normalize | +( | +vec< L, T, Q > const & | +x | ) | ++ |
Returns a vector in the same direction as x but with length of 1.
+According to issue 10 GLSL 1.10 specification, if length(x) == 0 then result is undefined and generate an error.
+L | An integer between 1 and 4 included that qualify the dimension of the vector. |
T | Floating-point scalar types. |
GLM_FUNC_DECL vec<L, T, Q> glm::reflect | +( | +vec< L, T, Q > const & | +I, | +
+ | + | vec< L, T, Q > const & | +N | +
+ | ) | ++ |
For the incident vector I and surface orientation N, returns the reflection direction : result = I - 2.0 * dot(N, I) * N.
+L | An integer between 1 and 4 included that qualify the dimension of the vector. |
T | Floating-point scalar types. |
GLM_FUNC_DECL vec<L, T, Q> glm::refract | +( | +vec< L, T, Q > const & | +I, | +
+ | + | vec< L, T, Q > const & | +N, | +
+ | + | T | +eta | +
+ | ) | ++ |
For the incident vector I and surface normal N, and the ratio of indices of refraction eta, return the refraction vector.
+L | An integer between 1 and 4 included that qualify the dimension of the vector. |
T | Floating-point scalar types. |
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
Features that implement in C++ the GLSL specification as closely as possible. +More...
++Modules | |
Common functions | |
Provides GLSL common functions. | |
Exponential functions | |
Provides GLSL exponential functions. | |
Geometric functions | |
These operate on vectors as vectors, not component-wise. | |
Vector types | |
Vector types of two to four components with an exhaustive set of operators. | |
Vector types with precision qualifiers | |
Vector types with precision qualifiers which may result in various precision in term of ULPs. | |
Matrix types | |
Matrix types of with C columns and R rows where C and R are values between 2 to 4 included. | |
Matrix types with precision qualifiers | |
Matrix types with precision qualifiers which may result in various precision in term of ULPs. | |
Integer functions | |
Provides GLSL functions on integer types. | |
Matrix functions | |
Provides GLSL matrix functions. | |
Floating-Point Pack and Unpack Functions | |
Provides GLSL functions to pack and unpack half, single and double-precision floating point values into more compact integer types. | |
Angle and Trigonometry Functions | |
Function parameters specified as angle are assumed to be in units of radians. | |
Vector Relational Functions | |
Relational and equality operators (<, <=, >, >=, ==, !=) are defined to operate on scalars and produce scalar Boolean results. | |
+Typedefs | |
typedef mat< 3, 2, float, defaultp > | mat3x2 |
3 columns of 2 components matrix of single-precision floating-point numbers. More... | |
Features that implement in C++ the GLSL specification as closely as possible.
+The GLM core consists of C++ types that mirror GLSL types and C++ functions that mirror the GLSL functions.
+The best documentation for GLM Core is the current GLSL specification, version 4.2 (pdf file).
+GLM core functionalities require <glm/glm.hpp> to be included to be used.
+typedef mat< 3, 2, f32, defaultp > mat3x2 | +
3 columns of 2 components matrix of single-precision floating-point numbers.
+ + +Definition at line 15 of file matrix_float3x2.hpp.
+ +![]() |
+
+ 0.9.9 API documentation
+
+ |
+
Include <glm/gtc/matrix_transform.hpp> to use the features of this extension. +More...
+Include <glm/gtc/matrix_transform.hpp> to use the features of this extension.
+Defines functions that generate common transformation matrices.
+The matrices generated by this extension use standard OpenGL fixed-function conventions. For example, the lookAt function generates a transform from world space into the specific eye space that the projective matrix functions (perspective, ortho, etc) are designed to expect. The OpenGL compatibility specifications defines the particular layout of this eye space.
+![]() |
+
+ 0.9.9 API documentation
+
+ |
+
Include <glm/gtc/ulp.hpp> to use the features of this extension. +More...
+Include <glm/gtc/ulp.hpp> to use the features of this extension.
+Allow the measurement of the accuracy of a function against a reference implementation. This extension works on floating-point data and provide results in ULP.
+![]() |
+
+ 0.9.9 API documentation
+
+ |
+
Include <glm/gtc/vec1.hpp> to use the features of this extension. +More...
+Include <glm/gtc/vec1.hpp> to use the features of this extension.
+Add vec1, ivec1, uvec1 and bvec1 types.
+![]() |
+
+ 0.9.9 API documentation
+
+ |
+
Include <glm/gtx/closest_point.hpp> to use the features of this extension. +More...
++Functions | |
template<typename T , qualifier Q> | |
GLM_FUNC_DECL vec< 3, T, Q > | closestPointOnLine (vec< 3, T, Q > const &point, vec< 3, T, Q > const &a, vec< 3, T, Q > const &b) |
Find the point on a straight line which is the closet of a point. More... | |
+template<typename T , qualifier Q> | |
GLM_FUNC_DECL vec< 2, T, Q > | closestPointOnLine (vec< 2, T, Q > const &point, vec< 2, T, Q > const &a, vec< 2, T, Q > const &b) |
2d lines work as well | |
Include <glm/gtx/closest_point.hpp> to use the features of this extension.
+Find the point on a straight line which is the closet of a point.
+GLM_FUNC_DECL vec<3, T, Q> glm::closestPointOnLine | +( | +vec< 3, T, Q > const & | +point, | +
+ | + | vec< 3, T, Q > const & | +a, | +
+ | + | vec< 3, T, Q > const & | +b | +
+ | ) | ++ |
Find the point on a straight line which is the closet of a point.
+![]() |
+
+ 0.9.9 API documentation
+
+ |
+
Include <glm/gtx/color_encoding.hpp> to use the features of this extension. +More...
++Functions | |
+template<typename T , qualifier Q> | |
GLM_FUNC_DECL vec< 3, T, Q > | convertD65XYZToD50XYZ (vec< 3, T, Q > const &ColorD65XYZ) |
Convert a D65 YUV color to D50 YUV. | |
+template<typename T , qualifier Q> | |
GLM_FUNC_DECL vec< 3, T, Q > | convertD65XYZToLinearSRGB (vec< 3, T, Q > const &ColorD65XYZ) |
Convert a D65 YUV color to linear sRGB. | |
+template<typename T , qualifier Q> | |
GLM_FUNC_DECL vec< 3, T, Q > | convertLinearSRGBToD50XYZ (vec< 3, T, Q > const &ColorLinearSRGB) |
Convert a linear sRGB color to D50 YUV. | |
+template<typename T , qualifier Q> | |
GLM_FUNC_DECL vec< 3, T, Q > | convertLinearSRGBToD65XYZ (vec< 3, T, Q > const &ColorLinearSRGB) |
Convert a linear sRGB color to D65 YUV. | |
Include <glm/gtx/color_encoding.hpp> to use the features of this extension.
+Allow to perform bit operations on integer values
+![]() |
+
+ 0.9.9 API documentation
+
+ |
+
Include <glm/gtx/functions.hpp> to use the features of this extension. +More...
++Functions | |
template<typename T > | |
GLM_FUNC_DECL T | gauss (T x, T ExpectedValue, T StandardDeviation) |
1D gauss function More... | |
template<typename T , qualifier Q> | |
GLM_FUNC_DECL T | gauss (vec< 2, T, Q > const &Coord, vec< 2, T, Q > const &ExpectedValue, vec< 2, T, Q > const &StandardDeviation) |
2D gauss function More... | |
Include <glm/gtx/functions.hpp> to use the features of this extension.
+List of useful common functions.
+GLM_FUNC_DECL T glm::gauss | +( | +T | +x, | +
+ | + | T | +ExpectedValue, | +
+ | + | T | +StandardDeviation | +
+ | ) | ++ |
1D gauss function
+GLM_FUNC_DECL T glm::gauss | +( | +vec< 2, T, Q > const & | +Coord, | +
+ | + | vec< 2, T, Q > const & | +ExpectedValue, | +
+ | + | vec< 2, T, Q > const & | +StandardDeviation | +
+ | ) | ++ |
2D gauss function
+![]() |
+
+ 0.9.9 API documentation
+
+ |
+
Include <glm/gtx/integer.hpp> to use the features of this extension. +More...
++Typedefs | |
typedef signed int | sint |
32bit signed integer. More... | |
+Functions | |
template<typename genType > | |
GLM_FUNC_DECL genType | factorial (genType const &x) |
Return the factorial value of a number (!12 max, integer only) From GLM_GTX_integer extension. More... | |
GLM_FUNC_DECL unsigned int | floor_log2 (unsigned int x) |
Returns the floor log2 of x. More... | |
GLM_FUNC_DECL int | mod (int x, int y) |
Modulus. More... | |
GLM_FUNC_DECL uint | mod (uint x, uint y) |
Modulus. More... | |
GLM_FUNC_DECL uint | nlz (uint x) |
Returns the number of leading zeros. More... | |
GLM_FUNC_DECL int | pow (int x, uint y) |
Returns x raised to the y power. More... | |
GLM_FUNC_DECL uint | pow (uint x, uint y) |
Returns x raised to the y power. More... | |
GLM_FUNC_DECL int | sqrt (int x) |
Returns the positive square root of x. More... | |
GLM_FUNC_DECL uint | sqrt (uint x) |
Returns the positive square root of x. More... | |
Include <glm/gtx/integer.hpp> to use the features of this extension.
+Add support for integer for core functions
+typedef signed int sint | +
32bit signed integer.
+From GLM_GTX_integer extension.
+ +Definition at line 55 of file gtx/integer.hpp.
+ +GLM_FUNC_DECL genType glm::factorial | +( | +genType const & | +x | ) | ++ |
Return the factorial value of a number (!12 max, integer only) From GLM_GTX_integer extension.
+ +GLM_FUNC_DECL unsigned int glm::floor_log2 | +( | +unsigned int | +x | ) | ++ |
Returns the floor log2 of x.
+From GLM_GTX_integer extension.
+ +GLM_FUNC_DECL int glm::mod | +( | +int | +x, | +
+ | + | int | +y | +
+ | ) | ++ |
Modulus.
+Returns x - y * floor(x / y) for each component in x using the floating point value y. From GLM_GTX_integer extension.
+ +GLM_FUNC_DECL uint glm::mod | +( | +uint | +x, | +
+ | + | uint | +y | +
+ | ) | ++ |
Modulus.
+Returns x - y * floor(x / y) for each component in x using the floating point value y. From GLM_GTX_integer extension.
+ +GLM_FUNC_DECL uint glm::nlz | +( | +uint | +x | ) | ++ |
Returns the number of leading zeros.
+From GLM_GTX_integer extension.
+ +GLM_FUNC_DECL int glm::pow | +( | +int | +x, | +
+ | + | uint | +y | +
+ | ) | ++ |
Returns x raised to the y power.
+From GLM_GTX_integer extension.
+ +GLM_FUNC_DECL uint glm::pow | +( | +uint | +x, | +
+ | + | uint | +y | +
+ | ) | ++ |
Returns x raised to the y power.
+From GLM_GTX_integer extension.
+ +GLM_FUNC_DECL int glm::sqrt | +( | +int | +x | ) | ++ |
Returns the positive square root of x.
+From GLM_GTX_integer extension.
+ +GLM_FUNC_DECL uint glm::sqrt | +( | +uint | +x | ) | ++ |
Returns the positive square root of x.
+From GLM_GTX_integer extension.
+ +![]() |
+
+ 0.9.9 API documentation
+
+ |
+
Include <glm/gtx/number_precision.hpp> to use the features of this extension. +More...
++Typedefs | |
+typedef f32 | f32mat1 |
Single-qualifier floating-point scalar. (from GLM_GTX_number_precision extension) | |
+typedef f32 | f32mat1x1 |
Single-qualifier floating-point scalar. (from GLM_GTX_number_precision extension) | |
+typedef f32 | f32vec1 |
Single-qualifier floating-point scalar. (from GLM_GTX_number_precision extension) | |
+typedef f64 | f64mat1 |
Double-qualifier floating-point scalar. (from GLM_GTX_number_precision extension) | |
+typedef f64 | f64mat1x1 |
Double-qualifier floating-point scalar. (from GLM_GTX_number_precision extension) | |
+typedef f64 | f64vec1 |
Single-qualifier floating-point scalar. (from GLM_GTX_number_precision extension) | |
+typedef u16 | u16vec1 |
16bit unsigned integer scalar. (from GLM_GTX_number_precision extension) | |
+typedef u32 | u32vec1 |
32bit unsigned integer scalar. (from GLM_GTX_number_precision extension) | |
+typedef u64 | u64vec1 |
64bit unsigned integer scalar. (from GLM_GTX_number_precision extension) | |
+typedef u8 | u8vec1 |
8bit unsigned integer scalar. (from GLM_GTX_number_precision extension) | |
Include <glm/gtx/number_precision.hpp> to use the features of this extension.
+Defined size types.
+![]() |
+
+ 0.9.9 API documentation
+
+ |
+
Include <glm/gtx/optimum_pow.hpp> to use the features of this extension. +More...
++Functions | |
template<typename genType > | |
GLM_FUNC_DECL genType | pow2 (genType const &x) |
Returns x raised to the power of 2. More... | |
template<typename genType > | |
GLM_FUNC_DECL genType | pow3 (genType const &x) |
Returns x raised to the power of 3. More... | |
template<typename genType > | |
GLM_FUNC_DECL genType | pow4 (genType const &x) |
Returns x raised to the power of 4. More... | |
Include <glm/gtx/optimum_pow.hpp> to use the features of this extension.
+Integer exponentiation of power functions.
+GLM_FUNC_DECL genType glm::gtx::pow2 | +( | +genType const & | +x | ) | ++ |
Returns x raised to the power of 2.
+GLM_FUNC_DECL genType glm::gtx::pow3 | +( | +genType const & | +x | ) | ++ |
Returns x raised to the power of 3.
+GLM_FUNC_DECL genType glm::gtx::pow4 | +( | +genType const & | +x | ) | ++ |
Returns x raised to the power of 4.
+![]() |
+
+ 0.9.9 API documentation
+
+ |
+
Include <glm/gtx/polar_coordinates.hpp> to use the features of this extension. +More...
++Functions | |
template<typename T , qualifier Q> | |
GLM_FUNC_DECL vec< 3, T, Q > | euclidean (vec< 2, T, Q > const &polar) |
Convert Polar to Euclidean coordinates. More... | |
template<typename T , qualifier Q> | |
GLM_FUNC_DECL vec< 3, T, Q > | polar (vec< 3, T, Q > const &euclidean) |
Convert Euclidean to Polar coordinates, x is the xz distance, y, the latitude and z the longitude. More... | |
Include <glm/gtx/polar_coordinates.hpp> to use the features of this extension.
+Conversion from Euclidean space to polar space and revert.
+GLM_FUNC_DECL vec<3, T, Q> glm::euclidean | +( | +vec< 2, T, Q > const & | +polar | ) | ++ |
Convert Polar to Euclidean coordinates.
+GLM_FUNC_DECL vec<3, T, Q> glm::polar | +( | +vec< 3, T, Q > const & | +euclidean | ) | ++ |
Convert Euclidean to Polar coordinates, x is the xz distance, y, the latitude and z the longitude.
+![]() |
+
+ 0.9.9 API documentation
+
+ |
+
Include <glm/gtx/projection.hpp> to use the features of this extension. +More...
++Functions | |
template<typename genType > | |
GLM_FUNC_DECL genType | proj (genType const &x, genType const &Normal) |
Projects x on Normal. More... | |
Include <glm/gtx/projection.hpp> to use the features of this extension.
+Projection of a vector to other one
+GLM_FUNC_DECL genType glm::proj | +( | +genType const & | +x, | +
+ | + | genType const & | +Normal | +
+ | ) | ++ |
Projects x on Normal.
+[in] | x | A vector to project |
[in] | Normal | A normal that doesn't need to be of unit length. |
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
Include <glm/gtx/vector_angle.hpp> to use the features of this extension. +More...
++Functions | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL T | angle (vec< L, T, Q > const &x, vec< L, T, Q > const &y) |
Returns the absolute angle between two vectors. More... | |
template<typename T , qualifier Q> | |
GLM_FUNC_DECL T | orientedAngle (vec< 2, T, Q > const &x, vec< 2, T, Q > const &y) |
Returns the oriented angle between two 2d vectors. More... | |
template<typename T , qualifier Q> | |
GLM_FUNC_DECL T | orientedAngle (vec< 3, T, Q > const &x, vec< 3, T, Q > const &y, vec< 3, T, Q > const &ref) |
Returns the oriented angle between two 3d vectors based from a reference axis. More... | |
Include <glm/gtx/vector_angle.hpp> to use the features of this extension.
+Compute angle between vectors
+GLM_FUNC_DECL T glm::angle | +( | +vec< L, T, Q > const & | +x, | +
+ | + | vec< L, T, Q > const & | +y | +
+ | ) | ++ |
Returns the absolute angle between two vectors.
+Parameters need to be normalized.
GLM_FUNC_DECL T glm::orientedAngle | +( | +vec< 2, T, Q > const & | +x, | +
+ | + | vec< 2, T, Q > const & | +y | +
+ | ) | ++ |
Returns the oriented angle between two 2d vectors.
+Parameters need to be normalized.
GLM_FUNC_DECL T glm::orientedAngle | +( | +vec< 3, T, Q > const & | +x, | +
+ | + | vec< 3, T, Q > const & | +y, | +
+ | + | vec< 3, T, Q > const & | +ref | +
+ | ) | ++ |
Returns the oriented angle between two 3d vectors based from a reference axis.
+Parameters need to be normalized.
![]() |
+
+ 0.9.9 API documentation
+
+ |
+
Provides GLSL matrix functions. +More...
++Functions | |
template<length_t C, length_t R, typename T , qualifier Q> | |
GLM_FUNC_DECL T | determinant (mat< C, R, T, Q > const &m) |
Return the determinant of a squared matrix. More... | |
template<length_t C, length_t R, typename T , qualifier Q> | |
GLM_FUNC_DECL mat< C, R, T, Q > | inverse (mat< C, R, T, Q > const &m) |
Return the inverse of a squared matrix. More... | |
template<length_t C, length_t R, typename T , qualifier Q> | |
GLM_FUNC_DECL mat< C, R, T, Q > | matrixCompMult (mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y) |
Multiply matrix x by matrix y component-wise, i.e., result[i][j] is the scalar product of x[i][j] and y[i][j]. More... | |
template<length_t C, length_t R, typename T , qualifier Q> | |
GLM_FUNC_DECL detail::outerProduct_trait< C, R, T, Q >::type | outerProduct (vec< C, T, Q > const &c, vec< R, T, Q > const &r) |
Treats the first parameter c as a column vector and the second parameter r as a row vector and does a linear algebraic matrix multiply c * r. More... | |
template<length_t C, length_t R, typename T , qualifier Q> | |
GLM_FUNC_DECL mat< C, R, T, Q >::transpose_type | transpose (mat< C, R, T, Q > const &x) |
Returns the transposed matrix of x. More... | |
Provides GLSL matrix functions.
+Include <glm/matrix.hpp> to use these core features.
+GLM_FUNC_DECL T glm::determinant | +( | +mat< C, R, T, Q > const & | +m | ) | ++ |
Return the determinant of a squared matrix.
+C | Integer between 1 and 4 included that qualify the number a column |
R | Integer between 1 and 4 included that qualify the number a row |
T | Floating-point or signed integer scalar types |
Q | Value from qualifier enum |
GLM_FUNC_DECL mat<C, R, T, Q> glm::inverse | +( | +mat< C, R, T, Q > const & | +m | ) | ++ |
Return the inverse of a squared matrix.
+C | Integer between 1 and 4 included that qualify the number a column |
R | Integer between 1 and 4 included that qualify the number a row |
T | Floating-point or signed integer scalar types |
Q | Value from qualifier enum |
GLM_FUNC_DECL mat<C, R, T, Q> glm::matrixCompMult | +( | +mat< C, R, T, Q > const & | +x, | +
+ | + | mat< C, R, T, Q > const & | +y | +
+ | ) | ++ |
Multiply matrix x by matrix y component-wise, i.e., result[i][j] is the scalar product of x[i][j] and y[i][j].
+C | Integer between 1 and 4 included that qualify the number a column |
R | Integer between 1 and 4 included that qualify the number a row |
T | Floating-point or signed integer scalar types |
Q | Value from qualifier enum |
GLM_FUNC_DECL detail::outerProduct_trait<C, R, T, Q>::type glm::outerProduct | +( | +vec< C, T, Q > const & | +c, | +
+ | + | vec< R, T, Q > const & | +r | +
+ | ) | ++ |
Treats the first parameter c as a column vector and the second parameter r as a row vector and does a linear algebraic matrix multiply c * r.
+C | Integer between 1 and 4 included that qualify the number a column |
R | Integer between 1 and 4 included that qualify the number a row |
T | Floating-point or signed integer scalar types |
Q | Value from qualifier enum |
GLM_FUNC_DECL mat<C, R, T, Q>::transpose_type glm::transpose | +( | +mat< C, R, T, Q > const & | +x | ) | ++ |
Returns the transposed matrix of x.
+C | Integer between 1 and 4 included that qualify the number a column |
R | Integer between 1 and 4 included that qualify the number a row |
T | Floating-point or signed integer scalar types |
Q | Value from qualifier enum |
![]() |
+
+ 0.9.9 API documentation
+
+ |
+