X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAlgoAPI%2FGeomAlgoAPI_Scale.cpp;h=d680aaad2339c9f9eb8eddfdc42ec9cd0fb42808;hb=a55586483e5dccc5466d6ec241e2147e210d839f;hp=bfdd1d0a48faf487fb06d3f1fbf2fed360403c6d;hpb=517e702f8072ad116543beaf90a69b3f4fc05220;p=modules%2Fshaper.git diff --git a/src/GeomAlgoAPI/GeomAlgoAPI_Scale.cpp b/src/GeomAlgoAPI/GeomAlgoAPI_Scale.cpp index bfdd1d0a4..d680aaad2 100644 --- a/src/GeomAlgoAPI/GeomAlgoAPI_Scale.cpp +++ b/src/GeomAlgoAPI/GeomAlgoAPI_Scale.cpp @@ -1,8 +1,22 @@ -// Copyright (C) 2014-201x CEA/DEN, EDF R&D - -// File: GeomAlgoAPI_Scale.cpp -// Created: 23 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 "GeomAlgoAPI_Scale.h" @@ -39,11 +53,11 @@ GeomAlgoAPI_Scale::GeomAlgoAPI_Scale(std::shared_ptr theSourceSha bool GeomAlgoAPI_Scale::check() { if (!mySourceShape) { - myError = "Scale builder :: source shape is invalid."; + myError = "Scale builder :: source shape is not valid."; return false; } if (!myCenterPoint) { - myError = "Scale builder :: center point is invalid."; + myError = "Scale builder :: center point is not valid."; return false; } switch (myMethodType) {