]> SALOME platform Git repositories - modules/visu.git/commitdiff
Salome HOME
PAL13021: EDF233 VISU Wrong orientation of a bar.
authorjfa <jfa@opencascade.com>
Mon, 14 Aug 2006 10:56:37 +0000 (10:56 +0000)
committerjfa <jfa@opencascade.com>
Mon, 14 Aug 2006 10:56:37 +0000 (10:56 +0000)
src/CONVERTOR/VISU_Convertor_impl.cxx

index 56c50bbb7941a9ec65f7c76dc5ead63a301f824a..174a0baf9ff3385b2fab49635340512b1ecaca91 100644 (file)
@@ -1108,7 +1108,9 @@ namespace
        int aMeshDimension = theMesh->myDim;
        bool anIsDimPresent[3] = {false, false, false};
        for(int iDim = 0; iDim < aMeshDimension; iDim++){
-         const std::string& aName = aCoords.GetName(iDim);
+         std::string aName = aCoords.GetName(iDim);
+          if ( aName.size() > 1 ) // PAL13021 (PAL12148), aName has size 8 or 16
+            aName = aName.substr(0,1);
          if(aName == "x" || aName == "X")
            anIsDimPresent[eX] = true;
          else if(aName == "y" || aName == "Y")