summaryrefslogtreecommitdiff
path: root/src/GccAna/GccAna_Circ2d3Tan_9.cxx
blob: 27e81bcb76c84c78619a0573a5d6c6463e057983 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
// File GccAna_Circ2d3Tan.cxx_9, REG 08/07/91

#include <GccAna_Circ2d3Tan.jxx>

#include <ElCLib.hxx>
#include <IntAna2d_AnaIntersection.hxx>
#include <IntAna2d_IntPoint.hxx>
#include <gp_Lin2d.hxx>
#include <gp_Circ2d.hxx>
#include <gp_Dir2d.hxx>
#include <GccAna_Lin2dBisec.hxx>
#include <GccEnt_BadQualifier.hxx>

//=========================================================================
//   Creation d un cercle passant par trois points.                       +
//   Trois cas de figures :                                               +
//      1/ Les trois points sont confondus.                               +
//      -----------------------------------                               +
//      Le resultat est le cercle centre en Point1 de rayon zero.         +
//      2/ Deux des trois points sont confondus.                          +
//      ----------------------------------------                          +
//      On cree la mediatrice a deux points non confondus ainsi que la    +
//      droite passant par ces deux points.                               +
//      La solution a pour centre l intersection de ces deux droite et    +
//      pour rayon la distance entre ce centre et l un des trois points.  +
//      3/ Les trois points sont distinct.                                +
//      ----------------------------------                                +
//      
//=========================================================================

GccAna_Circ2d3Tan::
   GccAna_Circ2d3Tan (const gp_Pnt2d& Point1    ,
                      const gp_Pnt2d& Point2    ,
                      const gp_Pnt2d& Point3    ,
		      const Standard_Real      Tolerance ):

//=========================================================================
//   Initialisation des champs.                                           +
//=========================================================================

   cirsol(1,1)     ,
   qualifier1(1,1) ,
   qualifier2(1,1) ,
   qualifier3(1,1) ,
   TheSame1(1,1)   ,
   TheSame2(1,1)   ,
   TheSame3(1,1)   ,
   pnttg1sol(1,1)  ,
   pnttg2sol(1,1)  ,
   pnttg3sol(1,1)  ,
   par1sol(1,1)    ,
   par2sol(1,1)    ,
   par3sol(1,1)    , 
   pararg1(1,1)    , 
   pararg2(1,1)    ,
   pararg3(1,1)    
{

   gp_Dir2d dirx(1.0,0.0);
   WellDone = Standard_False;
   NbrSol = 0;

//=========================================================================
//   Traitement.                                                          +
//=========================================================================

   Standard_Real dist1 = Point1.Distance(Point2);
   Standard_Real dist2 = Point1.Distance(Point3);
   Standard_Real dist3 = Point2.Distance(Point3);

   qualifier1(1) = GccEnt_noqualifier;
   qualifier2(1) = GccEnt_noqualifier;
   qualifier3(1) = GccEnt_noqualifier;

   if ((dist1 < Tolerance) && (dist2 < Tolerance) && (dist3 < Tolerance)) {
     NbrSol++;
     WellDone = Standard_True;
     cirsol(1) = gp_Circ2d(gp_Ax2d(Point1,dirx),0.0);
//   ===============================================
     TheSame1(1) = 0;
     TheSame2(1) = 0;
     TheSame3(1) = 0;
     pnttg1sol(1) = Point1;
     pnttg2sol(1) = Point2;
     pnttg3sol(1) = Point3;
     par1sol(1) =0.0;
     par2sol(1) =0.0;
     par3sol(1) =0.0;
     pararg1(1) =0.0;
     pararg2(1) =0.0;
     pararg3(1) =0.0;
   }
   else {
     gp_Lin2d L1;
     gp_Lin2d L2;
     if (dist1 >= Tolerance) {
       L1 = gp_Lin2d(gp_Pnt2d((Point1.XY()+Point2.XY())/2.0),
		     gp_Dir2d(Point1.Y()-Point2.Y(),Point2.X()-Point1.X()));
     }
     if (dist2 >= Tolerance) {
       L2 = gp_Lin2d(gp_Pnt2d((Point1.XY()+Point3.XY())/2.0),
		     gp_Dir2d(Point1.Y()-Point3.Y(),Point3.X()-Point1.X()));
     }
     if (dist2 <= Tolerance) {
       L2 = gp_Lin2d(Point1,
		     gp_Dir2d(Point1.Y()-Point2.Y(),Point2.X()-Point1.X()));
     }
     else if (dist1 <= Tolerance) {
       L1 = gp_Lin2d(Point1,
		     gp_Dir2d(Point1.Y()-Point3.Y(),Point3.X()-Point1.X()));
     }
     else if (dist3 <= Tolerance) {
       L2 = gp_Lin2d(Point1,
		     gp_Dir2d(Point1.Y()-Point2.Y(),Point2.X()-Point1.X()));
     }
     IntAna2d_AnaIntersection Intp(L1,L2);
     if (Intp.IsDone()) {
       if (!Intp.IsEmpty()) {
	 for (Standard_Integer i = 1 ; i <= Intp.NbPoints() ; i++) {
	   NbrSol++;
	   cirsol(NbrSol) = gp_Circ2d(gp_Ax2d(Intp.Point(i).Value(),dirx),
//         ===============================================================
				      Point1.Distance(Intp.Point(i).Value()));
//                                    =======================================

	   TheSame1(NbrSol) = 0;
	   TheSame2(NbrSol) = 0;
	   TheSame3(NbrSol) = 0;
	   pnttg1sol(NbrSol) = Point1;
	   pnttg2sol(NbrSol) = Point2;
	   pnttg3sol(NbrSol) = Point3;
	   par1sol(NbrSol)=ElCLib::Parameter(cirsol(NbrSol),pnttg1sol(NbrSol));
	   par2sol(NbrSol)=ElCLib::Parameter(cirsol(NbrSol),pnttg2sol(NbrSol));
	   par3sol(NbrSol)=ElCLib::Parameter(cirsol(NbrSol),pnttg3sol(NbrSol));
	   pararg1(NbrSol) =0.0;
	   pararg2(NbrSol) =0.0;
	   pararg3(NbrSol) =0.0;
	 }
       }
       WellDone = Standard_True;
     }
   }
 }