#5898 Postfix fault direction instead of prefix

This commit is contained in:
Magne Sjaastad 2020-05-22 10:28:42 +02:00
parent 6b64ab7982
commit 82969c3523

View File

@ -1320,17 +1320,17 @@ QString RifEclipseInputFileTools::faultFaceText( cvf::StructGridInterface::FaceT
switch ( faceType ) switch ( faceType )
{ {
case cvf::StructGridInterface::POS_I: case cvf::StructGridInterface::POS_I:
return QString( " I" ); return QString( "I " );
case cvf::StructGridInterface::NEG_I: case cvf::StructGridInterface::NEG_I:
return QString( "-I" ); return QString( "I-" );
case cvf::StructGridInterface::POS_J: case cvf::StructGridInterface::POS_J:
return QString( " J" ); return QString( "J " );
case cvf::StructGridInterface::NEG_J: case cvf::StructGridInterface::NEG_J:
return QString( "-J" ); return QString( "J-" );
case cvf::StructGridInterface::POS_K: case cvf::StructGridInterface::POS_K:
return QString( " K" ); return QString( "K " );
case cvf::StructGridInterface::NEG_K: case cvf::StructGridInterface::NEG_K:
return QString( "-K" ); return QString( "K-" );
default: default:
CVF_ASSERT( false ); CVF_ASSERT( false );
} }