More porting work

This commit is contained in:
Alessandro Ranellucci 2013-09-08 00:44:01 +02:00
parent 5adb187dd2
commit 46bd407da4
3 changed files with 131 additions and 46 deletions

View file

@ -46,9 +46,11 @@ class IntersectionLine
int edge_a_id;
int edge_b_id;
FacetEdgeType edge_type;
IntersectionLine() : a_id(-1), b_id(-1), edge_a_id(-1), edge_b_id(-1), edge_type(feNone) {};
bool skip;
IntersectionLine() : a_id(-1), b_id(-1), edge_a_id(-1), edge_b_id(-1), edge_type(feNone), skip(false) {};
};
typedef std::vector<IntersectionLine> IntersectionLines;
typedef std::vector<IntersectionLine*> IntersectionLinePtrs;
}