summaryrefslogtreecommitdiff
path: root/basegfx/source/tuple
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2007-07-18 10:08:05 +0000
committerOliver Bolte <obo@openoffice.org>2007-07-18 10:08:05 +0000
commit7a33932b435b7aafc4bae2ff67ae97bbe3dac9a7 (patch)
treeacef0cec28062df5e7940670875f8f9fadc7dcbf /basegfx/source/tuple
parent67adbfe3ea8485a339fc570d4ada08eae271fe72 (diff)
INTEGRATION: CWS aw051 (1.11.34); FILE MERGED
2007/06/15 13:29:21 aw 1.11.34.1: #i77162# 3rd round of adaptions to B2DPolygon bezier handling
Diffstat (limited to 'basegfx/source/tuple')
-rw-r--r--basegfx/source/tuple/b2dtuple.cxx11
1 files changed, 2 insertions, 9 deletions
diff --git a/basegfx/source/tuple/b2dtuple.cxx b/basegfx/source/tuple/b2dtuple.cxx
index e65203677e4e..656e05a0d024 100644
--- a/basegfx/source/tuple/b2dtuple.cxx
+++ b/basegfx/source/tuple/b2dtuple.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: b2dtuple.cxx,v $
*
- * $Revision: 1.11 $
+ * $Revision: 1.12 $
*
- * last change: $Author: obo $ $Date: 2006-09-17 08:06:26 $
+ * last change: $Author: obo $ $Date: 2007-07-18 11:08:05 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -84,13 +84,6 @@ namespace basegfx
::basegfx::fTools::equal(mfY, rTup.mfY));
}
- bool B2DTuple::equal(const B2DTuple& rTup, const double& rfSmallValue) const
- {
- return (
- ::basegfx::fTools::equal(mfX, rTup.mfX, rfSmallValue) &&
- ::basegfx::fTools::equal(mfY, rTup.mfY, rfSmallValue));
- }
-
void B2DTuple::correctValues(const double fCompareValue)
{
if(0.0 == fCompareValue)