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
This commit is contained in:
Oliver Bolte 2007-07-18 10:08:05 +00:00
parent 67adbfe3ea
commit 7a33932b43

View file

@ -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)