mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-11-15 01:58:35 +05:00
0021542: EDF 1699 SMESH: Reorient a group of faces
namespace SMESHUtils { + template <class TVECTOR> + void CompactVector(TVECTOR& vec) }
This commit is contained in:
parent
4847e994d9
commit
b998225160
@ -60,6 +60,12 @@ namespace SMESHUtils
|
||||
TVECTOR v2;
|
||||
vec.swap( v2 );
|
||||
}
|
||||
template <class TVECTOR>
|
||||
void CompactVector(TVECTOR& vec)
|
||||
{
|
||||
TVECTOR v2( vec );
|
||||
vec.swap( v2 );
|
||||
}
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
|
Loading…
Reference in New Issue
Block a user