]> Creatis software - creaVtk.git/blob - bbtk_creaVtk_PKG/src/bbcreaVtkActor.cxx
#3491 vtk9itk5wx3-macos
[creaVtk.git] / bbtk_creaVtk_PKG / src / bbcreaVtkActor.cxx
1 //===== 
2 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
3 //===== 
4 #include "bbcreaVtkActor.h"
5 #include "bbcreaVtkPackage.h"
6 #include "vtkProperty.h"
7
8
9 namespace bbcreaVtk
10 {
11
12 BBTK_ADD_BLACK_BOX_TO_PACKAGE(creaVtk,Actor)
13 BBTK_BLACK_BOX_IMPLEMENTATION(Actor,bbtk::AtomicBlackBox);
14 //===== 
15 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
16 //===== 
17 void Actor::Process()
18 {
19
20 // THE MAIN PROCESSING METHOD BODY
21 //   Here we simply set the input 'In' value to the output 'Out'
22 //   And print out the output value
23 // INPUT/OUTPUT ACCESSORS ARE OF THE FORM :
24 //    void bbSet{Input|Output}NAME(const TYPE&)
25 //    const TYPE& bbGet{Input|Output}NAME() const 
26 //    Where :
27 //    * NAME is the name of the input/output
28 //      (the one provided in the attribute 'name' of the tag 'input')
29 //    * TYPE is the C++ type of the input/output
30 //      (the one provided in the attribute 'type' of the tag 'input')
31
32 //    bbSetOutputOut( bbGetInputIn() );
33 //    std::cout << "Output value = " <<bbGetOutputOut() << std::endl;
34  
35         if (bbGetInputIn()!=NULL)
36         {
37                 vtkProp3D* vtkprop3D=bbGetInputIn();
38                 std::string className = vtkprop3D->GetClassName();
39                 std::string wantedClass = "vtkOpenGLActor";
40                 if(className == wantedClass)
41                 {
42                         vtkActor *vtkactor=((vtkActor*)vtkprop3D);
43                         vtkactor->GetProperty()->SetOpacity( bbGetInputOpacity() );
44                         vtkactor->GetProperty()->SetLineWidth( bbGetInputLineWidth() );
45                         double r = bbGetInputColor()[0];
46                         double g = bbGetInputColor()[1];
47                         double b = bbGetInputColor()[2];
48                         vtkactor->GetProperty()->SetColor( r,g,b );
49                 }
50                  if ( bbGetInputTransform()!=NULL )
51                  {
52                     vtkprop3D->SetUserTransform( bbGetInputTransform() );
53                  }
54         // bbSetOutputOut( vtkactor );
55         // Interface Update
56                 if ((bbGetInputRenderer()!=NULL) && ( backActive!=bbGetInputActive() ))
57                 {
58                         if (bbGetInputActive()==true )
59                         {
60                                 bbGetInputRenderer()->AddActor( vtkprop3D );
61                         }  else {
62                                 bbGetInputRenderer()->RemoveActor( vtkprop3D );
63                         }  //if Active
64                         backActive=bbGetInputActive();
65                 } // if Renderer
66         }// bbGetInputIn
67 }
68 //===== 
69 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
70 //===== 
71 void Actor::bbUserSetDefaultValues()
72 {
73
74 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
75 //    Here we initialize the input 'In' to 0
76
77         std::vector<double> color;
78         color.push_back(1);
79         color.push_back(0);
80         color.push_back(0);
81         bbSetInputActive( false );
82         backActive=bbGetInputActive();
83         bbSetInputIn( NULL );
84         bbSetInputOpacity( 1 );
85         bbSetInputLineWidth( 0.5 );
86         bbSetInputRenderer( NULL );
87         bbSetInputColor( color );
88         bbSetInputTransform( NULL );
89
90 }
91 //===== 
92 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
93 //===== 
94 void Actor::bbUserInitializeProcessing()
95 {
96
97 //  THE INITIALIZATION METHOD BODY :
98 //    Here does nothing 
99 //    but this is where you should allocate the internal/output pointers 
100 //    if any 
101
102   
103 }
104 //===== 
105 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
106 //===== 
107 void Actor::bbUserFinalizeProcessing()
108 {
109
110 //  THE FINALIZATION METHOD BODY :
111 //    Here does nothing 
112 //    but this is where you should desallocate the internal/output pointers 
113 //    if any
114   
115 }
116 }
117 // EO namespace bbcreaVtk
118
119