Patch by Gael Guennebaud: unify fixed-size and dynamic-size Block

expressions, update documentation.
This commit is contained in:
Benoit Jacob
2008-02-29 13:56:40 +00:00
parent b3268a6e2f
commit f12e9c53ac
9 changed files with 96 additions and 45 deletions

View File

@@ -1,3 +1,3 @@
Matrix4i m = Matrix4i::zero();
m.fixedBlock<3,3>(1,0).setIdentity();
m.block<3,3>(1,0).setIdentity();
cout << m << endl;