mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-02-10 18:05:41 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@55219 954022d7-b5bf-4e40-9824-e11837661b57
This commit is contained in:
committed by
Alexander Trofimov
parent
e34baf4c56
commit
cb052b191a
@ -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();
|
||||
|
||||
Reference in New Issue
Block a user