]> SALOME platform Git repositories - modules/smesh.git/commitdiff
Salome HOME
add GetNodeIndex()
authoreap <eap@opencascade.com>
Wed, 3 May 2006 15:06:18 +0000 (15:06 +0000)
committereap <eap@opencascade.com>
Wed, 3 May 2006 15:06:18 +0000 (15:06 +0000)
src/SMDS/SMDS_MeshElement.cxx
src/SMDS/SMDS_MeshElement.hxx

index 83f073fdbcc1c2c529c43fe5f0c469dc18ec722f..fa15e0e5f81f50cade022508aadd078d44ce6c79 100644 (file)
@@ -218,3 +218,20 @@ bool SMDS_MeshElement::IsMediumNode(const SMDS_MeshNode* node) const
 {
   return false;
 }
+
+//================================================================================
+  /*!
+   * \brief Check if a node belongs to the element
+    * \param node - the node to check
+    * \retval int - node index within the element, -1 if not found
+   */
+//================================================================================
+
+int SMDS_MeshElement::GetNodeIndex( const SMDS_MeshNode* node ) const
+{
+  SMDS_ElemIteratorPtr nIt = nodesIterator();
+  for ( int i = 0; nIt->more(); ++i )
+    if ( nIt->next() == node )
+      return i;
+  return -1;
+}
index 67ac8f2473f36f7dd7fa00afcd795353a9102b4b..794c352f508d1fb5b94ce6414fd87401147909e8 100644 (file)
@@ -108,6 +108,13 @@ public:
     return ind;
   }
 
+  /*!
+   * \brief Check if a node belongs to the element
+    * \param node - the node to check
+    * \retval int - node index within the element, -1 if not found
+   */
+  int GetNodeIndex( const SMDS_MeshNode* node ) const;
+
 protected:
   SMDS_MeshElement(int ID=-1);
   virtual void Print(std::ostream & OS) const;