X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FmaracasVisuLib%2Fsrc%2Finterface%2FwxWindows%2Fwidgets%2FmanualContour%2FmanualView3VContour.cpp;h=c0848508945c197754effba6de0e979852e1dd58;hb=e263b7ace0f53d647a731553a3f67700838ad146;hp=f8fadfff0d94b7b258a286b7b5466c6c39507e23;hpb=1b4ae09d7ff99ffeb0c64656122aba6266ace686;p=creaMaracasVisu.git diff --git a/lib/maracasVisuLib/src/interface/wxWindows/widgets/manualContour/manualView3VContour.cpp b/lib/maracasVisuLib/src/interface/wxWindows/widgets/manualContour/manualView3VContour.cpp index f8fadff..c084850 100644 --- a/lib/maracasVisuLib/src/interface/wxWindows/widgets/manualContour/manualView3VContour.cpp +++ b/lib/maracasVisuLib/src/interface/wxWindows/widgets/manualContour/manualView3VContour.cpp @@ -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(); + } } // ----------------------------------------------------------------------------