Commit cb052b19 authored by Oleg.Korshul's avatar Oleg.Korshul Committed by Alexander Trofimov

git-svn-id:...

git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@55219 954022d7-b5bf-4e40-9824-e11837661b57
parent e34baf4c
#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();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment