X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomData%2FGeomData_Point2D.cpp;h=3fbd659d11ef7e734fd773525b86e99f886fb42d;hb=485284976089df895e261395518201ccd85dae4d;hp=fb7bdc99f2fc0b9ed89483344d7f2b1065705d1f;hpb=ba08b49c900003e00c5fdb67d80d1a9bb8134358;p=modules%2Fshaper.git diff --git a/src/GeomData/GeomData_Point2D.cpp b/src/GeomData/GeomData_Point2D.cpp index fb7bdc99f..3fbd659d1 100644 --- a/src/GeomData/GeomData_Point2D.cpp +++ b/src/GeomData/GeomData_Point2D.cpp @@ -1,8 +1,22 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: GeomData_Point2D.cxx -// Created: 24 Apr 2014 -// Author: Mikhail PONIKAROV +// 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 "GeomData_Point2D.h" @@ -20,6 +34,23 @@ GeomData_Point2D::GeomData_Point2D() myIsInitialized = false; } +void GeomData_Point2D::reinit() +{ + myIsInitialized = true; + for (int aComponent = 0; aComponent < NUM_COMPONENTS; ++aComponent) { + myExpression[aComponent]->reinit(); + myIsInitialized = myIsInitialized && myExpression[aComponent]->isInitialized(); + } +} + +void GeomData_Point2D::reset() +{ + myIsInitialized = false; + for(int aComponent = 0; aComponent < NUM_COMPONENTS; ++aComponent) { + myExpression[aComponent]->reset(); + } +} + void GeomData_Point2D::setCalculatedValue(const double theX, const double theY) { if (!myIsInitialized || x() != theX || y() != theY) { @@ -59,6 +90,8 @@ std::shared_ptr GeomData_Point2D::pnt() void GeomData_Point2D::setText(const std::string& theX, const std::string& theY) { + if (!myIsInitialized && theX.empty() && theY.empty()) + return; // empty strings are not good initializers if (!myIsInitialized || textX() != theX || textY() != theY) { myExpression[0]->setText(theX); myExpression[1]->setText(theY); @@ -103,7 +136,8 @@ std::string GeomData_Point2D::expressionError(int theComponent) return myExpression[theComponent]->error(); } -void GeomData_Point2D::setUsedParameters(int theComponent, const std::set& theUsedParameters) +void GeomData_Point2D::setUsedParameters(int theComponent, + const std::set& theUsedParameters) { assert(theComponent >= 0 && theComponent < NUM_COMPONENTS); myExpression[theComponent]->setUsedParameters(theUsedParameters);