Salome HOME
Join modifications from branch BR_DEBUG_3_2_0b1
[modules/smesh.git] / src / SMDS / SMDS_TypeOfPosition.hxx
index 9de8b7fb8055684f9e54d7af84c34bb96ef3fce7..5384a8ce5a98307cb731a084f1850f06a4f01b6b 100644 (file)
@@ -17,7 +17,7 @@
 //  License along with this library; if not, write to the Free Software 
 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
 // 
-//  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
 //
 //
 #ifndef _SMDS_TypeOfPosition_HeaderFile
 #define _SMDS_TypeOfPosition_HeaderFile
 
-enum SMDS_TypeOfPosition
+enum SMDS_TypeOfPosition // Value is equal to shape dimention
 {
-       SMDS_TOP_UNSPEC,
-       SMDS_TOP_3DSPACE,
-       SMDS_TOP_VERTEX,
-       SMDS_TOP_EDGE,
-       SMDS_TOP_FACE
+       SMDS_TOP_UNSPEC  = -1,
+       SMDS_TOP_VERTEX  = 0,
+       SMDS_TOP_EDGE    = 1,
+       SMDS_TOP_FACE    = 2,
+       SMDS_TOP_3DSPACE = 3
 };
 
 #endif