summaryrefslogtreecommitdiff
path: root/basegfx/source/inc/hommatrixtemplate.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'basegfx/source/inc/hommatrixtemplate.hxx')
-rw-r--r--basegfx/source/inc/hommatrixtemplate.hxx22
1 files changed, 0 insertions, 22 deletions
diff --git a/basegfx/source/inc/hommatrixtemplate.hxx b/basegfx/source/inc/hommatrixtemplate.hxx
index 39922685be73..52ffd0b700b8 100644
--- a/basegfx/source/inc/hommatrixtemplate.hxx
+++ b/basegfx/source/inc/hommatrixtemplate.hxx
@@ -391,28 +391,6 @@ namespace basegfx
return aWork.ludcmp(nIndex, nParity);
}
- bool isNormalized() const
- {
- if(!mpLine)
- return true;
-
- const double fHomValue(get((RowSize - 1), (RowSize - 1)));
-
- if(::basegfx::fTools::equalZero(fHomValue))
- {
- return true;
- }
-
- const double fOne(1.0);
-
- if(::basegfx::fTools::equal(fOne, fHomValue))
- {
- return true;
- }
-
- return false;
- }
-
void doInvert(const ImplHomMatrixTemplate& rWork, const sal_uInt16 nIndex[])
{
double fArray[RowSize];