From c3663a687ccc9365b2b4eb4a3950b8d94c2d6ea7 Mon Sep 17 00:00:00 2001 From: Armin Weiss Date: Wed, 5 Nov 2003 11:25:58 +0000 Subject: Added PolyPolygonTools, Added PolygonTool functionality, changed bool to sal_Bool --- basegfx/inc/basegfx/point/b2dhompoint.hxx | 12 ++++++------ basegfx/inc/basegfx/point/b3dhompoint.hxx | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) (limited to 'basegfx/inc/basegfx/point') diff --git a/basegfx/inc/basegfx/point/b2dhompoint.hxx b/basegfx/inc/basegfx/point/b2dhompoint.hxx index 723fff6e4aab..5407b2653029 100644 --- a/basegfx/inc/basegfx/point/b2dhompoint.hxx +++ b/basegfx/inc/basegfx/point/b2dhompoint.hxx @@ -2,9 +2,9 @@ * * $RCSfile: b2dhompoint.hxx,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: aw $ $Date: 2003-10-31 10:12:48 $ + * last change: $Author: aw $ $Date: 2003-11-05 12:25:38 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -94,9 +94,9 @@ namespace basegfx /** Test if this homogen point does have a homogenous part - @return Returns true if this point has no homogenous part + @return Returns sal_True if this point has no homogenous part */ - bool implIsHomogenized() const; + sal_Bool implIsHomogenized() const; /** Remove homogenous part of this Point @@ -235,9 +235,9 @@ namespace basegfx B2DHomPoint& operator-(void); - bool operator==( const B2DHomPoint& rPnt ) const; + sal_Bool operator==( const B2DHomPoint& rPnt ) const; - bool operator!=( const B2DHomPoint& rPnt ) const; + sal_Bool operator!=( const B2DHomPoint& rPnt ) const; B2DHomPoint& operator=( const B2DHomPoint& rPnt ); }; diff --git a/basegfx/inc/basegfx/point/b3dhompoint.hxx b/basegfx/inc/basegfx/point/b3dhompoint.hxx index 881a9de2f0fb..dc470d1c7ebd 100644 --- a/basegfx/inc/basegfx/point/b3dhompoint.hxx +++ b/basegfx/inc/basegfx/point/b3dhompoint.hxx @@ -2,9 +2,9 @@ * * $RCSfile: b3dhompoint.hxx,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: aw $ $Date: 2003-10-31 10:12:49 $ + * last change: $Author: aw $ $Date: 2003-11-05 12:25:38 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -94,9 +94,9 @@ namespace basegfx /** Test if this homogen point does have a homogenous part - @return Returns true if this point has no homogenous part + @return Returns sal_True if this point has no homogenous part */ - bool implIsHomogenized() const + sal_Bool implIsHomogenized() const { const double fOne(1.0); return ::basegfx::numeric::fTools::equal(mfW, fOne); @@ -322,13 +322,13 @@ namespace basegfx return *this; } - bool operator==( const B3DHomPoint& rPnt ) const + sal_Bool operator==( const B3DHomPoint& rPnt ) const { implTestAndHomogenize(); return (maTuple == rPnt.maTuple); } - bool operator!=( const B3DHomPoint& rPnt ) const + sal_Bool operator!=( const B3DHomPoint& rPnt ) const { implTestAndHomogenize(); return (maTuple != rPnt.maTuple); -- cgit v1.2.1