]> SALOME platform Git repositories - modules/shaper.git/blobdiff - src/SketchSolver/PlaneGCSSolver/PlaneGCSSolver_Builder.cpp
Salome HOME
Fix compilation errors in solvers.
[modules/shaper.git] / src / SketchSolver / PlaneGCSSolver / PlaneGCSSolver_Builder.cpp
index f74db8d2ed1b9cb17c5513938171aab02bcd6cbc..135eebd94a796711ce066fd9986be419ce6cbaa2 100644 (file)
@@ -263,6 +263,7 @@ std::list<ConstraintWrapperPtr> PlaneGCSSolver_Builder::createConstraint(
     const EntityID& theSketchID,
     const SketchSolver_ConstraintType& theType,
     const double& theValue,
+    const bool theFullValue,
     const EntityWrapperPtr& thePoint1,
     const EntityWrapperPtr& thePoint2,
     const std::list<EntityWrapperPtr>& theTrsfEnt) const
@@ -284,6 +285,7 @@ std::list<ConstraintWrapperPtr> PlaneGCSSolver_Builder::createConstraint(
   aResult->setEntities(aConstrAttrList);
   if (anAngleParam)
     aResult->setValueParameter(anAngleParam);
+  aResult->setIsFullValue(theFullValue);
   return std::list<ConstraintWrapperPtr>(1, aResult);
 }