diff options
author | Noel Grandin <noel@peralex.com> | 2015-09-29 12:40:47 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-09-29 15:08:43 +0200 |
commit | 34180700b2686c97cdce0b52ca9578a41a153035 (patch) | |
tree | 073f3753e4483f30efa3c7c769f23971e6a046d5 /basegfx | |
parent | e710170d906fcb248a5e4ff5a3a90cbf0e20003d (diff) |
loplugin:removeunusedmethods, remove unused stuff
Change-Id: I35456b2a3ad2a84a1d045f09cdfb29e4c19b8350
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]; |