brainblock over - constructor needs not only a using but also a signature

This commit is contained in:
Hartmut Seichter 2019-01-22 09:51:07 +01:00
parent 878ea70ef7
commit 8d563cfc22
3 changed files with 68 additions and 50 deletions

View file

@ -29,15 +29,15 @@ int main(int argc,char **argv) {
auto m22_inv = m22.inverse();
auto m22_id = m22_inv * m22;
auto v2_t = m22_id * v2;
auto v3_t = m22_id * v3;
auto v2_f = m22 * v2;
auto v2_b = m22_inv * v2_f;
vector2_<float> r_m22 = m22.row(0).transposed();
vector2f r_m22 = m22.row(0);
auto r_m22_h = r_m22.homogenous();
debug::d() << "offset(0,1) col-major " << m22.offset(0,1);
debug::d() << "det " << m22.determinant();