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