summaryrefslogtreecommitdiffstats
path: root/src/2geom/crossing.h
diff options
context:
space:
mode:
authorJohan B. C. Engelen <jbc.engelen@swissonline.ch>2008-09-01 19:29:30 +0000
committerjohanengelen <johanengelen@users.sourceforge.net>2008-09-01 19:29:30 +0000
commit0509575421dcc13079ea20f68592bc2fe05d8e52 (patch)
tree9d8993bc4a3431e16024f12390fd2fd9bda46243 /src/2geom/crossing.h
parentyet another update of ru.po (diff)
downloadinkscape-0509575421dcc13079ea20f68592bc2fe05d8e52.tar.gz
inkscape-0509575421dcc13079ea20f68592bc2fe05d8e52.zip
update 2geom (rev. 1569)
(bzr r6748)
Diffstat (limited to 'src/2geom/crossing.h')
-rw-r--r--src/2geom/crossing.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/2geom/crossing.h b/src/2geom/crossing.h
index 546e33ebd..b16c7e46d 100644
--- a/src/2geom/crossing.h
+++ b/src/2geom/crossing.h
@@ -25,6 +25,7 @@ struct Crossing {
};
+/*
struct Edge {
unsigned node, path;
double time;
@@ -49,7 +50,6 @@ struct CrossingNode {
}
};
-typedef std::vector<Crossing> Crossings;
typedef std::vector<CrossingNode> CrossingGraph;
@@ -61,6 +61,7 @@ struct TimeOrder {
class Path;
CrossingGraph create_crossing_graph(std::vector<Path> const &p, Crossings const &crs);
+*/
/*inline bool are_near(Crossing a, Crossing b) {
return are_near(a.ta, b.ta) && are_near(a.tb, b.tb);
@@ -78,6 +79,7 @@ struct CrossingOrder {
}
};
+typedef std::vector<Crossing> Crossings;
typedef std::vector<Crossings> CrossingSet;