diff options
author | Ivo Hinkelmann <ihi@openoffice.org> | 2008-04-24 14:04:56 +0000 |
---|---|---|
committer | Ivo Hinkelmann <ihi@openoffice.org> | 2008-04-24 14:04:56 +0000 |
commit | 0b60f2a661e35e749ffe1afc4af4dbb07863ead9 (patch) | |
tree | 98e939661409710d4bf420304f7fbc5e7ae995e2 /basegfx/inc | |
parent | fe97ba8c3f09bc87010a653a8a553ed6277a2383 (diff) |
INTEGRATION: CWS aw055 (1.6.66); FILE MERGED
2008/02/29 04:31:27 aw 1.6.66.2: removed op equal at polygons, added to tooling. Done for 2D and 3D
2008/02/28 08:04:30 aw 1.6.66.1: finetuning for SVG im/export
Diffstat (limited to 'basegfx/inc')
-rw-r--r-- | basegfx/inc/basegfx/polygon/b3dpolygon.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/basegfx/inc/basegfx/polygon/b3dpolygon.hxx b/basegfx/inc/basegfx/polygon/b3dpolygon.hxx index cc18168881c5..3cea98b235b1 100644 --- a/basegfx/inc/basegfx/polygon/b3dpolygon.hxx +++ b/basegfx/inc/basegfx/polygon/b3dpolygon.hxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: b3dpolygon.hxx,v $ - * $Revision: 1.7 $ + * $Revision: 1.8 $ * * This file is part of OpenOffice.org. * @@ -78,12 +78,12 @@ namespace basegfx sal_uInt32 count() const; // Coordinate interface - ::basegfx::B3DPoint getB3DPoint(sal_uInt32 nIndex) const; - void setB3DPoint(sal_uInt32 nIndex, const ::basegfx::B3DPoint& rValue); + basegfx::B3DPoint getB3DPoint(sal_uInt32 nIndex) const; + void setB3DPoint(sal_uInt32 nIndex, const basegfx::B3DPoint& rValue); // Coordinate insert/append - void insert(sal_uInt32 nIndex, const ::basegfx::B3DPoint& rPoint, sal_uInt32 nCount = 1); - void append(const ::basegfx::B3DPoint& rPoint, sal_uInt32 nCount = 1); + void insert(sal_uInt32 nIndex, const basegfx::B3DPoint& rPoint, sal_uInt32 nCount = 1); + void append(const basegfx::B3DPoint& rPoint, sal_uInt32 nCount = 1); // insert/append other 2D polygons void insert(sal_uInt32 nIndex, const B3DPolygon& rPoly, sal_uInt32 nIndex2 = 0, sal_uInt32 nCount = 0); @@ -109,7 +109,7 @@ namespace basegfx void removeDoublePoints(); // apply transformation given in matrix form to the polygon - void transform(const ::basegfx::B3DHomMatrix& rMatrix); + void transform(const basegfx::B3DHomMatrix& rMatrix); }; } // end of namespace basegfx |