summaryrefslogtreecommitdiffstats
path: root/basegfx/source/matrix
diff options
context:
space:
mode:
authorAugust Sodora <augsod@gmail.com>2012-01-07 20:41:09 -0500
committerAugust Sodora <augsod@gmail.com>2012-01-08 11:48:09 -0500
commitbc2a59e09d1a554b2d55412d1f10a3fa1fe86086 (patch)
tree0f588df79ace5b37eff26593e78cf17f4071e1fd /basegfx/source/matrix
parentRemove uses of pLine in scanner (diff)
downloadcore-bc2a59e09d1a554b2d55412d1f10a3fa1fe86086.tar.gz
core-bc2a59e09d1a554b2d55412d1f10a3fa1fe86086.zip
callcatcher: Remove unused code
Diffstat (limited to 'basegfx/source/matrix')
-rw-r--r--basegfx/source/matrix/b2dhommatrix.cxx34
1 files changed, 0 insertions, 34 deletions
diff --git a/basegfx/source/matrix/b2dhommatrix.cxx b/basegfx/source/matrix/b2dhommatrix.cxx
index adc984340b9a..942f313eac10 100644
--- a/basegfx/source/matrix/b2dhommatrix.cxx
+++ b/basegfx/source/matrix/b2dhommatrix.cxx
@@ -76,11 +76,6 @@ namespace basegfx
return *this;
}
- void B2DHomMatrix::makeUnique()
- {
- mpImpl.make_unique();
- }
-
double B2DHomMatrix::get(sal_uInt16 nRow, sal_uInt16 nColumn) const
{
return mpImpl->get(nRow, nColumn);
@@ -142,32 +137,6 @@ namespace basegfx
return false;
}
- bool B2DHomMatrix::isNormalized() const
- {
- return mpImpl->isNormalized();
- }
-
- void B2DHomMatrix::normalize()
- {
- if(!const_cast<const B2DHomMatrix*>(this)->mpImpl->isNormalized())
- mpImpl->doNormalize();
- }
-
- double B2DHomMatrix::determinant() const
- {
- return mpImpl->doDeterminant();
- }
-
- double B2DHomMatrix::trace() const
- {
- return mpImpl->doTrace();
- }
-
- void B2DHomMatrix::transpose()
- {
- mpImpl->doTranspose();
- }
-
B2DHomMatrix& B2DHomMatrix::operator+=(const B2DHomMatrix& rMat)
{
mpImpl->doAddMatrix(*rMat.mpImpl);
@@ -449,7 +418,4 @@ namespace basegfx
}
} // end of namespace basegfx
-///////////////////////////////////////////////////////////////////////////////
-// eof
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */