From 5eefca637e1c964426e8515b2493fbed816a789a Mon Sep 17 00:00:00 2001 From: Jitse Niesen Date: Fri, 17 Aug 2012 14:49:18 +0100 Subject: Documentation fixes. Thanks to Rodney Sparapani for reporting these. --- doc/examples/QuickStart_example2_fixed.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'doc/examples/QuickStart_example2_fixed.cpp') diff --git a/doc/examples/QuickStart_example2_fixed.cpp b/doc/examples/QuickStart_example2_fixed.cpp index edf3268cd..d91175273 100644 --- a/doc/examples/QuickStart_example2_fixed.cpp +++ b/doc/examples/QuickStart_example2_fixed.cpp @@ -6,10 +6,10 @@ using namespace std; int main() { - Matrix3f m = Matrix3f::Random(); - m = (m + Matrix3f::Constant(1.2)) * 50; + Matrix3d m = Matrix3d::Random(); + m = (m + Matrix3d::Constant(1.2)) * 50; cout << "m =" << endl << m << endl; - Vector3f v(1,2,3); + Vector3d v(1,2,3); cout << "m * v =" << endl << m * v << endl; } -- cgit v1.2.3