From 9cb9c1dacedd161636541364702a902de46ebb96 Mon Sep 17 00:00:00 2001 From: ponchio Date: Fri, 11 Apr 2008 12:22:32 +0000 Subject: [PATCH] Fixed Axis. Due to quaternion changes. --- vcg/math/shot.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vcg/math/shot.h b/vcg/math/shot.h index ef34cc0e..1300ab62 100644 --- a/vcg/math/shot.h +++ b/vcg/math/shot.h @@ -23,6 +23,9 @@ /**************************************************************************** History $Log: not supported by cvs2svn $ +Revision 1.24 2008/02/22 17:41:48 ponchio +Changed to reflect quaternion toMatrix inversion. + Revision 1.23 2007/02/06 08:54:07 corsini fix names @@ -194,7 +197,7 @@ vcg::Point3 Shot::Axis(const int & i) const { vcg::Matrix44 m; Extrinsics.rot.ToMatrix(m); - vcg::Point3 aa = m.GetRow3(i); + vcg::Point3 aa = m.GetCol3(i); return aa; }