diff options
author | Armin Weiss <aw@openoffice.org> | 2003-11-05 11:25:58 +0000 |
---|---|---|
committer | Armin Weiss <aw@openoffice.org> | 2003-11-05 11:25:58 +0000 |
commit | c3663a687ccc9365b2b4eb4a3950b8d94c2d6ea7 (patch) | |
tree | c47ce5e59d718d5f772121000a356ef523662b17 /basegfx/inc/basegfx/point | |
parent | 571971699571e0baf9710ddf076ebf27aebb548d (diff) |
Added PolyPolygonTools, Added PolygonTool functionality, changed bool to sal_Bool
Diffstat (limited to 'basegfx/inc/basegfx/point')
-rw-r--r-- | basegfx/inc/basegfx/point/b2dhompoint.hxx | 12 | ||||
-rw-r--r-- | basegfx/inc/basegfx/point/b3dhompoint.hxx | 12 |
2 files changed, 12 insertions, 12 deletions
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); |