]> Creatis software - FrontAlgorithms.git/blobdiff - lib/fpa/VTK/ImageMPR.cxx
I/O classes added
[FrontAlgorithms.git] / lib / fpa / VTK / ImageMPR.cxx
index 29f4dc4a42e2c1a7c5f2042ce76ec3e0ccfb7fc2..1cc4b85f6947b1528e8bed346d46e2edba874ad3 100644 (file)
@@ -234,6 +234,8 @@ AddPolyData( vtkPolyData* pd, double opacity )
   this->m_Mappers[ i ]->SetInputData( pd );
   this->m_Actors[ i ]->SetMapper( this->m_Mappers[ i ] );
   this->m_Actors[ i ]->GetProperty( )->SetOpacity( opacity );
+  this->m_Actors[ i ]->GetProperty( )->SetLineWidth( 3 );
+  this->m_Actors[ i ]->GetProperty( )->SetPointSize( 10 );
   this->m_Renderer->AddActor( this->m_Actors[ i ] );
 }
 
@@ -252,7 +254,8 @@ AddPolyData( vtkPolyData* pd, double r, double g, double b, double opacity )
   this->m_Actors[ i ]->SetMapper( this->m_Mappers[ i ] );
   this->m_Actors[ i ]->GetProperty( )->SetColor( r, g, b );
   this->m_Actors[ i ]->GetProperty( )->SetOpacity( opacity );
-  this->m_Actors[ i ]->GetProperty( )->SetPointSize( 20 );
+  this->m_Actors[ i ]->GetProperty( )->SetLineWidth( 3 );
+  this->m_Actors[ i ]->GetProperty( )->SetPointSize( 10 );
   this->m_Renderer->AddActor( this->m_Actors[ i ] );
 }