|
@ -305,6 +305,18 @@ vector sub(const vector& x, const vector& y); |
|
|
template <std::size_t... Indices, class T, std::size_t N> |
|
|
template <std::size_t... Indices, class T, std::size_t N> |
|
|
vector<T, sizeof...(Indices)> swizzle(const vector<T, N>& v); |
|
|
vector<T, sizeof...(Indices)> swizzle(const vector<T, N>& v); |
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Types casts each vector component and returns a vector of the casted type. |
|
|
|
|
|
* |
|
|
|
|
|
* @tparam T2 Target vector component type. |
|
|
|
|
|
* @tparam T1 Source vector component type. |
|
|
|
|
|
* @tparam N Number of dimensions. |
|
|
|
|
|
* @param v Vector to type cast. |
|
|
|
|
|
* @return Type-casted vector. |
|
|
|
|
|
*/ |
|
|
|
|
|
template <class T2, class T1, std::size_t N> |
|
|
|
|
|
vector<T2, N> type_cast(const vector<T1, N>& v); |
|
|
|
|
|
|
|
|
/// @private
|
|
|
/// @private
|
|
|
template <class T, std::size_t N, std::size_t... I> |
|
|
template <class T, std::size_t N, std::size_t... I> |
|
|
inline vector<T, N> add(const vector<T, N>& x, const vector<T, N>& y, std::index_sequence<I...>) |
|
|
inline vector<T, N> add(const vector<T, N>& x, const vector<T, N>& y, std::index_sequence<I...>) |
|
@ -619,6 +631,19 @@ inline vector swizzle(const vector& v) |
|
|
return { v[Indices]... }; |
|
|
return { v[Indices]... }; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/// @private
|
|
|
|
|
|
template <class T2, class T1, std::size_t N, std::size_t... I> |
|
|
|
|
|
inline vector<T2, N> type_cast(const vector<T1, N>& v, std::index_sequence<I...>) |
|
|
|
|
|
{ |
|
|
|
|
|
return {static_cast<T2>(v[I])...}; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
template <class T2, class T1, std::size_t N> |
|
|
|
|
|
inline vector<T2, N> type_cast(const vector<T1, N>& v) |
|
|
|
|
|
{ |
|
|
|
|
|
return type_cast<T2>(v, std::make_index_sequence<N>{}); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
/// @}
|
|
|
/// @}
|
|
|
|
|
|
|
|
|
} // namespace math
|
|
|
} // namespace math
|
|
|