You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
template<std::size_t I, glm::length_t C, glm::length_t R, typename T, glm::qualifier Q>
39
+
structtuple_element<I, glm::mat<C,R, T, Q>>
40
+
{
41
+
GLM_STATIC_ASSERT(I < C, "Index out of bounds");
42
+
typedef glm::vec<R,T,Q> type;
43
+
};
44
+
template<std::size_t I, typename T, glm::qualifier Q>
45
+
structtuple_element<I, glm::qua<T, Q>>
46
+
{
47
+
GLM_STATIC_ASSERT(I < 4, "Index out of bounds");
48
+
typedef T type;
49
+
};
50
+
51
+
}
52
+
#endif
53
+
#endif
54
+
55
+
#ifndef GLM_ENABLE_EXPERIMENTAL
56
+
# error "GLM: GLM_GTX_iteration 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."
0 commit comments