Removed all references to the useless old vcg::math::Swap
This commit is contained in:
parent
04268b170f
commit
f85ce4e334
|
@ -80,7 +80,7 @@ public:
|
|||
v[1] = pf->V(pf->Next(nz));
|
||||
assert(v[0] != v[1]); // The face pointed by 'f' is Degenerate (two coincident vertexes)
|
||||
|
||||
if( v[0] > v[1] ) math::Swap(v[0],v[1]);
|
||||
if( v[0] > v[1] ) std::swap(v[0],v[1]);
|
||||
f = pf;
|
||||
z = nz;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue