diff options
author | Noel Grandin <noel@peralex.com> | 2015-07-06 10:06:45 +0300 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-07-06 10:10:02 +0300 |
commit | 04c0b70c9bbd7c8d6e30a95c5693d283c992fd98 (patch) | |
tree | 6319bdcd60262bd3d7b5099f7c446fd589562c67 /include/basegfx/range/b1drange.hxx | |
parent | e9c3583c2cc27fc88ee81047c236ec99dd51e8de (diff) |
loplugin:unusedmethods sax,shell,stoc,basegfx
Change-Id: I8f3871fd4e82b6850718b6f2a8757f3043d00017
Diffstat (limited to 'include/basegfx/range/b1drange.hxx')
-rw-r--r-- | include/basegfx/range/b1drange.hxx | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/include/basegfx/range/b1drange.hxx b/include/basegfx/range/b1drange.hxx index 1d8fe92ee4ed..c1e35b13605c 100644 --- a/include/basegfx/range/b1drange.hxx +++ b/include/basegfx/range/b1drange.hxx @@ -71,12 +71,6 @@ namespace basegfx return maRange.isEmpty(); } - /// reset the object to empty state again, clearing all values - void reset() - { - maRange.reset(); - } - bool operator==( const B1DRange& rRange ) const { return (maRange == rRange.maRange); @@ -87,11 +81,6 @@ namespace basegfx return (maRange != rRange.maRange); } - bool equal(const B1DRange& rRange) const - { - return (maRange.equal(rRange.maRange)); - } - /// get lower bound of the set. returns arbitrary values for empty sets. double getMinimum() const { @@ -122,12 +111,6 @@ namespace basegfx return maRange.isInside(fValue); } - /// yields true if rRange is inside, or equal to set - bool isInside(const B1DRange& rRange) const - { - return maRange.isInside(rRange.maRange); - } - /// yields true if rRange at least partly inside set bool overlaps(const B1DRange& rRange) const { @@ -158,11 +141,6 @@ namespace basegfx maRange.intersect(rRange.maRange); } - /// grow set by fValue on both sides - void grow(double fValue) - { - maRange.grow(fValue); - } }; } // end of namespace basegfx |