]> Creatis software - bbtk.git/commitdiff
*** empty log message ***
authorEduardo Davila <Eduardo.Davila@creatis.insa-lyon.fr>
Mon, 9 Jan 2012 18:44:49 +0000 (18:44 +0000)
committerEduardo Davila <Eduardo.Davila@creatis.insa-lyon.fr>
Mon, 9 Jan 2012 18:44:49 +0000 (18:44 +0000)
packages/vtk/src/bbvtkPolyDataToActor.cxx
packages/vtk/src/bbvtkPolyDataToActor.h

index 22ebe039eaf3cf2780e99b3f59497ed65ad0e7f6..5462494284a0413bd8dc378d2497574ef94c8437 100644 (file)
@@ -104,7 +104,7 @@ namespace bbvtk
      polydatamapper->SetInput( bbGetInputIn() );
      
         vtkactor->GetProperty()->SetRepresentation( bbGetInputRepresentation() );
-        vtkactor->GetProperty()->SetLineWidth( bbGetInputLineWitdth() );
+        vtkactor->GetProperty()->SetLineWidth( bbGetInputLineWidth() );
           
      vtkactor->GetProperty()->SetColor( bbGetInputColour()[0],  
                                        bbGetInputColour()[1], 
index c5f80518729b3c5079f04ac8264a89622a485eff..c1f0fbee171583367445cf1a91e2253e6dc70ef3 100644 (file)
@@ -80,7 +80,7 @@ namespace bbvtk
     BBTK_DECLARE_INPUT(Renderer,vtkRenderer *);
     BBTK_DECLARE_INPUT(Transform, vtkLinearTransform *);
        BBTK_DECLARE_INPUT(Representation, int);
-       BBTK_DECLARE_INPUT(LineWitdth, double);
+       BBTK_DECLARE_INPUT(LineWidth, double);
     BBTK_DECLARE_OUTPUT(Out,vtkProp3D *);
     
     BBTK_PROCESS(DoProcess);
@@ -102,7 +102,7 @@ namespace bbvtk
   BBTK_INPUT(PolyDataToActor,Renderer,"3D scene in which to insert the surface",vtkRenderer*,"");
   BBTK_INPUT(PolyDataToActor,Transform,"Linear Transform (4x4 homogeneous)",vtkLinearTransform*,"");
   BBTK_INPUT(PolyDataToActor,Representation,"0 points, 1(default) surface, 2 wireframe",int,"");
-  BBTK_INPUT(PolyDataToActor,LineWitdth,"Width of the wireframe (1 default)",double,"");
+  BBTK_INPUT(PolyDataToActor,LineWidth,"Width of the wireframe (1 default)",double,"");
   BBTK_OUTPUT(PolyDataToActor,Out,"Extracted iso-surface",vtkProp3D *,"");
   
   BBTK_END_DESCRIBE_BLACK_BOX(PolyDataToActor);