1 // Copyright (C) 2007-2013 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 // Lesser General Public License for more details.
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 #include "MED_CoordUtils.hxx"
24 #include "MED_Utilities.hxx"
29 enum ECoordName{eX, eY, eZ, eNone};
31 template<ECoordName TCoordId>
33 GetCoord(const TCCoordSlice& theCoordSlice)
35 return theCoordSlice[TCoordId];
40 GetCoord<eNone>(const TCCoordSlice& theCoordSlice)
96 //---------------------------------------------------------------
98 ::TCoordHelper(TGetCoord* theGetCoord):
99 myGetCoord(theGetCoord)
104 ::GetCoord(TCCoordSlice& theCoordSlice,
107 return (*myGetCoord[theCoordId])(theCoordSlice);
111 //---------------------------------------------------------------
113 GetCoordHelper(PNodeInfo theNodeInfo)
115 PCoordHelper aCoordHelper;
117 PMeshInfo aMeshInfo = theNodeInfo->GetMeshInfo();
118 TInt aMeshDimension = aMeshInfo->GetDim();
119 bool anIsDimPresent[3] = {false, false, false};
120 for(int iDim = 0; iDim < aMeshDimension; iDim++){
121 // PAL16857(SMESH not conform to the MED convention) ->
122 // 1D - always along X
123 // 2D - always in XOY plane
124 anIsDimPresent[iDim] = iDim < aMeshDimension;
125 // std::string aName = theNodeInfo->GetCoordName(iDim);
126 // if ( aName.size() > 1 ) // PAL12148, aName has size 8 or 16
127 // aName = aName.substr(0,1);
128 // if(aName == "x" || aName == "X")
129 // anIsDimPresent[eX] = true;
130 // else if(aName == "y" || aName == "Y")
131 // anIsDimPresent[eY] = true;
132 // else if(aName == "z" || aName == "Z")
133 // anIsDimPresent[eZ] = true;
136 switch(aMeshDimension){
138 aCoordHelper.reset(new TCoordHelper(aXYZGetCoord));
141 if(anIsDimPresent[eY] && anIsDimPresent[eZ])
142 aCoordHelper.reset(new TCoordHelper(aYZGetCoord));
143 else if(anIsDimPresent[eX] && anIsDimPresent[eZ])
144 aCoordHelper.reset(new TCoordHelper(aXZGetCoord));
146 aCoordHelper.reset(new TCoordHelper(aXYGetCoord));
149 if(anIsDimPresent[eY])
150 aCoordHelper.reset(new TCoordHelper(aYGetCoord));
151 else if(anIsDimPresent[eZ])
152 aCoordHelper.reset(new TCoordHelper(aZGetCoord));
154 aCoordHelper.reset(new TCoordHelper(aXGetCoord));