]> Creatis software - cpPlugins.git/blobdiff - lib/cpExtensions/Interaction/ImageInteractorStyle.cxx
Some bugs...
[cpPlugins.git] / lib / cpExtensions / Interaction / ImageInteractorStyle.cxx
index a23e3749d6e2ae4828c86b1af652124c57c26bc3..0e6dce0235da38df90e2f4a6eb5e38bab91ec51b 100644 (file)
@@ -96,6 +96,24 @@ SetSeedWidgetCommand( vtkCommand* cmd )
     AddObserver( vtkCommand::PlacePointEvent, cmd );
 }
 
+// -------------------------------------------------------------------------
+unsigned int cpExtensions::Interaction::ImageInteractorStyle::
+GetNumberOfSeeds( ) const
+{
+  if( this->m_SeedWidget != NULL )
+    return( this->m_SeedWidget->Representation->GetNumberOfSeeds( ) );
+  else
+    return( 0 );
+}
+
+// -------------------------------------------------------------------------
+void cpExtensions::Interaction::ImageInteractorStyle::
+GetSeed( unsigned int id, double pos[ 3 ] ) const
+{
+  if( this->m_SeedWidget != NULL )
+    this->m_SeedWidget->Representation->GetSeedWorldPosition( id, pos );
+}
+
 // -------------------------------------------------------------------------
 cpExtensions::Interaction::ImageInteractorStyle::
 ImageInteractorStyle( )