diff options
Diffstat (limited to 'basegfx/source/range/b2drangeclipper.cxx')
-rw-r--r-- | basegfx/source/range/b2drangeclipper.cxx | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/basegfx/source/range/b2drangeclipper.cxx b/basegfx/source/range/b2drangeclipper.cxx index 77dc5c030aa5..c29b26cefbad 100644 --- a/basegfx/source/range/b2drangeclipper.cxx +++ b/basegfx/source/range/b2drangeclipper.cxx @@ -106,12 +106,8 @@ namespace basegfx const B2DRectangle& getRect() const { return *mpAssociatedRect; } std::ptrdiff_t getTargetPolygonIndex() const { return mnPolygonIdx; } void setTargetPolygonIndex( std::ptrdiff_t nIdx ) { mnPolygonIdx = nIdx; } - EdgeType getEdgeType() const { return meEdgeType; } EdgeDirection getEdgeDirection() const { return meEdgeDirection; } - /// For STL sort - bool operator<( const ActiveEdge& rRHS ) const { return mfInvariantCoord < rRHS.mfInvariantCoord; } - private: /** The invariant coordinate value of this edge (e.g. the common y value, for a horizontal edge) @@ -362,8 +358,6 @@ namespace basegfx } private: - std::ptrdiff_t getPolygonPoolIndex() const { return mnIdx; } - void handleInitialOwnEdge(SweepLineEvent& rEvent, ActiveEdge& rActiveEdge) { |