fix compilation error

This commit is contained in:
eap 2005-06-15 05:31:12 +00:00
parent a90ef6efde
commit 5a053fbfd0

View File

@ -536,7 +536,7 @@ bool SMDS_VolumeTool::GetFaceNormal (int faceIndex, double & X, double & Y, doub
XYZ aVec13( p3 - p1 );
XYZ cross = aVec12.Crossed( aVec13 );
if ( myFaceNbNodes[ faceIndex ] == 4 ) {
if ( myFaceNbNodes == 4 ) {
XYZ p4 ( myFaceNodes[3] );
XYZ aVec14( p4 - p1 );
XYZ cross2 = aVec13.Crossed( aVec14 );