aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/snippets/Tutorial_commainit_01.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2008-08-20 00:58:25 +0000
committerGravatar Gael Guennebaud <g.gael@free.fr>2008-08-20 00:58:25 +0000
commit7aba51ce530e95e062c098ab4fdbfa2de2c5d8da (patch)
tree7b76d457da52b928a7cfe1f60673145ee128742a /doc/snippets/Tutorial_commainit_01.cpp
parentc6674ab0767ce121b00389559847457e80728780 (diff)
* Added .all() and .any() members to PartialRedux
* Bug fixes in euler angle snippet, Assign and MapBase * Started a "quick start guide" (draft state)
Diffstat (limited to 'doc/snippets/Tutorial_commainit_01.cpp')
-rw-r--r--doc/snippets/Tutorial_commainit_01.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/snippets/Tutorial_commainit_01.cpp b/doc/snippets/Tutorial_commainit_01.cpp
new file mode 100644
index 000000000..f0a51509a
--- /dev/null
+++ b/doc/snippets/Tutorial_commainit_01.cpp
@@ -0,0 +1,5 @@
+Matrix3f m;
+m << 1, 2, 3,
+ 4, 5, 6,
+ 7, 8, 9;
+cout << m; \ No newline at end of file