summaryrefslogtreecommitdiffstats
path: root/src/2geom/region.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/2geom/region.cpp')
-rw-r--r--src/2geom/region.cpp45
1 files changed, 0 insertions, 45 deletions
diff --git a/src/2geom/region.cpp b/src/2geom/region.cpp
deleted file mode 100644
index 8cfb1c68c..000000000
--- a/src/2geom/region.cpp
+++ /dev/null
@@ -1,45 +0,0 @@
-#include <2geom/region.h>
-#include <2geom/utils.h>
-
-#include <2geom/shape.h>
-
-namespace Geom {
-
-Region Region::operator*(Affine const &m) const {
- Region r((m.flips() ? boundary.reverse() : boundary) * m, fill);
- if(box && m.isZoom()) r.box = (*box) * m;
- return r;
-}
-
-bool Region::invariants() const {
- return self_crossings(boundary).empty();
-}
-
-unsigned outer_index(Regions const &ps) {
- if(ps.size() <= 1 || ps[0].contains(ps[1])) {
- return 0;
- } else {
- /* Since we've already shown that chunks[0] is not outside
- it can be used as an exemplar inner. */
- Point exemplar = Path(ps[0]).initialPoint();
- for(unsigned i = 1; i < ps.size(); i++) {
- if(ps[i].contains(exemplar)) {
- return i;
- }
- }
- }
- return ps.size();
-}
-
-}
-
-/*
- Local Variables:
- mode:c++
- c-file-style:"stroustrup"
- c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
- indent-tabs-mode:nil
- fill-column:99
- End:
-*/
-// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :