- More documentation

This commit is contained in:
2025-12-18 16:18:07 -05:00
parent 9e6f00eb60
commit 88e33bdcc8
50 changed files with 987 additions and 264 deletions

View File

@@ -60,7 +60,7 @@ struct vector_base_type_helper
/// \tparam IndicesV Indices of the vector to pull from
template<size_t...IndicesV> struct SwizzleGen
{
// \brief generated swizzle type
/// \brief generated swizzle type
using type = swizzle<VectorT, DataT, ScalarT, IndicesV...>;
};
@@ -68,7 +68,7 @@ struct vector_base_type_helper
/// \tparam IndicesV Indices of the vector to pull from
template<size_t IndexV> struct SwizzleGen<IndexV>
{
// \brief decayed scalar type
/// \brief decayed scalar type
using type = ScalarT;
};