summaryrefslogtreecommitdiff
path: root/basegfx/inc/basegfx/point/b3dpoint.hxx
diff options
context:
space:
mode:
authorArmin Weiss <aw@openoffice.org>2003-11-06 15:30:30 +0000
committerArmin Weiss <aw@openoffice.org>2003-11-06 15:30:30 +0000
commitfef23aeb65bed8951a90ed71beb1552b62cfce71 (patch)
treed2ee4fe2d735d77de4f1618ea6664042269a67fa /basegfx/inc/basegfx/point/b3dpoint.hxx
parent8db4a5314c1b74eba07f4f4e383fafa24239e1f1 (diff)
Added tooling for PolyPolygon cutting and some more tooling at B2DPolygon and B2DPolyPolygon
Diffstat (limited to 'basegfx/inc/basegfx/point/b3dpoint.hxx')
-rw-r--r--basegfx/inc/basegfx/point/b3dpoint.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/basegfx/inc/basegfx/point/b3dpoint.hxx b/basegfx/inc/basegfx/point/b3dpoint.hxx
index d142b0bfe726..65047e6c26cf 100644
--- a/basegfx/inc/basegfx/point/b3dpoint.hxx
+++ b/basegfx/inc/basegfx/point/b3dpoint.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: b3dpoint.hxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: aw $ $Date: 2003-10-31 10:12:50 $
+ * last change: $Author: aw $ $Date: 2003-11-06 16:30:24 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -78,7 +78,7 @@ namespace basegfx
@see B3DTuple
*/
- class B3DPoint : public tuple::B3DTuple
+ class B3DPoint : public ::basegfx::tuple::B3DTuple
{
public:
/** Create a 3D Point
@@ -121,7 +121,7 @@ namespace basegfx
/** constructor with tuple to allow copy-constructing
from B3DTuple-based classes
*/
- B3DPoint(const B3DTuple& rTuple)
+ B3DPoint(const ::basegfx::tuple::B3DTuple& rTuple)
: B3DTuple(rTuple)
{}
@@ -131,7 +131,7 @@ namespace basegfx
/** assignment operator to allow assigning the results
of B3DTuple calculations
*/
- B3DPoint& operator=( const B3DTuple& rVec )
+ B3DPoint& operator=( const ::basegfx::tuple::B3DTuple& rVec )
{
mfX = rVec.getX();
mfY = rVec.getY();
@@ -141,7 +141,7 @@ namespace basegfx
static const B3DPoint& getEmptyPoint()
{
- return (const B3DPoint&) tuple::B3DTuple::getEmptyTuple();
+ return (const B3DPoint&) ::basegfx::tuple::B3DTuple::getEmptyTuple();
}
};
} // end of namespace point