From 4ca5e950af647fb1f63fc26562dd643fcdd41bab Mon Sep 17 00:00:00 2001 From: jean-pierre roux Date: Fri, 10 Jun 2011 09:53:40 +0000 Subject: [PATCH] re indent --- packages/vtk/src/bbvtkVolumeRenderer.h | 37 +++++++++++++------------- 1 file changed, 18 insertions(+), 19 deletions(-) diff --git a/packages/vtk/src/bbvtkVolumeRenderer.h b/packages/vtk/src/bbvtkVolumeRenderer.h index 296f955..fd8b27b 100644 --- a/packages/vtk/src/bbvtkVolumeRenderer.h +++ b/packages/vtk/src/bbvtkVolumeRenderer.h @@ -2,8 +2,8 @@ Program: bbtk Module: $RCSfile: bbvtkVolumeRenderer.h,v $ Language: C++ - Date: $Date: 2009/08/07 15:06:26 $ - Version: $Revision: 1.5 $ + Date: $Date: 2011/06/10 09:53:40 $ + Version: $Revision: 1.6 $ =========================================================================*/ /* --------------------------------------------------------------------- @@ -71,30 +71,28 @@ namespace bbvtk { - - - class bbvtk_EXPORT VolumeRenderer : public bbtk::AtomicBlackBox { public: BBTK_BLACK_BOX_INTERFACE(VolumeRenderer,bbtk::AtomicBlackBox); - BBTK_DECLARE_INPUT(In,vtkImageData *); - BBTK_DECLARE_INPUT(ColorFunction,vtkPiecewiseFunction*); - BBTK_DECLARE_INPUT(ColorFunction1,vtkColorTransferFunction *); + BBTK_DECLARE_INPUT(In, vtkImageData *); + BBTK_DECLARE_INPUT(ColorFunction, vtkPiecewiseFunction*); + BBTK_DECLARE_INPUT(ColorFunction1, vtkColorTransferFunction *); BBTK_DECLARE_INPUT(OpacityFunction,vtkPiecewiseFunction*); - BBTK_DECLARE_OUTPUT(Out,vtkProp3D*); + + BBTK_DECLARE_OUTPUT(Out, vtkProp3D*); BBTK_PROCESS(Process); void Process(); protected: private: - vtkVolumeProperty * mVolumeProperty; - vtkVolumeRayCastCompositeFunction * mRayCastFunction; - vtkVolumeRayCastMapper* mMapper; - vtkVolume* mVolume; - vtkVolumeProperty* _volumeProperty; + vtkVolumeProperty *mVolumeProperty; + vtkVolumeRayCastCompositeFunction *mRayCastFunction; + vtkVolumeRayCastMapper *mMapper; + vtkVolume *mVolume; + vtkVolumeProperty *_volumeProperty; }; //================================================================= @@ -104,11 +102,12 @@ namespace bbvtk BBTK_AUTHOR("laurent.guigues@creatis.insa-lyon.fr"); BBTK_DESCRIPTION("Renders a 3D image. Creates a vtkProp3D object to insert into a 3D scene (e.g. a Viewer3D)"); BBTK_CATEGORY("3D object creator"); - BBTK_INPUT(VolumeRenderer,ColorFunction,"Color function",vtkPiecewiseFunction*,""); - BBTK_INPUT(VolumeRenderer,ColorFunction1,"Color function1 instead of Color function",vtkColorTransferFunction*,""); - BBTK_INPUT(VolumeRenderer,OpacityFunction,"Opacity function",vtkPiecewiseFunction*,""); - BBTK_INPUT(VolumeRenderer,In,"Input Image",vtkImageData *,""); - BBTK_OUTPUT(VolumeRenderer,Out,"3D object to plug into a 3D viewer",vtkProp3D*,""); + BBTK_INPUT(VolumeRenderer,ColorFunction, "Color function", vtkPiecewiseFunction*,""); + BBTK_INPUT(VolumeRenderer,ColorFunction1, "Color function1 instead of Color function",vtkColorTransferFunction*,""); + BBTK_INPUT(VolumeRenderer,OpacityFunction,"Opacity function", vtkPiecewiseFunction*,""); + BBTK_INPUT(VolumeRenderer,In, "Input Image", vtkImageData *,""); + + BBTK_OUTPUT(VolumeRenderer,Out, "3D object to plug into a 3D viewer",vtkProp3D*, ""); BBTK_END_DESCRIBE_BLACK_BOX(VolumeRenderer); //================================================================= -- 2.45.1