diff --git a/matrix.hpp b/matrix.hpp index a4f25e7d..43668483 100644 --- a/matrix.hpp +++ b/matrix.hpp @@ -48,6 +48,12 @@ namespace util { /////////////////////////////////////////////////////////////////////// constexpr matrix () noexcept = default; + constexpr matrix(ValueT fill) + { + for (auto &r: values) + r = fill; + } + //--------------------------------------------------------------------- constexpr matrix (const ValueT(&_data)[Rows][Cols]) noexcept: