Salome HOME
4d2a416bb546aadbf515953d45a14368a8d7deb6
[modules/gui.git] / src / VTKViewer / VTKViewer_ShrinkFilter.h
1 // Copyright (C) 2005  OPEN CASCADE, CEA/DEN, EDF R&D, PRINCIPIA R&D
2 // 
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either 
6 // version 2.1 of the License.
7 // 
8 // This library is distributed in the hope that it will be useful 
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public  
14 // License along with this library; if not, write to the Free Software 
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19 #ifndef VTKVIEWER_SHRINKFILTER_H
20 #define VTKVIEWER_SHRINKFILTER_H
21
22 #include "VTKViewer.h"
23
24 #include <vtkShrinkFilter.h>
25
26 #include <vector>
27
28 /*!Shrink cells composing an arbitrary data set.
29  *\warning It is possible to turn cells inside out or cause self intersection in special cases.
30  */
31 class VTKVIEWER_EXPORT VTKViewer_ShrinkFilter : public vtkShrinkFilter 
32 {
33 public:
34   /*!Create new instance of VTKViewer_ShrinkFilter.*/
35   static VTKViewer_ShrinkFilter *New();
36   vtkTypeRevisionMacro(VTKViewer_ShrinkFilter, vtkShrinkFilter);
37
38   void SetStoreMapping(int theStoreMapping);
39   /*!Gets store mapping flag.*/
40   int GetStoreMapping(){ return myStoreMapping;}
41
42   virtual vtkIdType GetNodeObjId(int theVtkID);
43   /*!Return element id by vtk id.*/
44   virtual vtkIdType GetElemObjId(int theVtkID) { return theVtkID;}
45
46 protected:
47   VTKViewer_ShrinkFilter();
48   ~VTKViewer_ShrinkFilter();
49   
50   void Execute();
51   /*!Not implemented.*/
52   void UnstructuredGridExecute();
53     
54 private:
55   int myStoreMapping;   
56   typedef std::vector<vtkIdType> TVectorId;
57   TVectorId myVTK2ObjIds;
58 };
59
60 #endif