Salome HOME
Updated copyright comment
[modules/shaper.git] / src / SketchPlugin / SketchPlugin_ConstraintLength.cpp
index ad6ee92b540721d4df98d217917d2eee2c9efc47..96e5b4894f1e36dd367f15343aab34ff89ff0489 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2014-2019  CEA/DEN, EDF R&D
+// Copyright (C) 2014-2024  CEA, EDF
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
@@ -83,14 +83,6 @@ void SketchPlugin_ConstraintLength::execute()
         GeomDataAPI_Point2D>(aFeature->data()->attribute(SketchPlugin_Line::END_ID()));
 
     if (aPoint1.get() && aPoint2.get()) {
-      double aLenght = aPoint1->pnt()->distance(aPoint2->pnt());
-
-      //std::shared_ptr<ModelAPI_AttributeDouble> aValueAttr = std::dynamic_pointer_cast<
-      //    ModelAPI_AttributeDouble>(data()->attribute(SketchPlugin_Constraint::VALUE()));
-      //if(!aValueAttr->isInitialized()) {
-      //  aValueAttr->setValue(aLenght);
-      //}
-
       // the value should to be computed here, not in the getAISObject
       // in order to change the model value
       // inside the object transaction. This is important for creating a constraint by preselection.