Fix shadow warnings in doc-snippets

This commit is contained in:
Christoph Hertzberg 2018-08-25 10:07:17 +02:00
parent 117bc5d505
commit 4b1ad086b5
2 changed files with 2 additions and 4 deletions

View File

@ -1,4 +1,3 @@
typedef Matrix<double,4,Dynamic> Matrix4Xd;
Matrix4Xd M = Matrix4Xd::Random(4,5);
Projective3d P(Matrix4d::Random());
cout << "The matrix M is:" << endl << M << endl << endl;

View File

@ -1,4 +1,3 @@
typedef Matrix<double,3,Dynamic> Matrix3Xd;
Matrix3Xd M = Matrix3Xd::Random(3,5);
Projective3d P(Matrix4d::Random());
cout << "The matrix M is:" << endl << M << endl << endl;