summaryrefslogtreecommitdiff
path: root/basegfx
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2008-08-19 22:53:01 +0000
committerVladimir Glazounov <vg@openoffice.org>2008-08-19 22:53:01 +0000
commit9cac5a830433a53d7d08635dc806415541d0bfa2 (patch)
tree13ddf96e9e11c485ea998481089f7fc3e7b2b056 /basegfx
parent7f962a3261fbee18eecae54db0696a984fcf0106 (diff)
INTEGRATION: CWS aw033 (1.13.12); FILE MERGED
2008/05/27 14:08:43 aw 1.13.12.4: #i39532# changes DEV300 m12 resync corrections 2008/05/14 14:42:17 aw 1.13.12.3: RESYNC: (1.13-1.15); FILE MERGED 2007/12/03 13:53:13 aw 1.13.12.2: #i39532# checkin for resync 2007/11/26 11:18:22 aw 1.13.12.1: #i39532# reworked B2DPolygon default decomposition
Diffstat (limited to 'basegfx')
-rw-r--r--basegfx/inc/basegfx/polygon/b2dpolypolygon.hxx21
1 files changed, 20 insertions, 1 deletions
diff --git a/basegfx/inc/basegfx/polygon/b2dpolypolygon.hxx b/basegfx/inc/basegfx/polygon/b2dpolypolygon.hxx
index e6ae88a50713..9c8724b8ee6d 100644
--- a/basegfx/inc/basegfx/polygon/b2dpolypolygon.hxx
+++ b/basegfx/inc/basegfx/polygon/b2dpolypolygon.hxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: b2dpolypolygon.hxx,v $
- * $Revision: 1.15 $
+ * $Revision: 1.16 $
*
* This file is part of OpenOffice.org.
*
@@ -33,6 +33,7 @@
#include <sal/types.h>
#include <o3tl/cow_wrapper.hxx>
+#include <basegfx/range/b2drange.hxx>
// predeclarations
class ImplB2DPolyPolygon;
@@ -84,6 +85,24 @@ namespace basegfx
void insert(sal_uInt32 nIndex, const B2DPolygon& rPolygon, sal_uInt32 nCount = 1);
void append(const B2DPolygon& rPolygon, sal_uInt32 nCount = 1);
+ /** Default adaptive subdivision access
+
+ For details refer to B2DPolygon::getDefaultAdaptiveSubdivision()
+
+ @return
+ The default subdivision of this polygon
+ */
+ B2DPolyPolygon getDefaultAdaptiveSubdivision() const;
+
+ /** Get the B2DRange (Rectangle dimensions) of this B2DPolyPolygon
+
+ For details refer to B2DPolygon::getB2DRange()
+
+ @return
+ The outer range of the bezier curve/polygon
+ */
+ B2DRange getB2DRange() const;
+
// insert/append multiple polygons
void insert(sal_uInt32 nIndex, const B2DPolyPolygon& rPolyPolygon);
void append(const B2DPolyPolygon& rPolyPolygon);