Version 4.3.0.0.beta1, tag libreoffice-4.3.0.0.beta1
[LibreOffice.git] / include / basegfx / polygon / b2dpolygoncutandtouch.hxx
blobc5a2a0fb0cf960d0eddbf6d7ae18b8446d965575
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_BASEGFX_POLYGON_B2DPOLYGONCUTANDTOUCH_HXX
21 #define INCLUDED_BASEGFX_POLYGON_B2DPOLYGONCUTANDTOUCH_HXX
23 #include <basegfx/polygon/b2dpolygon.hxx>
24 #include <basegfx/polygon/b2dpolypolygon.hxx>
25 #include <basegfx/basegfxdllapi.h>
29 namespace basegfx
31 namespace tools
33 // look for self-intersections and self-touches (points on an edge) in given polygon and add
34 // extra points there. Result will have no touches or intersections on an edge, only on points
35 BASEGFX_DLLPUBLIC B2DPolygon addPointsAtCutsAndTouches(const B2DPolygon& rCandidate);
37 // look for polypolygon-intersections and polypolygon-touches (point of poly A on an edge of poly B) in given PolyPolygon and add
38 // extra points there. Result will have no touches or intersections between contained polygons on an edge, only on points. For
39 // convenience, the correction for self-intersections for each member polygon will be used, too.
40 // Changed: Self intersections are searched by default, but may be switched off by 2nd parameter.
41 BASEGFX_DLLPUBLIC B2DPolyPolygon addPointsAtCutsAndTouches(const B2DPolyPolygon& rCandidate, bool bSelfIntersections = true);
43 // look for intersections of rCandidate with the edge from rStart to rEnd and add extra points there.
44 // Points are only added in the range of the edge, not on the endless vector.
45 BASEGFX_DLLPUBLIC B2DPolygon addPointsAtCuts(const B2DPolygon& rCandidate, const B2DPoint& rStart, const B2DPoint& rEnd);
47 // look for intersections of rCandidate with the mask Polygon and add extra points there.
48 // The mask polygon is assumed to be closed, even when it's not explicitly.
49 BASEGFX_DLLPUBLIC B2DPolygon addPointsAtCuts(const B2DPolygon& rCandidate, const B2DPolyPolygon& rMask);
51 } // end of namespace tools
52 } // end of namespace basegfx
56 #endif // INCLUDED_BASEGFX_POLYGON_B2DPOLYGONCUTANDTOUCH_HXX
58 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */