Subversion Repositories gelsvn

Rev

Rev 62 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 62 Rev 129
Line 50... Line 50...
50
	struct Edge
50
	struct Edge
51
	{
51
	{
52
		HalfEdgeIter h0;
52
		HalfEdgeIter h0;
53
		HalfEdgeIter h1;
53
		HalfEdgeIter h1;
54
		int count;
54
		int count;
55
		Edge(): h0(0), h1(0), count(0) {}
55
		Edge(): h0(NULL_HALFEDGE_ITER), h1(NULL_HALFEDGE_ITER), count(0) {}
56
	};
56
	};
57
 
57
 
58
	
58
	
59
 
59
 
60
 
60