Clutter Engine 0.0.1
Loading...
Searching...
No Matches
scalar_multiplication.hpp
Go to the documentation of this file.
1
14
15#pragma once
16
17#include "../detail/setup.hpp"
18
19#if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
20# ifndef GLM_ENABLE_EXPERIMENTAL
21# pragma message("GLM: GLM_GTX_scalar_multiplication is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it.")
22# else
23# pragma message("GLM: GLM_GTX_scalar_multiplication extension included")
24# endif
25#endif
26
27#include "../vec2.hpp"
28#include "../vec3.hpp"
29#include "../vec4.hpp"
30#include "../mat2x2.hpp"
31#include <type_traits>
32
33namespace glm
34{
35 template<typename T, typename Vec>
36 using return_type_scalar_multiplication = typename std::enable_if<
37 !std::is_same<T, float>::value // T may not be a float
38 && std::is_arithmetic<T>::value, Vec // But it may be an int or double (no vec3 or mat3, ...)
39 >::type;
40
41#define GLM_IMPLEMENT_SCAL_MULT(Vec) \
42 template<typename T> \
43 return_type_scalar_multiplication<T, Vec> \
44 operator*(T const& s, Vec rh){ \
45 return rh *= static_cast<float>(s); \
46 } \
47 \
48 template<typename T> \
49 return_type_scalar_multiplication<T, Vec> \
50 operator*(Vec lh, T const& s){ \
51 return lh *= static_cast<float>(s); \
52 } \
53 \
54 template<typename T> \
55 return_type_scalar_multiplication<T, Vec> \
56 operator/(Vec lh, T const& s){ \
57 return lh *= 1.0f / static_cast<float>(s); \
58 }
59
60GLM_IMPLEMENT_SCAL_MULT(vec2)
61GLM_IMPLEMENT_SCAL_MULT(vec3)
62GLM_IMPLEMENT_SCAL_MULT(vec4)
63
64GLM_IMPLEMENT_SCAL_MULT(mat2)
65GLM_IMPLEMENT_SCAL_MULT(mat2x3)
66GLM_IMPLEMENT_SCAL_MULT(mat2x4)
67GLM_IMPLEMENT_SCAL_MULT(mat3x2)
68GLM_IMPLEMENT_SCAL_MULT(mat3)
69GLM_IMPLEMENT_SCAL_MULT(mat3x4)
70GLM_IMPLEMENT_SCAL_MULT(mat4x2)
71GLM_IMPLEMENT_SCAL_MULT(mat4x3)
72GLM_IMPLEMENT_SCAL_MULT(mat4)
73
74#undef GLM_IMPLEMENT_SCAL_MULT
75} // namespace glm
mat< 3, 4, float, defaultp > mat3x4
Definition matrix_float3x4.hpp:15
mat< 4, 2, float, defaultp > mat4x2
Definition matrix_float4x2.hpp:15
mat< 3, 3, float, defaultp > mat3
Definition matrix_float3x3.hpp:20
mat< 4, 3, float, defaultp > mat4x3
Definition matrix_float4x3.hpp:15
mat< 2, 4, float, defaultp > mat2x4
Definition matrix_float2x4.hpp:15
mat< 2, 3, float, defaultp > mat2x3
Definition matrix_float2x3.hpp:15
mat< 2, 2, float, defaultp > mat2
Definition matrix_float2x2.hpp:20
mat< 4, 4, float, defaultp > mat4
Definition matrix_float4x4.hpp:20
vec< 4, float, defaultp > vec4
Definition vector_float4.hpp:15
vec< 3, float, defaultp > vec3
Definition vector_float3.hpp:15
vec< 2, float, defaultp > vec2
Definition vector_float2.hpp:15
mat< 3, 2, float, defaultp > mat3x2
Definition matrix_float3x2.hpp:15
Core features
Definition common.hpp:21