Salome HOME
Add test function : QApplication::postEvent(SALOME_Event)
[modules/visu.git] / src / PIPELINE / VISU_PipeLineUtils.hxx
1 //  VISU OBJECT : interactive object for VISU entities implementation
2 //
3 //  Copyright (C) 2003  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 // File:    VISU_PipeLine.hxx
24 // Author:  Alexey PETROV
25 // Module : VISU
26
27 #ifndef VISU_PipeLineUtils_HeaderFile
28 #define VISU_PipeLineUtils_HeaderFile
29
30 #include "VISU_FieldTransform.hxx"
31 #include "VISU_LookupTable.hxx"
32 #include "VISU_Extractor.hxx"
33
34 #include <vtkProperty.h>
35 #include <vtkObjectFactory.h>
36 #include <vtkDataSetMapper.h>
37 #include <vtkUnstructuredGrid.h>
38
39 #include <vtkCellDataToPointData.h>
40 #include <vtkCellCenters.h>
41 #include <vtkPointData.h>
42 #include <vtkCellData.h>
43 #include <vtkPolyData.h>
44
45 #include <vtkMath.h>
46
47 #ifndef MESSAGE
48 #define MESSAGE(msg) std::cout<<__FILE__<<"["<<__LINE__<<"]::"<<msg<<endl
49
50 #undef EXCEPT
51 #define EXCEPT(msg) QString(QString(__FILE__) + "[" + QString::number(__LINE__) + "]::" + msg)
52
53 #undef EXCEPTION
54 #define EXCEPTION(msg) EXCEPT(msg).latin1()
55
56 #endif
57
58 namespace VISU{
59   void Mul(const float A[3], float b, float C[3]); // C = A * b
60   void Sub(const float A[3], const float B[3], float C[3]); // C = A - B
61
62   template<class TItem> void CellDataToPoint(TItem* theTItem, 
63                                              vtkCellDataToPointData *theFilter,
64                                              vtkDataSet* theDataSet,
65                                              VISU_FieldTransform *theFieldTransform)
66   {
67     if(theDataSet->GetCellData()->GetNumberOfArrays()){
68       theFilter->SetInput(theFieldTransform->GetUnstructuredGridOutput());
69       theFilter->PassCellDataOn();
70       theTItem->SetInput(theFilter->GetUnstructuredGridOutput());
71     }else
72       theTItem->SetInput(theFieldTransform->GetUnstructuredGridOutput());
73   }
74
75   template<class TItem> void ToCellCenters(TItem* theTItem, 
76                                            vtkCellCenters *theFilter,
77                                            vtkDataSet* theDataSet,
78                                            VISU_FieldTransform *theFieldTransform)
79   {
80     if(theDataSet->GetCellData()->GetNumberOfArrays()){
81       theFilter->SetInput(theFieldTransform->GetUnstructuredGridOutput());
82       theFilter->VertexCellsOn();
83       theTItem->SetInput(theFilter->GetOutput());
84     }else
85       theTItem->SetInput(theFieldTransform->GetUnstructuredGridOutput());
86   }
87 }
88
89 #endif
90