data in matrix
parent
ce4e1807de
commit
7656e43e85
|
@ -1,6 +1,6 @@
|
||||||
cmake_minimum_required(VERSION 3.20)
|
cmake_minimum_required(VERSION 3.20)
|
||||||
include(cmake/color.cmake)
|
include(cmake/color.cmake)
|
||||||
set(BLT_VERSION 2.1.1)
|
set(BLT_VERSION 2.1.2)
|
||||||
|
|
||||||
set(BLT_TARGET BLT)
|
set(BLT_TARGET BLT)
|
||||||
|
|
||||||
|
|
|
@ -25,6 +25,10 @@ namespace blt
|
||||||
template<typename T, blt::u32 rows, blt::u32 columns>
|
template<typename T, blt::u32 rows, blt::u32 columns>
|
||||||
class generalized_matrix
|
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>;
|
using matrix_t = generalized_matrix<T, rows, columns>;
|
||||||
enum class init_type
|
enum class init_type
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue