mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-01-12 14:25:16 +08:00
c38156a217
and this is already used to document DynBlock
4 lines
97 B
C++
4 lines
97 B
C++
Matrix4d m = Matrix4d::identity();
|
|
m.dynBlock(2,0,2,2) = m.dynBlock(0,0,2,2);
|
|
cout << m << endl;
|