Salome HOME
activateModule/deactivateModule functions are made "bool".
[modules/smesh.git] / src / SMDS / SMDS_Position.cxx
index 4a9818c56cf8b80228eb36e8bacdf5ac5fbd4809..926aa4bf97d7efa266ac2f6564b15fa2cc38c952 100644 (file)
@@ -56,6 +56,21 @@ int SMDS_Position::GetShapeId() const
        return myShapeId;
 }
 
-SMDS_Position::~SMDS_Position()
+//=======================================================================
+//function : GetDim
+//purpose  : 
+//=======================================================================
+
+int SMDS_Position::GetDim() const
 {
+//   switch ( GetTypeOfPosition() ) {
+//   case SMDS_TOP_UNSPEC:  return -1;
+//   case SMDS_TOP_VERTEX:  return 0;
+//   case SMDS_TOP_EDGE:    return 1;
+//   case SMDS_TOP_FACE:    return 2;
+//   case SMDS_TOP_3DSPACE: return 3;
+//   }
+  return GetTypeOfPosition();
 }
+
+