data in matrix

v2
Brett 2024-10-05 14:40:36 -04:00
parent ce4e1807de
commit 7656e43e85
2 changed files with 5 additions and 1 deletions

View File

@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.20)
include(cmake/color.cmake)
set(BLT_VERSION 2.1.1)
set(BLT_VERSION 2.1.2)
set(BLT_TARGET BLT)

View File

@ -25,6 +25,10 @@ namespace blt
template<typename T, blt::u32 rows, blt::u32 columns>
class generalized_matrix
{
public:
static constexpr auto data_rows = rows;
static constexpr auto data_columns = columns;
private:
using matrix_t = generalized_matrix<T, rows, columns>;
enum class init_type
{