]> Creatis software - creaMaracasVisu.git/blobdiff - lib/maracasVisuLib/src/interface/wxWindows/widgets/manualContour/manualView3VContour.cpp
#3263 creaMaracasVisu Feature New Normal - ViewerNV sync ParallelScale Camera
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / manualContour / manualView3VContour.cpp
index f8fadfff0d94b7b258a286b7b5466c6c39507e23..c0848508945c197754effba6de0e979852e1dd58 100644 (file)
@@ -1,3 +1,28 @@
+/*# ---------------------------------------------------------------------
+#
+# 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.
+# ------------------------------------------------------------------------ */
+
 #include "manualView3VContour.h"
 
 
@@ -62,7 +87,6 @@ void manualView3VContour::RefreshContour()  // virtula
 {
        manualViewContour::RefreshContour();
        int i;
-       
        //EED 27 Juin 2012
     //Boundaring box   
        _minX=99999;
@@ -71,8 +95,6 @@ void manualView3VContour::RefreshContour()  // virtula
        _maxX=-99999;
        _maxY=-99999;
        _maxZ=-99999;
-       
-       
        double pp[3];
 // JSTG 25-02-08 ----------------------------------------
        //int nps = GetNumberOfPointsSpline();
@@ -82,11 +104,8 @@ void manualView3VContour::RefreshContour()  // virtula
        {
                _pts->GetPoint( i, pp );
                FilterCordinateXYZ(pp[0],pp[1],pp[2]);
-
 //EED 27 sep 2006
                _pts->SetPoint( i, pp[0] , pp[1] ,pp[2] );
-               
-               
                //EED 27 Juin 2012
                //Boundaring box
                if (pp[0] < _minX) { _minX = pp[0]; }
@@ -95,9 +114,12 @@ void manualView3VContour::RefreshContour()  // virtula
                if (pp[0] > _maxX) { _maxX = pp[0]; }
                if (pp[1] > _maxY) { _maxY = pp[1]; }           
                if (pp[2] > _maxZ) { _maxY = pp[2]; }           
-               
        }// for
-
+//EED 2017-03-02
+       if (_pts!=NULL) 
+       { 
+               _pts->Modified(); 
+       }
 }
 
 // ----------------------------------------------------------------------------