Salome HOME
sources v1.2c
[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
36 using namespace std;
37
38 //=======================================================================
39
40 vtkStandardNewMacro(VISU_VectorsAct);
41
42
43 VISU_VectorsAct::VISU_VectorsAct(){}
44
45
46 VISU_VectorsAct::~VISU_VectorsAct(){}
47
48
49 void VISU_VectorsAct::SetPipeLine(VISU_PipeLine* thePipeLine) throw(std::runtime_error&){
50   if(myPipeLine = dynamic_cast<VISU_VectorsPL*>(thePipeLine)){
51     VISU_Actor::SetPipeLine(myPipeLine);
52     myPipeLine->Delete();
53   }
54 }
55
56
57 void VISU_VectorsAct::SetTransform(SALOME_Transform* theTransform){
58   myPipeLine->SetTransform(theTransform);
59   Modified();
60 }
61
62
63 void VISU_VectorsAct::SetMapper(vtkMapper* theMapper){
64   if(theMapper){
65     myPassFilter[0]->SetInput(theMapper->GetInput());
66     myPassFilter[0]->Update();
67     myPassFilter[1]->SetInput(myPassFilter[0]->GetPolyDataOutput());
68     myPassFilter[1]->Update();
69     myPassFilter[2]->SetInput(myPassFilter[1]->GetPolyDataOutput());
70     myPassFilter[2]->Update();
71     myPassFilter[3]->SetInput(myPassFilter[2]->GetPolyDataOutput());
72     myPassFilter[3]->Update();
73     if(vtkDataSetMapper* aMapper = dynamic_cast<vtkDataSetMapper*>(theMapper))
74       aMapper->SetInput(myPassFilter[3]->GetPolyDataOutput());
75     else if(vtkPolyDataMapper* aMapper = dynamic_cast<vtkPolyDataMapper*>(theMapper))
76       aMapper->SetInput(myPassFilter[3]->GetPolyDataOutput());
77   }
78   vtkLODActor::SetMapper(theMapper);
79 }