Resolve "[API-#2] Pseudo-privatization of rotgen entity member functions"

Closes #18

Co-authored-by: Jules Pénuchot <jules@penuchot.com>

See merge request oss/rotgen!50
This commit is contained in:
Jules Pénuchot 2025-12-17 20:48:00 +01:00 committed by Joel Falcou
parent 6489697c05
commit e151e136d6
52 changed files with 2212 additions and 1556 deletions

View file

@ -48,9 +48,9 @@ auto process(column_ref<> v)
TTS_CASE("Reference of reference check")
{
auto v1 = rotgen::matrix<float, 1, 1>::Ones();
auto v2 = rotgen::matrix<float, 2, 1>::Random();
auto v3 = rotgen::matrix<float, 3, 1>::Constant(6.66);
auto v1 = rotgen::setOnes<rotgen::matrix<float, 1, 1>>();
auto v2 = rotgen::setRandom<rotgen::matrix<float, 2, 1>>();
auto v3 = rotgen::setConstant<rotgen::matrix<float, 3, 1>>(6.66);
auto sum1 = v1(0);
auto sum2 = v2(0) + v2(1);