mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
renaming (commit in order to avoid svn breakage)
This commit is contained in:
10
doc/snippets/function_dynBlock.cpp
Normal file
10
doc/snippets/function_dynBlock.cpp
Normal file
@@ -0,0 +1,10 @@
|
||||
#include <Eigen/Core.h>
|
||||
USING_EIGEN_DATA_TYPES
|
||||
using namespace std;
|
||||
int main(int, char**)
|
||||
{
|
||||
Matrix4d m = Matrix4d::identity();
|
||||
m.dynBlock(2,0,2,2) = m.dynBlock(0,0,2,2);
|
||||
cout << m << endl;
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user