summaryrefslogtreecommitdiff
path: root/basegfx/source/polygon/b2dpolypolygoncutter.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'basegfx/source/polygon/b2dpolypolygoncutter.cxx')
-rw-r--r--basegfx/source/polygon/b2dpolypolygoncutter.cxx30
1 files changed, 0 insertions, 30 deletions
diff --git a/basegfx/source/polygon/b2dpolypolygoncutter.cxx b/basegfx/source/polygon/b2dpolypolygoncutter.cxx
index 47cda51e0db5..aaad33500c21 100644
--- a/basegfx/source/polygon/b2dpolypolygoncutter.cxx
+++ b/basegfx/source/polygon/b2dpolypolygoncutter.cxx
@@ -31,14 +31,11 @@
#include <vector>
#include <algorithm>
-
-
namespace basegfx
{
namespace
{
-
struct StripHelper
{
B2DRange maRange;
@@ -46,8 +43,6 @@ namespace basegfx
B2VectorOrientation meOrinetation;
};
-
-
struct PN
{
public:
@@ -57,8 +52,6 @@ namespace basegfx
sal_uInt32 mnIN;
};
-
-
struct VN
{
public:
@@ -72,8 +65,6 @@ namespace basegfx
B2DVector maOriginalNext;
};
-
-
struct SN
{
public:
@@ -99,16 +90,12 @@ namespace basegfx
}
};
-
-
typedef ::std::vector< PN > PNV;
typedef ::std::vector< VN > VNV;
typedef ::std::vector< SN > SNV;
typedef ::std::pair< basegfx::B2DPoint /*orig*/, basegfx::B2DPoint /*repl*/ > CorrectionPair;
typedef ::std::vector< CorrectionPair > CorrectionTable;
-
-
class solver
{
private:
@@ -691,19 +678,14 @@ namespace basegfx
}
};
-
-
} // end of anonymous namespace
} // end of namespace basegfx
-
-
namespace basegfx
{
namespace tools
{
-
B2DPolyPolygon solveCrossovers(const B2DPolyPolygon& rCandidate)
{
if(rCandidate.count() > 1L)
@@ -717,16 +699,12 @@ namespace basegfx
}
}
-
-
B2DPolyPolygon solveCrossovers(const B2DPolygon& rCandidate)
{
solver aSolver(rCandidate);
return aSolver.getB2DPolyPolygon();
}
-
-
B2DPolyPolygon stripNeutralPolygons(const B2DPolyPolygon& rCandidate)
{
B2DPolyPolygon aRetval;
@@ -744,8 +722,6 @@ namespace basegfx
return aRetval;
}
-
-
B2DPolyPolygon createNonzeroConform(const B2DPolyPolygon& rCandidate)
{
B2DPolyPolygon aCandidate;
@@ -832,8 +808,6 @@ namespace basegfx
return aCandidate;
}
-
-
B2DPolyPolygon stripDispensablePolygons(const B2DPolyPolygon& rCandidate, bool bKeepAboveZero)
{
const sal_uInt32 nCount(rCandidate.count());
@@ -936,8 +910,6 @@ namespace basegfx
return aRetval;
}
-
-
B2DPolyPolygon prepareForPolygonOperation(const B2DPolygon& rCandidate)
{
solver aSolver(rCandidate);
@@ -1134,8 +1106,6 @@ namespace basegfx
return B2DPolyPolygon();
}
-
-
} // end of namespace tools
} // end of namespace basegfx