summaryrefslogtreecommitdiff
path: root/src/IntAna2d/IntAna2d_AnaIntersection.cxx
blob: 72d2ae0d36e9fa2d129612710937fbb0827ef037 (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
// File IntAna2d_AnaIntersection.cxx, JAG le 6 Juin 1991

#include <IntAna2d_AnaIntersection.ixx>

#include <Standard_OutOfRange.hxx>
#include <StdFail_NotDone.hxx>
 
IntAna2d_AnaIntersection::IntAna2d_AnaIntersection () {

  done = Standard_False;
}

IntAna2d_AnaIntersection::IntAna2d_AnaIntersection (const gp_Lin2d& L1,
						    const gp_Lin2d& L2) {
  Perform(L1,L2);
}

IntAna2d_AnaIntersection::IntAna2d_AnaIntersection (const gp_Circ2d& C1,
						    const gp_Circ2d& C2) {
  Perform(C1,C2);
}


IntAna2d_AnaIntersection::IntAna2d_AnaIntersection (const gp_Lin2d& L,
						    const gp_Circ2d& C) { 
  Perform(L,C);
}


IntAna2d_AnaIntersection::IntAna2d_AnaIntersection (const gp_Lin2d& L,
						    const IntAna2d_Conic& Conic) {
  Perform(L,Conic);
}

IntAna2d_AnaIntersection::IntAna2d_AnaIntersection (const gp_Parab2d& P,
						    const IntAna2d_Conic& Conic) {
  Perform(P,Conic);
}

IntAna2d_AnaIntersection::IntAna2d_AnaIntersection (const gp_Circ2d& C,
						    const IntAna2d_Conic& Conic) {
  Perform(C,Conic);
}

IntAna2d_AnaIntersection::IntAna2d_AnaIntersection (const gp_Elips2d& E,
						    const IntAna2d_Conic& Conic) {
  Perform(E,Conic);
}


IntAna2d_AnaIntersection::IntAna2d_AnaIntersection (const gp_Hypr2d& E,
						    const IntAna2d_Conic& Conic)
{
  Perform(E,Conic);
}