]> Creatis software - creaVtk.git/blobdiff - bbtk_creaVtk_PKG/src/bbcreaVtkLinearExtrusionFilter.cxx
#3493 MeshManager
[creaVtk.git] / bbtk_creaVtk_PKG / src / bbcreaVtkLinearExtrusionFilter.cxx
index 5d0ea977c3e1ba62ad0f761a7419814bcba95914..2b39efe8a1463a6c85188901682e363c273aeae3 100644 (file)
@@ -3,7 +3,7 @@
 //===== 
 #include "bbcreaVtkLinearExtrusionFilter.h"
 #include "bbcreaVtkPackage.h"
-
+#include <vtkReverseSense.h>
 
 namespace bbcreaVtk
 {
@@ -15,7 +15,6 @@ BBTK_BLACK_BOX_IMPLEMENTATION(LinearExtrusionFilter,bbtk::AtomicBlackBox);
 //===== 
 void LinearExtrusionFilter::Process()
 {
-
 // THE MAIN PROCESSING METHOD BODY
 //   Here we simply set the input 'In' value to the output 'Out'
 //   And print out the output value
@@ -29,23 +28,27 @@ void LinearExtrusionFilter::Process()
 //      (the one provided in the attribute 'type' of the tag 'input')
 //    bbSetOutputOut( bbGetInputIn() );
 //    std::cout << "Output value = " <<bbGetOutputOut() << std::endl;
-  
-    if (bbGetInputIn()!=NULL)
+    
+    printf("EED LinearExtrusionFilter::Process In=%p \n",bbGetInputIn() );
+
+    if (extrude!=NULL)
     {
-        if (extrude!=NULL)
-        {
-            extrude->Delete();
-        }
-        if (triangleFilter!=NULL)
-        {
-            triangleFilter->Delete();
-        }
+        extrude->Delete();
+        extrude=NULL;
+    }
+    if (triangleFilter!=NULL)
+    {
+        triangleFilter->Delete();
+        triangleFilter=NULL;
+    }
 
-        extrude         = vtkLinearExtrusionFilter::New();
-        triangleFilter  = vtkTriangleFilter::New();
+    if (bbGetInputIn()!=NULL)
+    {
+        std::vector<double>     dir             = bbGetInputDirection();
+                                extrude         = vtkLinearExtrusionFilter::New();
+                                triangleFilter  = vtkTriangleFilter::New();
         extrude->SetInputData( bbGetInputIn() );
         extrude->SetExtrusionTypeToNormalExtrusion();
-        std::vector<double> dir = bbGetInputDirection();
         if (dir.size()==3)
         {
             extrude->SetVector( dir[0],dir[1],dir[2] );
@@ -57,55 +60,52 @@ void LinearExtrusionFilter::Process()
         triangleFilter->SetInputData( extrude->GetOutput() );
         triangleFilter->Update( );
         bbSetOutputOut( triangleFilter->GetOutput() );
-    } // if bbGetInputIn
+    } else {
+        bbSetOutputOut( NULL );
+    }// if bbGetInputIn
 }
+
 //===== 
 // 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)
 //===== 
 void LinearExtrusionFilter::bbUserSetDefaultValues()
 {
-
 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
 //    Here we initialize the input 'In' to 0
-
     extrude         = NULL;
     triangleFilter  = NULL;
     bbSetInputIn(NULL);
-
     std::vector<double> dir;
     dir.push_back(1);
     dir.push_back(0);
     dir.push_back(0);
     bbSetInputDirection( dir );
     bbSetInputScalarFactor(0);
-
+    bbSetOutputOut( NULL );
 }
+
 //===== 
 // 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)
 //===== 
 void LinearExtrusionFilter::bbUserInitializeProcessing()
 {
-
 //  THE INITIALIZATION METHOD BODY :
 //    Here does nothing 
 //    but this is where you should allocate the internal/output pointers 
-//    if any 
-
-  
+//    if any
 }
+
 //===== 
 // 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)
 //===== 
 void LinearExtrusionFilter::bbUserFinalizeProcessing()
 {
-
 //  THE FINALIZATION METHOD BODY :
 //    Here does nothing 
 //    but this is where you should desallocate the internal/output pointers 
 //    if any
-  
-}
 }
-// EO namespace bbcreaVtk
+
+}  // EO namespace bbcreaVtk