From fef23aeb65bed8951a90ed71beb1552b62cfce71 Mon Sep 17 00:00:00 2001 From: Armin Weiss Date: Thu, 6 Nov 2003 15:30:30 +0000 Subject: Added tooling for PolyPolygon cutting and some more tooling at B2DPolygon and B2DPolyPolygon --- basegfx/source/curve/b2dcubicbezier.cxx | 10 +++++----- basegfx/source/curve/b2dquadraticbezier.cxx | 8 ++++---- 2 files changed, 9 insertions(+), 9 deletions(-) (limited to 'basegfx/source/curve') diff --git a/basegfx/source/curve/b2dcubicbezier.cxx b/basegfx/source/curve/b2dcubicbezier.cxx index 05ac36f5bb86..19eadc8dab49 100644 --- a/basegfx/source/curve/b2dcubicbezier.cxx +++ b/basegfx/source/curve/b2dcubicbezier.cxx @@ -2,9 +2,9 @@ * * $RCSfile: b2dcubicbezier.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: aw $ $Date: 2003-11-05 12:25:47 $ + * last change: $Author: aw $ $Date: 2003-11-06 16:30:27 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -85,7 +85,7 @@ namespace basegfx { } - B2DCubicBezier::B2DCubicBezier(const point::B2DPoint& rStart, const point::B2DPoint& rEnd) + B2DCubicBezier::B2DCubicBezier(const ::basegfx::point::B2DPoint& rStart, const ::basegfx::point::B2DPoint& rEnd) : maStartPoint(rStart), maEndPoint(rEnd), maControlPointA(rStart), @@ -93,8 +93,8 @@ namespace basegfx { } - B2DCubicBezier::B2DCubicBezier(const point::B2DPoint& rStart, const point::B2DPoint& rControlPointA, - const point::B2DPoint& rControlPointB, const point::B2DPoint& rEnd) + B2DCubicBezier::B2DCubicBezier(const ::basegfx::point::B2DPoint& rStart, const ::basegfx::point::B2DPoint& rControlPointA, + const ::basegfx::point::B2DPoint& rControlPointB, const ::basegfx::point::B2DPoint& rEnd) : maStartPoint(rStart), maEndPoint(rEnd), maControlPointA(rControlPointA), diff --git a/basegfx/source/curve/b2dquadraticbezier.cxx b/basegfx/source/curve/b2dquadraticbezier.cxx index a22fc9778090..5db6c1d42775 100644 --- a/basegfx/source/curve/b2dquadraticbezier.cxx +++ b/basegfx/source/curve/b2dquadraticbezier.cxx @@ -2,9 +2,9 @@ * * $RCSfile: b2dquadraticbezier.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: aw $ $Date: 2003-11-05 12:25:48 $ + * last change: $Author: aw $ $Date: 2003-11-06 16:30:27 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -88,13 +88,13 @@ namespace basegfx { } - B2DQuadraticBezier::B2DQuadraticBezier(const point::B2DPoint& rStart, const point::B2DPoint& rEnd) + B2DQuadraticBezier::B2DQuadraticBezier(const ::basegfx::point::B2DPoint& rStart, const ::basegfx::point::B2DPoint& rEnd) : maStartPoint(rStart), maEndPoint(rEnd) { } - B2DQuadraticBezier::B2DQuadraticBezier(const point::B2DPoint& rStart, const point::B2DPoint& rControl, const point::B2DPoint& rEnd) + B2DQuadraticBezier::B2DQuadraticBezier(const ::basegfx::point::B2DPoint& rStart, const ::basegfx::point::B2DPoint& rControl, const ::basegfx::point::B2DPoint& rEnd) : maStartPoint(rStart), maEndPoint(rEnd), maControlPoint(rControl) -- cgit v1.2.1