removed "suggest parentheses around && within ||" warning

This commit is contained in:
Paolo Cignoni 2010-01-11 09:30:44 +00:00
parent 3765096290
commit f017c8646e
1 changed files with 1 additions and 1 deletions

View File

@ -443,7 +443,7 @@ std::pair< float, bool > SegmentSegmentDistance(const Segment3f & R, const Segme
Q_t=Q.P1();
R_s=ClosestPoint(R,Q_t);
} else {
if( ((qa<=0.0f)&&(qb>=1.0f) ||((qb<=0.0f)&&(qa>=1.0f)))){
if( ( ((qa<=0.0f)&&(qb>=1.0f)) || (((qb<=0.0f)&&(qa>=1.0f))))){
R_s=R.P0();
Q_t=ClosestPoint(Q,R_s);
}else{