1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0023291: GccAna_Circ2d3Tan_8.cxx, suspicious if

one of the duplicate conditions has been removed
Code was changed to be more obvious.
Unite if blocks into one block
Small correction of coding style
This commit is contained in:
ika 2012-11-15 15:14:58 +04:00
parent 999c0ca132
commit f2fd3809c5

View File

@ -118,29 +118,17 @@ GccAna_Circ2d3Tan::
// Standard_Integer nbsol2 = 0;
Standard_Integer nbsol3 = 0;
Standard_Boolean ok = Standard_False;
if (Qualified1.IsEnclosed()) {
if ((((origin1.X()-Center.X())*(-dir1.Y()))+
((origin1.Y()-Center.Y())*(dir1.X())))<=0){
ok = Standard_True;
nbsol1 = 1;
Radius = dist1;
}
}
else if (Qualified1.IsOutside()) {
if ((((origin1.X()-Center.X())*(-dir1.Y()))+
((origin1.Y()-Center.Y())*(dir1.X())))>=0){
ok = Standard_True;
nbsol1 = 1;
Radius = dist1;
}
}
else if (Qualified1.IsUnqualified()) {
ok = Standard_True;
nbsol1 = 1;
Radius = dist1;
}
Standard_Real difference = (((origin1.X()-Center.X())*(-dir1.Y())) + ((origin1.Y()-Center.Y())*(dir1.X())));
if ((Qualified1.IsEnclosed() && difference <= 0) ||
(Qualified1.IsOutside() && difference >= 0) ||
(Qualified1.IsUnqualified()))
{
ok = Standard_True;
nbsol1 = 1;
Radius = dist1;
}
if (ok) {
if (Abs(dist2-Radius)<=Tol && Abs(dist2-Radius)<=Tol) {
if (Abs(dist2-Radius)<=Tol) {
nbsol3 = 1;
}
else { ok = Standard_False; }