525734ee6d2182e7ae9586ba524a50eefef3deae
[occt.git] / src / gce / gce_MakeParab2d.cxx
1 // Created on: 1992-09-02
2 // Created by: Remi GILET
3 // Copyright (c) 1992-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
8 // This library is free software; you can redistribute it and/or modify it under
9 // the terms of the GNU Lesser General Public License version 2.1 as published
10 // by the Free Software Foundation, with special exception defined in the file
11 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 // distribution for complete text of the license and disclaimer of any warranty.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16
17
18 #include <gce_MakeParab2d.hxx>
19 #include <gp.hxx>
20 #include <gp_Ax2d.hxx>
21 #include <gp_Ax22d.hxx>
22 #include <gp_Parab2d.hxx>
23 #include <gp_Pnt2d.hxx>
24 #include <StdFail_NotDone.hxx>
25
26 gce_MakeParab2d::gce_MakeParab2d(const gp_Ax22d&     A     ,
27                                  const Standard_Real Focal ) 
28 {
29   if (Focal < 0.0) { TheError = gce_NullFocusLength; }
30   else {
31     TheParab2d = gp_Parab2d(A,Focal);
32     TheError = gce_Done;
33   }
34 }
35
36 gce_MakeParab2d::gce_MakeParab2d(const gp_Ax2d&         MirrorAxis ,
37                                  const Standard_Real    Focal      ,
38                                  const Standard_Boolean Sense      ) 
39 {
40   if (Focal < 0.0) { TheError = gce_NullFocusLength; }
41   else {
42     TheParab2d = gp_Parab2d(MirrorAxis,Focal,Sense);
43     TheError = gce_Done;
44   }
45 }
46
47 gce_MakeParab2d::gce_MakeParab2d(const gp_Ax2d&  D            ,
48                                  const gp_Pnt2d& F            ,
49                                  const Standard_Boolean Sense )
50 {
51   TheParab2d = gp_Parab2d(D,F,Sense);
52   TheError = gce_Done;
53 }
54
55 gce_MakeParab2d::gce_MakeParab2d(const gp_Ax22d&  D ,
56                                  const gp_Pnt2d& F  )
57 {
58   TheParab2d = gp_Parab2d(D,F);
59   TheError = gce_Done;
60 }
61
62 //=========================================================================
63 //   Creation d une Parabole 2d de gp de centre <Center> et de sommet     +
64 //   <S1> .                                                               +
65 //   <CenterS1> donne le grand axe .                                      +
66 //   <S1> donne la focale.                                                +
67 //=========================================================================
68
69 gce_MakeParab2d::gce_MakeParab2d(const gp_Pnt2d&        S      ,
70                                  const gp_Pnt2d&        Center ,
71                                  const Standard_Boolean Sense  ) 
72 {
73   if (S.Distance(Center) >= gp::Resolution()) {
74     gp_Dir2d XAxis(gp_XY(S.XY()-Center.XY()));
75     TheParab2d = gp_Parab2d(gp_Ax2d(Center,XAxis),S.Distance(Center),Sense);
76     TheError = gce_Done;
77   }
78   else { TheError = gce_NullAxis; }
79 }
80
81 const gp_Parab2d& gce_MakeParab2d::Value () const
82 {
83   StdFail_NotDone_Raise_if(TheError != gce_Done,"");
84   return TheParab2d;
85 }
86
87 const gp_Parab2d& gce_MakeParab2d::Operator() const 
88 {
89   return Value();
90 }
91
92 gce_MakeParab2d::operator gp_Parab2d() const
93 {
94   return Value();
95 }
96