Subversion Repositories gelsvn

Rev

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

Rev 23 Rev 26
Line 20... Line 20...
20
	
20
	
21
	template class Face_template<Iters>;
21
	template class Face_template<Iters>;
22
 
22
 
23
	int no_edges(FaceIter f)
23
	int no_edges(FaceIter f)
24
	{
24
	{
25
		FaceCirculator(fc(f));
25
		FaceCirculator fc(f);
26
		while(!fc.end()) ++fc;
26
		while(!fc.end()) ++fc;
27
		return fc.no_steps();
27
		return fc.no_steps();
28
	}
28
	}
29
 
29
 
30
	Vec3f get_normal(FaceIter f)
30
	Vec3f get_normal(FaceIter f)