Subversion Repositories gelsvn

Rev

Rev 630 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 630 Rev 632
Line 568... Line 568...
568
		{
568
		{
569
			for(HalfEdgeIDIterator h = m.halfedges_begin(); h != m.halfedges_end(); ++h){
569
			for(HalfEdgeIDIterator h = m.halfedges_begin(); h != m.halfedges_end(); ++h){
570
				if(boundary(m, *h)) 
570
				if(boundary(m, *h)) 
571
					continue;  
571
					continue;  
572
				double e = efun.delta_energy(m, *h);
572
				double e = efun.delta_energy(m, *h);
573
				tmin = s_min(e, tmin);
573
				tmin = std::min(e, tmin);
574
			}
574
			}
575
		}
575
		}
576
		if (tmin < 0.0) 
576
		if (tmin < 0.0) 
577
			T = -2*tmin;
577
			T = -2*tmin;
578
		
578