in Shot<S>::Axis changed Row3 to GetRow3 . row3 was the old method name of Matrix44

This commit is contained in:
Marco Callieri 2005-12-02 16:14:35 +00:00
parent b3abb3c44f
commit ee3d9a28e3
1 changed files with 4 additions and 1 deletions

View File

@ -23,6 +23,9 @@
/****************************************************************************
History
$Log: not supported by cvs2svn $
Revision 1.15 2005/12/01 01:03:37 cignoni
Removed excess ';' from end of template functions, for gcc compiling
Revision 1.14 2005/11/23 14:18:35 ganovelli
added access to similarity (just for symmetry with Camera() )
@ -154,7 +157,7 @@ template <class S>
vcg::Point3<S> Shot<S>::Axis(const int & i) const {
vcg::Matrix44<S> m;
similarity.rot.ToMatrix(m);
vcg::Point3<S> aa = m.Row3(i);
vcg::Point3<S> aa = m.GetRow3(i);
return aa;
}