diff options
author | Oliver Bolte <obo@openoffice.org> | 2007-07-18 10:04:20 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2007-07-18 10:04:20 +0000 |
commit | 1af4a70e92a0a6c9700704815765e8561916d348 (patch) | |
tree | 3048f5a4658fc2eabedcc388586379913aed9b6c /basegfx | |
parent | 2b8079e08c8baa9662c5a02bbcd95d345477d7f2 (diff) |
INTEGRATION: CWS aw051 (1.14.64); FILE MERGED
2007/06/15 13:28:59 aw 1.14.64.1: #i77162# 3rd round of adaptions to B2DPolygon bezier handling
Diffstat (limited to 'basegfx')
-rw-r--r-- | basegfx/inc/basegfx/range/b3drange.hxx | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/basegfx/inc/basegfx/range/b3drange.hxx b/basegfx/inc/basegfx/range/b3drange.hxx index 01ae1cbf810e..e18a004344dc 100644 --- a/basegfx/inc/basegfx/range/b3drange.hxx +++ b/basegfx/inc/basegfx/range/b3drange.hxx @@ -4,9 +4,9 @@ * * $RCSfile: b3drange.hxx,v $ * - * $Revision: 1.14 $ + * $Revision: 1.15 $ * - * last change: $Author: rt $ $Date: 2005-09-07 20:33:39 $ + * last change: $Author: obo $ $Date: 2007-07-18 11:04:20 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -152,13 +152,6 @@ namespace basegfx && maRangeZ.equal(rRange.maRangeZ)); } - bool equal(const B3DRange& rRange, const double& rfSmallValue) const - { - return (maRangeX.equal(rRange.maRangeX, rfSmallValue) - && maRangeY.equal(rRange.maRangeY, rfSmallValue) - && maRangeZ.equal(rRange.maRangeZ, rfSmallValue)); - } - double getMinX() const { return maRangeX.getMinimum(); |