]> Creatis software - bbtk.git/blobdiff - packages/vtk/src/bbvtkMIPCreator.cxx
re-indent / Fix comments
[bbtk.git] / packages / vtk / src / bbvtkMIPCreator.cxx
index 0e737bd9b168464c798c046abe9ade27fd5ac494..58ee8ae42ec02c5da30f1e1239a353239079f01f 100644 (file)
@@ -2,8 +2,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbvtkMIPCreator.cxx,v $
   Language:  C++
-  Date:      $Date: 2009/05/15 14:58:01 $
-  Version:   $Revision: 1.6 $
+  Date:      $Date: 2010/04/08 14:37:59 $
+  Version:   $Revision: 1.7 $
 =========================================================================*/
 
 /* ---------------------------------------------------------------------
  *  \brief 
  */
 
-
-
 #ifdef _USE_VTK_
 
-
 #include "bbvtkMIPCreator.h"
 #include "bbvtkPackage.h"
 
 namespace bbvtk
 {
-
-
    BBTK_ADD_BLACK_BOX_TO_PACKAGE(vtk,MIPCreator)
    BBTK_BLACK_BOX_IMPLEMENTATION(MIPCreator,bbtk::AtomicBlackBox);
-
-
-
-
-
+   
        //---------------------------------------------------------------------
    void MIPCreator::bbUserSetDefaultValues() 
    { 
@@ -62,11 +53,9 @@ namespace bbvtk
           mMapper      = NULL;  
           mVolume      = NULL;  
    }
-       
        //---------------------------------------------------------------------
    void MIPCreator::bbUserInitializeProcessing() 
-   {
-          
+   {   
     // Create the pipeline
     mCast = vtkImageShiftScale::New();
     mCast->SetOutputScalarTypeToUnsignedChar();
@@ -83,12 +72,12 @@ namespace bbvtk
     mVolume->SetMapper(mMapper);
 
     //  mMapper->ScalarVisibilityOff();
-    //    mMapper->ImmediateModeRenderingOn();
+    //  mMapper->ImmediateModeRenderingOn();
 
     bbSetOutputOut(mVolume);
 }
 
-       //---------------------------------------------------------------------
+//---------------------------------------------------------------------
    void MIPCreator::bbUserFinalizeProcessing() 
    { 
           if (mCast!=NULL)
@@ -114,8 +103,6 @@ namespace bbvtk
                   mVolume->Delete();
                   mVolume=NULL;
           }
-          
-
    }
 //---------------------------------------------------------------------