Salome HOME
Merge from V5_1_4_BR 07/05/2010
[modules/smesh.git] / src / SMDS / SMDSAbs_ElementType.hxx
1 //  Copyright (C) 2007-2010  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
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.
10 //
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.
15 //
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
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 //  SMESH SMDS : implementaion of Salome mesh data structure
24 //  File   : SMDSAbs_ElementType.hxx
25 //  Module : SMESH
26 //
27 #ifndef _SMDSAbs_ElementType_HeaderFile
28 #define _SMDSAbs_ElementType_HeaderFile
29
30 ///////////////////////////////////////////////////////////////////////////////
31 /// Type (node, edge, face or volume) of elements
32 ///////////////////////////////////////////////////////////////////////////////
33 enum SMDSAbs_ElementType
34   {
35     SMDSAbs_All,
36     SMDSAbs_Node,
37     SMDSAbs_Edge,
38     SMDSAbs_Face,
39     SMDSAbs_Volume,
40     SMDSAbs_0DElement,
41     SMDSAbs_NbElementTypes
42   };
43
44 /*! enumeration for element geometry type */
45 enum SMDSAbs_GeometryType
46   {
47     // 0D element
48     SMDSGeom_POINT,
49     // 1D element
50     SMDSGeom_EDGE,
51     // 2D element
52     SMDSGeom_TRIANGLE,
53     SMDSGeom_QUADRANGLE,
54     SMDSGeom_POLYGON,
55     // 3D element
56     SMDSGeom_TETRA,
57     SMDSGeom_PYRAMID,
58     SMDSGeom_HEXA,
59     SMDSGeom_PENTA,
60     SMDSGeom_POLYHEDRA,
61   };
62
63
64 enum SMDSAbs_ElementOrder {
65   ORDER_ANY,          /*! entities of any order */
66   ORDER_LINEAR,       /*! entities of 1st order */
67   ORDER_QUADRATIC     /*! entities of 2nd order */
68 };
69
70 /*!
71  * Enumeration of entity type uses in mesh info array,
72  *  and should be synchronised with enum in SMDS  
73  */
74 enum SMDSAbs_EntityType {
75   SMDSEntity_Node,
76   SMDSEntity_0D,
77   SMDSEntity_Edge,
78   SMDSEntity_Quad_Edge,
79   SMDSEntity_Triangle,
80   SMDSEntity_Quad_Triangle,
81   SMDSEntity_Quadrangle,
82   SMDSEntity_Quad_Quadrangle,
83   SMDSEntity_Polygon,
84   SMDSEntity_Quad_Polygon,
85   SMDSEntity_Tetra,
86   SMDSEntity_Quad_Tetra,
87   SMDSEntity_Pyramid,
88   SMDSEntity_Quad_Pyramid,
89   SMDSEntity_Hexa,
90   SMDSEntity_Quad_Hexa,
91   SMDSEntity_Penta,
92   SMDSEntity_Quad_Penta,
93   SMDSEntity_Polyhedra,
94   SMDSEntity_Quad_Polyhedra,
95   SMDSEntity_Last
96 };
97
98 #endif