diff options
Diffstat (limited to 'basegfx')
-rw-r--r-- | basegfx/source/polygon/b2dpolypolygontools.cxx | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/basegfx/source/polygon/b2dpolypolygontools.cxx b/basegfx/source/polygon/b2dpolypolygontools.cxx index 35bc6ed14d47..f904d645bdf3 100644 --- a/basegfx/source/polygon/b2dpolypolygontools.cxx +++ b/basegfx/source/polygon/b2dpolypolygontools.cxx @@ -497,24 +497,6 @@ namespace basegfx return aRetval; } - bool containsOnlyHorizontalAndVerticalEdges(const B2DPolyPolygon& rCandidate) - { - if(rCandidate.areControlPointsUsed()) - { - return false; - } - - for(sal_uInt32 a(0); a < rCandidate.count(); a++) - { - if(!containsOnlyHorizontalAndVerticalEdges(rCandidate.getB2DPolygon(a))) - { - return false; - } - } - - return true; - } - B2DPolyPolygon createSevenSegmentPolyPolygon(sal_Char nNumber, bool bLitSegments) { // config here |