matrix
parent
7300f895bb
commit
96b071e337
|
@ -1,6 +1,6 @@
|
|||
cmake_minimum_required(VERSION 3.20)
|
||||
include(cmake/color.cmake)
|
||||
set(BLT_VERSION 0.20.15)
|
||||
set(BLT_VERSION 0.20.16)
|
||||
set(BLT_TEST_VERSION 0.0.1)
|
||||
|
||||
set(BLT_TARGET BLT)
|
||||
|
|
|
@ -179,7 +179,7 @@ namespace blt
|
|||
* Takes a value stored across a row, taking one from each column in the specified row
|
||||
* @param row the row to extract from. defaults to the first row
|
||||
*/
|
||||
constexpr inline vec<T, columns> vec_from_column_row(blt::u32 row = 0)
|
||||
constexpr inline vec<T, columns> vec_from_column_row(blt::u32 row = 0) const
|
||||
{
|
||||
vec<T, columns> ret;
|
||||
for (blt::u32 j = 0; j < columns; j++)
|
||||
|
|
Loading…
Reference in New Issue