Salome HOME
Merge with version on tag OCC-V2_1_0d
[modules/visu.git] / src / OBJECT / VISU_VectorsAct.cxx
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 //
24 //  File   : VISU_VectorsAct.cxx
25 //  Author : Laurent CORNABE with help of Nicolas REJNERI
26 //  Module : VISU
27 //  $Header$
28
29 #include "VISU_VectorsAct.h"
30 #include "VISU_VectorsPL.hxx"
31 #include "SALOME_PassThroughFilter.h"
32  
33 // VTK Includes
34 #include <vtkObjectFactory.h>
35 #include <vtkDataSetMapper.h>
36 #include <vtkPolyDataMapper.h>
37 #include <vtkPolyData.h>
38
39 using namespace std;
40
41 //=======================================================================
42
43 vtkStandardNewMacro(VISU_VectorsAct);
44
45
46 VISU_VectorsAct::VISU_VectorsAct(){}
47
48
49 VISU_VectorsAct::~VISU_VectorsAct(){}
50
51
52 void VISU_VectorsAct::SetPipeLine(VISU_PipeLine* thePipeLine) {
53   if((myPipeLine = dynamic_cast<VISU_VectorsPL*>(thePipeLine))){
54     VISU_Actor::SetPipeLine(myPipeLine);
55     myPipeLine->Delete();
56   }
57 }
58
59
60 void VISU_VectorsAct::SetTransform(SALOME_Transform* theTransform){
61   myPipeLine->SetTransform(theTransform);
62   Modified();
63 }
64
65
66 void VISU_VectorsAct::SetMapper(vtkMapper* theMapper){
67   if(theMapper){
68     myPassFilter[0]->SetInput(theMapper->GetInput());
69     myPassFilter[0]->Update();
70     myPassFilter[1]->SetInput(myPassFilter[0]->GetPolyDataOutput());
71     myPassFilter[1]->Update();
72     myPassFilter[2]->SetInput(myPassFilter[1]->GetPolyDataOutput());
73     myPassFilter[2]->Update();
74     myPassFilter[3]->SetInput(myPassFilter[2]->GetPolyDataOutput());
75     myPassFilter[3]->Update();
76     if(vtkDataSetMapper* aMapper = dynamic_cast<vtkDataSetMapper*>(theMapper))
77       aMapper->SetInput(myPassFilter[3]->GetPolyDataOutput());
78     else if(vtkPolyDataMapper* aMapper = dynamic_cast<vtkPolyDataMapper*>(theMapper))
79       aMapper->SetInput(myPassFilter[3]->GetPolyDataOutput());
80   }
81   vtkLODActor::SetMapper(theMapper);
82 }