Subversion Repositories gelsvn

Rev

Rev 103 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 103 Rev 129
Line 14... Line 14...
14
	Face_template<R>::Face_template(): 
14
		Face_template<R>::Face_template(): 
15
		last(NULL_HALFEDGE_ITER),
15
				last(NULL_HALFEDGE_ITER),
16
		touched(0)
16
				touched(0)
17
	{}
17
		{}
18
 
18
 
19
	FaceIter NULL_FACE_ITER(0);
-
 
20
	
-
 
21
	template struct Face_template<Iters>;
-
 
22
 
-
 
23
	int no_edges(FaceIter f)
19
		int no_edges(FaceIter f)
24
	{
20
		{
25
		FaceCirculator fc(f);
21
				FaceCirculator fc(f);
26
		while(!fc.end()) ++fc;
22
				while(!fc.end()) ++fc;
27
		return fc.no_steps();
23
				return fc.no_steps();
Line 88... Line 84...
88
			}
84
				}
89
		c /= fc.no_steps();
85
				c /= fc.no_steps();
90
		return c;
86
				return c;
91
	}
87
		}
92
	
88
 
-
 
89
		template struct Face_template<Iters>;	
-
 
90
 
93
}
91
}