X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FFeaturesPlugin%2FFeaturesPlugin_MultiTranslation.cpp;h=4ef723603299564637fa36297c252bfbd352059f;hb=4c267a52f180b3702b45642314545356805cd428;hp=4112b4ace552473d99f0b6e277cdc1d5df639cf4;hpb=e5c2e689285bea782e4cf1cdbfcc8bcdf40ae0fc;p=modules%2Fshaper.git diff --git a/src/FeaturesPlugin/FeaturesPlugin_MultiTranslation.cpp b/src/FeaturesPlugin/FeaturesPlugin_MultiTranslation.cpp index 4112b4ace..4ef723603 100644 --- a/src/FeaturesPlugin/FeaturesPlugin_MultiTranslation.cpp +++ b/src/FeaturesPlugin/FeaturesPlugin_MultiTranslation.cpp @@ -1,8 +1,22 @@ -// Copyright (C) 2014-201x CEA/DEN, EDF R&D - -// File: FeaturesPlugin_MultiTranslation.cpp -// Created: 30 Jan 2017 -// Author: Clarisse Genrault (CEA) +// Copyright (C) 2014-2017 CEA/DEN, EDF R&D +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or +// email : webmaster.salome@opencascade.com +// #include @@ -11,6 +25,7 @@ #include #include #include +#include #include #include @@ -108,6 +123,13 @@ void FeaturesPlugin_MultiTranslation::performOneDirection() int nbCopies = integer(FeaturesPlugin_MultiTranslation::NB_COPIES_FIRST_DIR_ID())->value(); + if (nbCopies <=0) { + std::string aFeatureError = "Multitranslation builder "; + aFeatureError+=":: the number of copies for the first direction is null or negative."; + setError(aFeatureError); + return; + } + // Moving each object. int aResultIndex = 0; std::list::iterator aContext = aContextes.begin(); @@ -237,6 +259,20 @@ void FeaturesPlugin_MultiTranslation::performTwoDirection() int aSecondNbCopies = integer(FeaturesPlugin_MultiTranslation::NB_COPIES_SECOND_DIR_ID())->value(); + if (aFirstNbCopies <=0) { + std::string aFeatureError = "Multitranslation builder "; + aFeatureError+=":: the number of copies for the first direction is null or negative."; + setError(aFeatureError); + return; + } + + if (aSecondNbCopies <=0) { + std::string aFeatureError = "Multitranslation builder "; + aFeatureError+=":: the number of copies for the second direction is null or negative."; + setError(aFeatureError); + return; + } + // Coord aFirstAxis double x1 = aFirstAxis->dir()->x(); double y1 = aFirstAxis->dir()->y();