diff options
Diffstat (limited to 'basegfx')
-rw-r--r-- | basegfx/source/inc/hommatrixtemplate.hxx | 22 |
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]; |