1 // Copyright (C) 2007-2014 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, or (at your option) any later version.
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 // SMESH SMDS : implementaion of Salome mesh data structure
24 // File : SMDS_VolumeOfFaces.cxx
25 // Author : Jean-Michel BOULCOURT
29 #pragma warning(disable:4786)
32 #include "SMDS_VolumeOfFaces.hxx"
33 #include "SMDS_IteratorOfElements.hxx"
34 #include "utilities.h"
38 //=======================================================================
41 //=======================================================================
43 void SMDS_VolumeOfFaces::Print(ostream & OS) const
45 OS << "volume <" << GetID() << "> : ";
47 for (i = 0; i < NbFaces()-1; ++i) OS << myFaces[i] << ",";
48 OS << myFaces[i]<< ") " << endl;
52 int SMDS_VolumeOfFaces::NbFaces() const
57 class SMDS_VolumeOfFaces_MyIterator:public SMDS_ElemIterator
59 const SMDS_MeshFace* const *mySet;
63 SMDS_VolumeOfFaces_MyIterator(const SMDS_MeshFace* const *s, int l):
64 mySet(s),myLength(l),index(0) {}
68 return index<myLength;
71 const SMDS_MeshElement* next()
74 return mySet[index-1];
78 SMDS_ElemIteratorPtr SMDS_VolumeOfFaces::
79 elementsIterator(SMDSAbs_ElementType type) const
84 return SMDS_MeshElement::elementsIterator(SMDSAbs_Volume);
86 return SMDS_ElemIteratorPtr(new SMDS_VolumeOfFaces_MyIterator(myFaces,myNbFaces));
88 return SMDS_ElemIteratorPtr
89 (new SMDS_IteratorOfElements
90 (this,type,SMDS_ElemIteratorPtr
91 (new SMDS_VolumeOfFaces_MyIterator(myFaces,myNbFaces))));
95 SMDS_VolumeOfFaces::SMDS_VolumeOfFaces(const SMDS_MeshFace * face1,
96 const SMDS_MeshFace * face2,
97 const SMDS_MeshFace * face3,
98 const SMDS_MeshFace * face4)
100 //MESSAGE("****************************************************** SMDS_VolumeOfFaces");
110 SMDS_VolumeOfFaces::SMDS_VolumeOfFaces(const SMDS_MeshFace * face1,
111 const SMDS_MeshFace * face2,
112 const SMDS_MeshFace * face3,
113 const SMDS_MeshFace * face4,
114 const SMDS_MeshFace * face5)
116 //MESSAGE("****************************************************** SMDS_VolumeOfFaces");
126 SMDS_VolumeOfFaces::SMDS_VolumeOfFaces(const SMDS_MeshFace * face1,
127 const SMDS_MeshFace * face2,
128 const SMDS_MeshFace * face3,
129 const SMDS_MeshFace * face4,
130 const SMDS_MeshFace * face5,
131 const SMDS_MeshFace * face6)
133 //MESSAGE("****************************************************** SMDS_VolumeOfFaces");
143 SMDSAbs_EntityType SMDS_VolumeOfFaces::GetEntityType() const
145 SMDSAbs_EntityType aType = SMDSEntity_Tetra;
148 case 4: aType = SMDSEntity_Tetra; break;
149 case 5: aType = SMDSEntity_Pyramid; break;
150 case 6: aType = SMDSEntity_Penta; break;
152 default: aType = SMDSEntity_Hexa; break;
157 SMDSAbs_GeometryType SMDS_VolumeOfFaces::GetGeomType() const
159 SMDSAbs_GeometryType aType = SMDSGeom_NONE;
162 case 4: aType = SMDSGeom_TETRA; break;
163 case 5: aType = SMDSGeom_PYRAMID; break;
164 case 6: aType = SMDSGeom_PENTA; break;
166 default: aType = SMDSGeom_HEXA; break;