]> SALOME platform Git repositories - modules/visu.git/commitdiff
Salome HOME
To unify ID's mapping as for TimeStamp as for Gauss Points
authorapo <apo@opencascade.com>
Fri, 2 Sep 2005 07:35:14 +0000 (07:35 +0000)
committerapo <apo@opencascade.com>
Fri, 2 Sep 2005 07:35:14 +0000 (07:35 +0000)
(remve unnecessary methods)

src/CONVERTOR/VISU_Convertor_impl.cxx
src/CONVERTOR/VISU_Convertor_impl.hxx

index fb4058aeff846e3c6470bbd1d3662eb9b720e062..14cbfc23a7909ebfcec3c99e8531a92e52b6da42 100644 (file)
@@ -389,14 +389,6 @@ namespace VISU
 
 
   //---------------------------------------------------------------
-  float*  
-  TMeshOnEntityImpl
-  ::GetNodeCoord(vtkIdType theObjID)
-  {
-    vtkIdType aVTKID = GetNodeVTKID(theObjID);
-    return GetFilter()->GetOutput()->GetPoint(aVTKID);
-  }
-
   vtkIdType
   TMeshOnEntityImpl
   ::GetNodeVTKID(vtkIdType theID) const
@@ -411,14 +403,6 @@ namespace VISU
     return myNamedPointCoords->GetObjID(theID);
   }
 
-  vtkCell* 
-  TMeshOnEntityImpl
-  ::GetElemCell(int theObjID)
-  {
-    vtkIdType aVtkID = GetElemVTKID(theObjID);
-    return GetFilter()->GetOutput()->GetCell(aVtkID);
-  }
-
   vtkIdType
   TMeshOnEntityImpl
   ::GetElemVTKID(vtkIdType theID) const
@@ -446,14 +430,6 @@ namespace VISU
 
 
   //---------------------------------------------------------------
-  vtkCell* 
-  TFamilyImpl
-  ::GetElemCell(vtkIdType theObjID)
-  {
-    vtkIdType aVtkID = GetElemVTKID(theObjID);
-    return GetSource()->GetCell(aVtkID);
-  }
-
   vtkIdType
   TFamilyImpl
   ::GetElemVTKID(vtkIdType theID) const
@@ -489,14 +465,6 @@ namespace VISU
     return myNamedPointCoords->GetVTKID(theID);
   }
 
-  float* 
-  TFamilyImpl
-  ::GetNodeCoord(vtkIdType theObjID)
-  {
-    vtkIdType aVTKID = GetNodeVTKID(theObjID);
-    return GetSource()->GetPoint(aVTKID);
-  }
-
 
   //---------------------------------------------------------------
   TNbASizeCells 
@@ -513,14 +481,6 @@ namespace VISU
     return make_pair(aNbCells,aCellsSize);
   }
 
-  vtkCell* 
-  TGroupImpl
-  ::GetElemCell(vtkIdType theObjID)
-  {
-    vtkIdType aVtkID = GetElemVTKID(theObjID);
-    return GetFilter()->GetOutput()->GetCell(aVtkID);
-  }
-
   vtkIdType
   TGroupImpl
   ::GetElemVTKID(vtkIdType theID) const
@@ -560,14 +520,6 @@ namespace VISU
     return myNamedPointCoords->GetVTKID(theID);
   }
 
-  float* 
-  TGroupImpl
-  ::GetNodeCoord(vtkIdType theObjID)
-  {
-    vtkIdType aVTKID = GetNodeVTKID(theObjID);
-    return GetFilter()->GetOutput()->GetPoint(aVTKID);
-  }
-
   
   //---------------------------------------------------------------
   void
index dc300b42ff79f6e607a75085b65310086f93d414..64b76f0893384b80a2cf96978840797b53064981 100644 (file)
@@ -309,10 +309,6 @@ namespace VISU
 
   struct TMeshOnEntityImpl: virtual TMeshOnEntity, virtual TAppendFilter, virtual TSizeCounter
   {
-    virtual
-    float* 
-    GetNodeCoord(vtkIdType theObjID);
-
     virtual 
     vtkIdType 
     GetNodeVTKID(vtkIdType theID) const;
@@ -321,10 +317,6 @@ namespace VISU
     vtkIdType 
     GetNodeObjID(vtkIdType theID) const;
 
-    virtual
-    vtkCell* 
-    GetElemCell(vtkIdType theID);
-
     virtual 
     vtkIdType 
     GetElemVTKID(vtkIdType theID) const;
@@ -354,14 +346,6 @@ namespace VISU
     vtkIdType 
     GetNodeVTKID(vtkIdType theID) const ;
 
-    virtual
-    float* 
-    GetNodeCoord(vtkIdType theObjID) ;
-
-    virtual
-    vtkCell* 
-    GetElemCell(vtkIdType theObjID);
-
     virtual 
     vtkIdType 
     GetElemVTKID(vtkIdType theID) const;
@@ -395,10 +379,6 @@ namespace VISU
     TNbASizeCells 
     GetNbASizeCells() const;
 
-    virtual
-    vtkCell* 
-    GetElemCell(vtkIdType theObjID);
-
     virtual 
     vtkIdType 
     GetElemVTKID(vtkIdType theID) const;
@@ -415,17 +395,6 @@ namespace VISU
     vtkIdType 
     GetNodeVTKID(vtkIdType theID) const;
 
-    virtual
-    float* 
-    GetNodeCoord(vtkIdType theObjID);
-    
-    virtual
-    TVTKOutput* 
-    GetVTKOutput()
-    {
-      return TAppendFilter::GetVTKOutput();
-    }
-
     TID2ID myElemObj2VTKID;
     TFamilyArr myFamilyArr;
     PNamedPointCoords myNamedPointCoords;