1 #include <SketchSolver_ConstraintAngle.h>
3 #include <GeomAPI_Dir2d.h>
4 #include <GeomAPI_Lin2d.h>
5 #include <GeomAPI_Pnt2d.h>
6 #include <GeomAPI_XY.h>
10 void SketchSolver_ConstraintAngle::getAttributes(
11 double& theValue, std::vector<Slvs_hEntity>& theAttributes)
13 SketchSolver_Constraint::getAttributes(theValue, theAttributes);
19 void SketchSolver_ConstraintAngle::adjustConstraint()
21 static const double aTol = 1000. * tolerance;
22 Slvs_Constraint aConstraint = myStorage->getConstraint(mySlvsConstraints.front());
25 std::shared_ptr<GeomAPI_Pnt2d> aPoints[2][2]; // start and end points of lines
26 Slvs_hConstraint aFixedConstraint;
27 Slvs_hEntity anEnt[2] = {aConstraint.entityA, aConstraint.entityB};
28 for (int i = 0; i < 2; i++) {
29 const Slvs_Entity& aLine = myStorage->getEntity(anEnt[i]);
31 for (int j = 0; j < 2; j++, aCoef += 2.0) {
32 const Slvs_Entity& aPoint = myStorage->getEntity(aLine.point[j]);
34 for (int k = 0; k < 2; k++)
35 aCoords[k] = myStorage->getParameter(aPoint.param[k]).val;
36 isFixed[i][j] = myStorage->isPointFixed(aPoint.h, aFixedConstraint, true);
37 aPoints[i][j] = std::shared_ptr<GeomAPI_Pnt2d>(new GeomAPI_Pnt2d(aCoords[0], aCoords[1]));
41 std::shared_ptr<GeomAPI_Lin2d> aLine[2] = {
42 std::shared_ptr<GeomAPI_Lin2d>(new GeomAPI_Lin2d(aPoints[0][0], aPoints[0][1])),
43 std::shared_ptr<GeomAPI_Lin2d>(new GeomAPI_Lin2d(aPoints[1][0], aPoints[1][1]))
45 std::shared_ptr<GeomAPI_Pnt2d> anIntersection = aLine[0]->intersect(aLine[1]);
49 for (int i = 0; i < 2; i++)
50 for (int j = 0; j < 2; j++)
51 aDist[i][j] = anIntersection->distance(aPoints[i][j]);
52 std::shared_ptr<GeomAPI_Dir2d> aDir[2];
53 for (int i = 0; i < 2; i++)
54 if (aDist[i][1] > aDist[i][0])
55 aDir[i] = std::shared_ptr<GeomAPI_Dir2d>(new GeomAPI_Dir2d(
56 aPoints[i][1]->xy()->decreased(anIntersection->xy())));
58 aDir[i] = std::shared_ptr<GeomAPI_Dir2d>(new GeomAPI_Dir2d(
59 aPoints[i][0]->xy()->decreased(anIntersection->xy())));
61 aConstraint.other = false;
62 for (int i = 0; i < 2; i++)
63 if (aLine[i]->direction()->dot(aDir[i]) < 0.0)
64 aConstraint.other = !aConstraint.other;
65 myStorage->updateConstraint(aConstraint);
67 bool isChanged = fabs(myAngle - aConstraint.valA) > aTol;
68 // myAngle should be updated even if the angle of constraint is changed too little
69 myAngle = aConstraint.valA;
71 return; // the angle was not changed, no need to recalculate positions of lines
73 if (isFixed[0][0] && isFixed[0][1] && isFixed[1][0] && isFixed[1][1])
74 return; // both lines are fixed => no need to update them
76 // Recalculate positions of lines to avoid conflicting constraints
77 // while changing angle value several times
78 double cosA = cos(myAngle * PI / 180.0);
79 double sinA = sin(myAngle * PI / 180.0);
80 if (aDir[0]->cross(aDir[1]) < 0.0)
83 if (isFixed[1][0] && isFixed[1][1]) {
87 double x = aDir[1-aLineToUpd]->x() * cosA - aDir[1-aLineToUpd]->y() * sinA;
88 double y = aDir[1-aLineToUpd]->x() * sinA + aDir[1-aLineToUpd]->y() * cosA;
90 std::shared_ptr<GeomAPI_Pnt2d> aNewPoints[2];
91 for (int i = 0; i < 2; i++) {
92 aNewPoints[i] = std::shared_ptr<GeomAPI_Pnt2d>(
93 new GeomAPI_Pnt2d(anIntersection->x() + x * aDist[aLineToUpd][i],
94 anIntersection->y() + y * aDist[aLineToUpd][i]));
97 std::shared_ptr<GeomAPI_XY> aDelta;
98 if (isFixed[aLineToUpd][0] && !isFixed[aLineToUpd][1])
99 aDelta = aPoints[aLineToUpd][0]->xy()->decreased(aNewPoints[0]->xy());
100 else if (!isFixed[aLineToUpd][0] && isFixed[aLineToUpd][1])
101 aDelta = aPoints[aLineToUpd][1]->xy()->decreased(aNewPoints[1]->xy());
103 for (int i = 0; i < 2; i++) {
104 aNewPoints[i]->setX(aNewPoints[i]->x() + aDelta->x());
105 aNewPoints[i]->setY(aNewPoints[i]->y() + aDelta->y());
109 // Update positions of points
110 const Slvs_Entity& anUpdLine = myStorage->getEntity(anEnt[aLineToUpd]);
112 for (int i = 0; i < 2; i++) {
113 const Slvs_Entity& aPoint = myStorage->getEntity(anUpdLine.point[i]);
114 aParam = myStorage->getParameter(aPoint.param[0]);
115 aParam.val = aNewPoints[i]->x();
116 myStorage->updateParameter(aParam);
117 aParam = myStorage->getParameter(aPoint.param[1]);
118 aParam.val = aNewPoints[i]->y();
119 myStorage->updateParameter(aParam);