Subversion Repositories gelsvn

Rev

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

Rev 178 Rev 331
Line 38... Line 38...
38
			steps(0) {}
38
			steps(0) {}
39
 
39
 
40
		/// Return current vertex pointed to by circulator.
40
		/// Return current vertex pointed to by circulator.
41
		VertexIter get_vertex() const { return he->vert;}
41
		VertexIter get_vertex() const { return he->vert;}
42
 
42
 
43
		/// Return current halfedge pointed to by circulator
43
		/** Return current halfedge pointed to by circulator.
-
 
44
				This is the halfedge emanating from the current vertex NOT the 
-
 
45
				one pointing to the current vertex. */
44
		HalfEdgeIter get_halfedge() const { return he->next;}
46
		HalfEdgeIter get_halfedge() const { return he->next;}
45
 
47
 
46
		/** Return current face pointed to by circulator. I.e.
48
		/** Return current face pointed to by circulator. I.e.
47
				The adjacent face across the current halfedge. */
49
				The adjacent face across the current halfedge. */
48
		FaceIter get_face() const {return he->next->opp->face;}
50
		FaceIter get_face() const {return he->next->opp->face;}