From 8ea8b481de07169706343f35f928eac845b706fe Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Fri, 24 Oct 2008 21:42:03 +0000 Subject: As discussed on ML: * remove the automatic resizing feature of operator = * add function Matrix::set() to be used when the previous behavior is wanted * the default constructor of dynamic-size matrices now creates a "null" matrix (data=0, rows = cols = 0) instead of a 1x1 matrix * fix UnixX typos ;) --- doc/QuickStartGuide.dox | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'doc/QuickStartGuide.dox') diff --git a/doc/QuickStartGuide.dox b/doc/QuickStartGuide.dox index 805b840f3..1d2f623b3 100644 --- a/doc/QuickStartGuide.dox +++ b/doc/QuickStartGuide.dox @@ -156,9 +156,9 @@ x.setRandom(size); Basis vectors \link MatrixBase::Unit [details]\endlink \code -Vector3f::UnixX() // 1 0 0 -Vector3f::UnixY() // 0 1 0 -Vector3f::UnixZ() // 0 0 1 +Vector3f::UnitX() // 1 0 0 +Vector3f::UnitY() // 0 1 0 +Vector3f::UnitZ() // 0 0 1 \endcode\code VectorXf::Unit(size,i) VectorXf::Unit(4,1) == Vector4f(0,1,0,0) -- cgit v1.2.3