Salome HOME
Fix compilation errors using gcc-5.X relating to explicit stream::operator bool()
[modules/smesh.git] / src / SMDS / SMDSAbs_ElementType.hxx
1 // Copyright (C) 2007-2015  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, or (at your option) any later version.
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_Ball,
42     SMDSAbs_NbElementTypes
43   };
44
45 /*! enumeration for element geometry type */
46 enum SMDSAbs_GeometryType
47   {
48     // 0D element
49     SMDSGeom_POINT,
50     // 1D element
51     SMDSGeom_EDGE,
52     // 2D element
53     SMDSGeom_TRIANGLE,
54     SMDSGeom_QUADRANGLE,
55     SMDSGeom_POLYGON,
56     // 3D element
57     SMDSGeom_TETRA,
58     SMDSGeom_PYRAMID,
59     SMDSGeom_HEXA,
60     SMDSGeom_PENTA,
61     SMDSGeom_HEXAGONAL_PRISM,
62     SMDSGeom_POLYHEDRA,
63     // Discrete elements
64     SMDSGeom_BALL,
65     //
66     SMDSGeom_NONE
67   };
68
69
70 enum SMDSAbs_ElementOrder {
71   ORDER_ANY,          /*! entities of any order */
72   ORDER_LINEAR,       /*! entities of 1st order */
73   ORDER_QUADRATIC     /*! entities of 2nd order */
74 };
75
76 /*!
77  * Enumeration of entity type used in mesh info array
78  */
79 enum SMDSAbs_EntityType {
80   SMDSEntity_Node,
81   SMDSEntity_0D,
82   SMDSEntity_Edge,
83   SMDSEntity_Quad_Edge,
84   SMDSEntity_Triangle,
85   SMDSEntity_Quad_Triangle,
86   SMDSEntity_BiQuad_Triangle,
87   SMDSEntity_Quadrangle,
88   SMDSEntity_Quad_Quadrangle,
89   SMDSEntity_BiQuad_Quadrangle,
90   SMDSEntity_Polygon,
91   SMDSEntity_Quad_Polygon,
92   SMDSEntity_Tetra,
93   SMDSEntity_Quad_Tetra,
94   SMDSEntity_Pyramid,
95   SMDSEntity_Quad_Pyramid,
96   SMDSEntity_Hexa,
97   SMDSEntity_Quad_Hexa,
98   SMDSEntity_TriQuad_Hexa,
99   SMDSEntity_Penta,
100   SMDSEntity_Quad_Penta,
101   SMDSEntity_Hexagonal_Prism,
102   SMDSEntity_Polyhedra,
103   SMDSEntity_Quad_Polyhedra,
104   SMDSEntity_Ball,
105   SMDSEntity_Last
106 };
107
108 #endif