diff options
author | Alexander Bergmann <myaddons@gmx.de> | 2012-02-01 16:34:15 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-02-01 16:34:50 +0000 |
commit | b3c3e116ff0eb9b550b73d3901395c042e31d192 (patch) | |
tree | 10814ac19c46bffb767d25e9ec408531d3878c14 /basegfx/source/range/b3drange.cxx | |
parent | bc8fa08a7ae48f68ee5578cb7820336c70898202 (diff) |
unusedcode.easy: Removed unused code
Diffstat (limited to 'basegfx/source/range/b3drange.cxx')
-rw-r--r-- | basegfx/source/range/b3drange.cxx | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/basegfx/source/range/b3drange.cxx b/basegfx/source/range/b3drange.cxx index fb29c917c19e..65643939950c 100644 --- a/basegfx/source/range/b3drange.cxx +++ b/basegfx/source/range/b3drange.cxx @@ -33,23 +33,6 @@ namespace basegfx { - B3DRange::B3DRange(const B3IRange& rRange) : - maRangeX(), - maRangeY(), - maRangeZ() - { - if( !rRange.isEmpty() ) - { - maRangeX = rRange.getMinX(); - maRangeY = rRange.getMinY(); - maRangeZ = rRange.getMinZ(); - - maRangeX.expand( rRange.getMaxX() ); - maRangeY.expand( rRange.getMaxY() ); - maRangeZ.expand( rRange.getMaxZ() ); - } - } - void B3DRange::transform(const B3DHomMatrix& rMatrix) { if(!isEmpty() && !rMatrix.isIdentity()) @@ -67,18 +50,6 @@ namespace basegfx } } - B3IRange fround(const B3DRange& rRange ) - { - return rRange.isEmpty() ? - B3IRange() : - B3IRange(fround(rRange.getMinX()), - fround(rRange.getMinY()), - fround(rRange.getMinZ()), - fround(rRange.getMaxX()), - fround(rRange.getMaxY()), - fround(rRange.getMaxZ())); - } - } // end of namespace basegfx // eof |