mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-15 07:10:37 +08:00
3d9764ee24
The only missing examples now are for homogeneous() and hnormalized(); I don't know what they're used for ...
5 lines
163 B
C++
5 lines
163 B
C++
Vector3i v = Vector3i::Random();
|
|
cout << "Here is the vector v:" << endl << v << endl;
|
|
cout << "v.replicate(2,5) = ..." << endl;
|
|
cout << v.replicate(2,5) << endl;
|