git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@55219 954022d7-b5bf-4e40-9824-e11837661b57

This commit is contained in:
Oleg.Korshul
2014-03-28 08:05:27 +00:00
committed by Alexander Trofimov
parent e34baf4c56
commit cb052b191a

View File

@ -1,4 +1,4 @@
#include "Matrix.h"
#include "Matrix.h"
namespace Aggplus
{
@ -178,7 +178,7 @@ namespace Aggplus
Status CMatrix::Invert()
{
double d = m_agg_mtx.determinant();
if (0.0001 >= abs(d))
if (0.0001 >= fabs(d))
return InvalidParameter;
m_agg_mtx.invert();