Salome HOME
Merge from V6_5_BR 05/06/2012
[modules/smesh.git] / src / SMDS / SMDSAbs_ElementType.hxx
1 // Copyright (C) 2007-2012  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_HEXAGONAL_PRISM,
61     SMDSGeom_POLYHEDRA,
62   };
63
64
65 enum SMDSAbs_ElementOrder {
66   ORDER_ANY,          /*! entities of any order */
67   ORDER_LINEAR,       /*! entities of 1st order */
68   ORDER_QUADRATIC     /*! entities of 2nd order */
69 };
70
71 /*!
72  * Enumeration of entity type uses in mesh info array,
73  *  and should be synchronised with enum in SMDS  
74  */
75 enum SMDSAbs_EntityType {
76   SMDSEntity_Node,
77   SMDSEntity_0D,
78   SMDSEntity_Edge,
79   SMDSEntity_Quad_Edge,
80   SMDSEntity_Triangle,
81   SMDSEntity_Quad_Triangle,
82   SMDSEntity_Quadrangle,
83   SMDSEntity_Quad_Quadrangle,
84   SMDSEntity_BiQuad_Quadrangle,
85   SMDSEntity_Polygon,
86   SMDSEntity_Quad_Polygon,
87   SMDSEntity_Tetra,
88   SMDSEntity_Quad_Tetra,
89   SMDSEntity_Pyramid,
90   SMDSEntity_Quad_Pyramid,
91   SMDSEntity_Hexa,
92   SMDSEntity_Quad_Hexa,
93   SMDSEntity_TriQuad_Hexa,
94   SMDSEntity_Penta,
95   SMDSEntity_Quad_Penta,
96   SMDSEntity_Hexagonal_Prism,
97   SMDSEntity_Polyhedra,
98   SMDSEntity_Quad_Polyhedra,
99   SMDSEntity_Last
100 };
101
102 #endif