]> Creatis software - creaMaracasVisu.git/blobdiff - lib/maracasVisuLib/src/CutModule/kernel/CutModelManager.cxx
#3418 creaMaracasVisu Feature New Normal - ManualPaint_model with openmp
[creaMaracasVisu.git] / lib / maracasVisuLib / src / CutModule / kernel / CutModelManager.cxx
index 023b9d8dd5039ec60800210fbd8b2b5c5bb917ac..05e92d879559024a916ed787b3334c773ca60227 100644 (file)
@@ -1,10 +1,35 @@
+/*# ---------------------------------------------------------------------
+#
+# Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
+#                        pour la Sant�)
+# Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
+# Previous Authors : Laurent Guigues, Jean-Pierre Roux
+# CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
+#
+#  This software is governed by the CeCILL-B license under French law and
+#  abiding by the rules of distribution of free software. You can  use,
+#  modify and/ or redistribute the software under the terms of the CeCILL-B
+#  license as circulated by CEA, CNRS and INRIA at the following URL
+#  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
+#  or in the file LICENSE.txt.
+#
+#  As a counterpart to the access to the source code and  rights to copy,
+#  modify and redistribute granted by the license, users are provided only
+#  with a limited warranty  and the software's author,  the holder of the
+#  economic rights,  and the successive licensors  have only  limited
+#  liability.
+#
+#  The fact that you are presently reading this means that you have had
+#  knowledge of the CeCILL-B license and that you accept its terms.
+# ------------------------------------------------------------------------ */
+
 /*=========================================================================
 
 Program:   wxMaracas
 Module:    $RCSfile: CutModelManager.cxx,v $
 Language:  C++
-Date:      $Date: 2010/03/04 15:09:57 $
-Version:   $Revision: 1.8 $
+Date:      $Date: 2012/11/15 14:15:48 $
+Version:   $Revision: 1.11 $
 
 Copyright: (c) 2002, 2003
 License:
@@ -59,8 +84,12 @@ void CutModelManager::setImageData(vtkImageData* img){
                _img2 = vtkImageData::New();
                _img2->SetExtent(_img->GetExtent());
                _img2->SetSpacing(_img->GetSpacing());
+//EED 2017-01-01 Migration VTK7
+#if VTK_MAJOR_VERSION <= 5
                _img2->AllocateScalars();
-
+#else
+  //...
+#endif
                _img2->DeepCopy(_img);
        }
        else
@@ -73,7 +102,12 @@ void CutModelManager::setImageData(vtkImageData* img){
                _img = vtkImageData::New();
                _img->SetExtent(_img2->GetExtent());
                _img->SetSpacing(_img2->GetSpacing());
+//EED 2017-01-01 Migration VTK7
+#if VTK_MAJOR_VERSION <= 5
                _img->AllocateScalars();
+#else
+  //...
+#endif
 
                _img->DeepCopy(_img2);
        }
@@ -142,7 +176,9 @@ void CutModelManager::ChangeShape(int id,int selection)throw( CutModelException)
 CutModelData* CutModelManager::getCutModelData(int id)throw( CutModelException){
 
        CutModelData* current = NULL;
-       for(int i= 0; i < _vectordata.size();i++){
+       int i;
+       for(i= 0; i < (int)_vectordata.size();i++)
+       {
                CutModelData* temp = _vectordata[i];
                std::cout<<"id in CutModelManager:: "<<id<<std::endl;
                std::cout<<"vectordataid in CutModelManager:: "<<temp->getId()<<std::endl;
@@ -177,9 +213,11 @@ void CutModelManager::RemoveActor(int id)throw( CutModelException){
        checkInvariant();
 
        CutModelData* current = getCutModelData(id);
-       for(int i = 0; i < _vectordata.size()-1;i++){
+       int i,j;
+       for(i = 0; i < (int)_vectordata.size()-1;i++)
+       {
                if(_vectordata[i]->getId()==id){                                
-                       for(int j = i; j < _vectordata.size()-1;j++){
+                       for(j = i; j < (int)_vectordata.size()-1;j++){
                                _vectordata[j]=_vectordata[j+1];
                        }
                        i = _vectordata.size();
@@ -291,7 +329,7 @@ int CutModelManager::Undo() throw( CutModelException){
 
 int CutModelManager::Redo()    throw( CutModelException){
 
-       if(_currentaction >= 0 && _currentaction < _undoredo.size()){
+       if(_currentaction >= 0 && _currentaction < (int)_undoredo.size()){
 
                CutModelSaveBinInfo* currentundo = _undoredo[_currentaction];
                CutModelData* currentmodel;
@@ -357,7 +395,7 @@ void CutModelManager::UpdatePolygon(bool mode)
 
                        _polygonCutter = new CutModelPolygon();
 
-                       cout<<"RaC ContourDrawer::Update Printing points"<<endl;
+                       cout<<"RaC Printing points......"<<endl;
                        for(int t=0;t<numPoints;t++)
                        {
                                double point[3];
@@ -372,13 +410,23 @@ void CutModelManager::UpdatePolygon(bool mode)
                        sample->CappingOn();                    
 
                        contour = vtkContourFilter::New();
+//EED 2017-01-01 Migration VTK7
+#if VTK_MAJOR_VERSION <= 5
                        contour->SetInput((vtkDataObject *)sample->GetOutput());
+#else
+                       contour->SetInputData((vtkDataObject *)sample->GetOutput());
+#endif
                        contour->SetValue(0,1);
 
                        actor = contour->GetOutput();
 
                        actor3D = vtkActor::New();                      
+//EED 2017-01-01 Migration VTK7
+#if VTK_MAJOR_VERSION <= 5
                        mapper->SetInput(actor);                         
+#else
+                       mapper->SetInputData(actor);                     
+#endif
                        mapper->SetScalarModeToUseCellData();
                        actor3D->SetMapper( mapper);
                        _render->AddActor(actor3D);