std::size_t nbPoints=std::distance(begin,end);
if(nbPoints<3)
throw INTERP_KERNEL::Exception("MEDCouplingUMesh::ComputeVecAndPtOfFace : < of 3 points in face ! not able to find a plane on that face !");
- double vec[3];
+ double vec[3]={0.,0.,0.};
std::size_t j=0;
bool refFound=false;
for(;j<nbPoints-1 && !refFound;j++)
int nextNode=-1;
int prevNode=-1;
double resRef;
- double angleNext;
+ double angleNext=0.;
while(nextNode!=startNode)
{
nextNode=-1;