[bos #42468] Change vertex limits for right and back faces to have same node ranges as gmsh export.

This commit is contained in:
cconopoima 2024-07-05 10:16:16 +01:00
parent cc09b83e05
commit 1824b937f0

View File

@ -80,6 +80,40 @@ namespace SMESHUtils
}
}
/* Define vertex numeration convention for vertex and face index limits!
*
* V7 V6
* +--------+--------+--------+
* / / / /|
* +--------+--------+--------+ |
* / / / /| |
* +--------+--------+--------+ | +
* / / / V5 /| |/|
* V4 +--------+--------+--------+ | + |
* | | | |/| |
* | | | + | +
* | | |/| |/|
* + | | + |
* | | | |/| |
* | +-------+----------+-| + | + V2
* | / V3 |/| |/
* + / | +
* | / | |/
* | / | +
* |/ |/
* +--------+--------+--------+
* V0 V1
*
* Canonical cartesian axis orientation
*
* ^ ^ j (or y)
* k (or z)| /
* | /
* |/
* +------> i (or x)
*
*
*/
template<typename T>
std::vector<T> SMESH_RegularGrid::getFaceIndexLimits( const FaceType face ) const
{
@ -88,10 +122,10 @@ namespace SMESHUtils
return std::vector<T>{1,1,1,mnx,mny,1}; /*V0-V2*/
break;
case FaceType::B_RIGHT:
return std::vector<T>{mnx,1,1,mnx,mny,mnz}; /*V1-V6*/
return std::vector<T>{mnx,1,mnz,mnx,mny,1}; /*V5-V2*/ /*-> [bos #42468] pass from V1-V6 to V5-V2*/
break;
case FaceType::B_BACK:
return std::vector<T>{1,mny,1,mnx,mny,mnz}; /*V3-V6*/
return std::vector<T>{mnx,mny,1,1,mny,mnz}; /*V2-V7*/ /*-> [bos #42468] pass from V3-V6 to V2-V7*/
break;
case FaceType::B_LEFT:
return std::vector<T>{1,1,1,1,mny,mnz}; /*V0-V7*/