Skip to content

Commit

Permalink
Mesh properties : improve output
Browse files Browse the repository at this point in the history
  • Loading branch information
valette committed Dec 20, 2024
1 parent ef75175 commit 7fe83ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Common/vtkSurface.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -825,7 +825,7 @@ void vtkSurface::GetMeshProperties(std::stringstream &stream)
this->DeleteConnectedComponents();


stream<<" Valences entropy: "<<this->GetValenceEntropy()<<endl;
stream<<"Vertex valence entropy: "<<this->GetValenceEntropy()<<endl;
double a,b,c,number;
a=0;
b=0;
Expand Down Expand Up @@ -858,7 +858,7 @@ void vtkSurface::GetMeshProperties(std::stringstream &stream)
<<" AverageMinAngle="<<Aav<<endl
<<" Qmin="<<Qmin<<endl
<<" Qav="<<Qav<<endl
<<" P30="<<P30<<endl;
<<" Angles bellow 30 (%)="<<P30<<endl;
}

stream<<"*****************************************************************************"<<endl;
Expand Down

0 comments on commit 7fe83ac

Please sign in to comment.