From: mpv Date: Thu, 5 May 2022 06:38:59 +0000 (+0300) Subject: #29623 Backward compatibility broken X-Git-Tag: V9_9_1b1~25 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=c9b3b1fc3ab8903dc72b5066b9604347f1a0d75d;p=modules%2Fshaper.git #29623 Backward compatibility broken Dump the direct angle direction by default. --- diff --git a/src/SketchAPI/SketchAPI_ConstraintAngle.cpp b/src/SketchAPI/SketchAPI_ConstraintAngle.cpp index 92a0073b2..871a7017f 100644 --- a/src/SketchAPI/SketchAPI_ConstraintAngle.cpp +++ b/src/SketchAPI/SketchAPI_ConstraintAngle.cpp @@ -115,6 +115,8 @@ static std::string angleTypeToString(FeaturePtr theFeature) aType = THE_ANGLE_SUPPLEMENTARY; else if (aBackwardDiff < aDirectDiff && aBackwardDiff < aComplementaryDiff) aType = THE_ANGLE_BACKWARD; + else + aType = THE_ANGLE_DIRECT; } return aType; }