From 64786ec38c5272e34bff52b0ade41b032d2387ea Mon Sep 17 00:00:00 2001 From: Eduardo DAVILA Date: Mon, 19 Aug 2013 17:05:23 +0200 Subject: [PATCH] 2115 creaMaracasVisu Bug New Normal DrawAxisTree interaction with LineWidth --- bbtk/src/bbmaracasvisuDrawAxisTree3D.cxx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/bbtk/src/bbmaracasvisuDrawAxisTree3D.cxx b/bbtk/src/bbmaracasvisuDrawAxisTree3D.cxx index e43b35b..00fae17 100644 --- a/bbtk/src/bbmaracasvisuDrawAxisTree3D.cxx +++ b/bbtk/src/bbmaracasvisuDrawAxisTree3D.cxx @@ -44,7 +44,6 @@ BBTK_BLACK_BOX_IMPLEMENTATION(DrawAxisTree3D,bbtk::AtomicBlackBox); void DrawAxisTree3D::DrawOneAxis(int iGeneral,int numPoints, int iAxis) { -printf("EED DrawAxisTree3D::DrawOneAxis Start \n"); vtkPolyData *polydata = vtkPolyData::New( ); vtkPolyDataMapper *polydatamapper = vtkPolyDataMapper::New(); vtkActor *vtkactor = vtkActor::New(); @@ -160,7 +159,6 @@ polyline->GetPointIds()->InsertNextId(i-iGeneral); g = bbGetInputColour()[1+iPoint*3]*255.0; b = bbGetInputColour()[2+iPoint*3]*255.0; //colors->SetTuple3(iPoint,r,g,b); -printf("EED DrawAxisTree3D::DrawOneAxis iPoint=%d size=%d rgb=%f% f% f \n", iPoint , bbGetInputColour().size() , r,g,b); colors->InsertNextTuple3(r,g,b); } polydata->GetCellData()->SetScalars(colors); @@ -168,6 +166,7 @@ printf("EED DrawAxisTree3D::DrawOneAxis iPoint=%d size=%d rgb=%f% f% f \n", } // Law 3 color for each point + vtkactor->GetProperty()->SetLineWidth( bbGetInputLineWidth() ); vtkactor->GetProperty()->SetOpacity( bbGetInputOpacity() ); @@ -181,7 +180,6 @@ printf("EED DrawAxisTree3D::DrawOneAxis iPoint=%d size=%d rgb=%f% f% f \n", { bbGetInputRenderer()->AddActor( vtkactor ); } -printf("EED DrawAxisTree3D::DrawOneAxis End \n"); } @@ -235,6 +233,7 @@ void DrawAxisTree3D::Process() for (iActor=0 ; iActorGetProperty()->SetOpacity( bbGetInputOpacity() ); + vecVtkActors[iActor]->GetProperty()->SetLineWidth( bbGetInputLineWidth() ); } } -- 2.46.1