Salome HOME
Output information about sketch entitites on mouse move
[modules/shaper.git] / src / SketchSolver / SketchSolver_Builder.h
index ebac79ffdab636cb6934a62bd055035588dfad27..86a395bc29a4925e818a4254747fcb622f389926 100644 (file)
@@ -32,12 +32,12 @@ public:
   /// \brief Creates temporary constraint to fix the placement of the feature
   SolverConstraintPtr createFixedConstraint(FeaturePtr theFixedFeature) const;
 
+  /// \brief Creates temporary constraint to fix radius of the arc
+  SolverConstraintPtr createFixedArcRadiusConstraint(FeaturePtr theArc) const;
+
   /// \brief Creates temporary constraint to fix the feature after movement
   SolverConstraintPtr createMovementConstraint(FeaturePtr theFixedFeature) const;
 
-////  /// \brief Creates constraint for parametrically given attribute
-////  SolverConstraintPtr createParametricConstraint(AttributePtr theAttribute) const;
-
   /// \brief Creates new constraint(s) using given parameters
   /// \param theConstraint [in]  original constraint
   /// \param theGroupID    [in]  group the constraint belongs to
@@ -68,6 +68,7 @@ public:
   /// \param theSketchID   [in]  sketch the constraint belongs to
   /// \param theType       [in]  type of constraint
   /// \param theValue      [in]  numeric characteristic of constraint (angle for multi-rotation) if applicable
+  /// \param theFullValue  [in]  indicates theValue shows full translation delta/rotation angle or delta/angle between neighbor entities
   /// \param thePoint1     [in]  center for multi-rotation or start point for multi-translation
   /// \param thePoint2     [in]  end point for multi-translation (empty for multi-rotation)
   /// \param theTrsfEnt    [in]  list of transformed entities
@@ -77,6 +78,7 @@ public:
                      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 = 0;