0023024: Update headers of OCCT files
[occt.git] / src / gce / gce_MakeLin.cxx
1 // Created on: 1992-09-02
2 // Created by: Remi GILET
3 // Copyright (c) 1992-1999 Matra Datavision
4 // Copyright (c) 1999-2012 OPEN CASCADE SAS
5 //
6 // The content of this file is subject to the Open CASCADE Technology Public
7 // License Version 6.5 (the "License"). You may not use the content of this file
8 // except in compliance with the License. Please obtain a copy of the License
9 // at http://www.opencascade.org and read it completely before using this file.
10 //
11 // The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
12 // main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
13 //
14 // The Original Code and all software distributed under the License is
15 // distributed on an "AS IS" basis, without warranty of any kind, and the
16 // Initial Developer hereby disclaims all such warranties, including without
17 // limitation, any warranties of merchantability, fitness for a particular
18 // purpose or non-infringement. Please see the License for the specific terms
19 // and conditions governing the rights and limitations under the License.
20
21
22 #include <gce_MakeLin.ixx>
23 #include <StdFail_NotDone.hxx>
24 #include <gp.hxx>
25
26 //=========================================================================
27 //   Creation d une ligne 3d de gp a partir d un Ax1 de gp.               +
28 //=========================================================================
29
30 gce_MakeLin::gce_MakeLin(const gp_Ax1& A1)
31 {
32   TheLin = gp_Lin(A1);
33   TheError = gce_Done;
34 }
35
36 //=========================================================================
37 //   Creation d une ligne 3d de gp a partir de son origine P (Pnt de gp)  +
38 //   et d une direction V (Dir de gp).                                    +
39 //=========================================================================
40
41 gce_MakeLin::gce_MakeLin(const gp_Pnt& P,
42                          const gp_Dir& V)
43 {
44   TheLin = gp_Lin(P,V);
45   TheError = gce_Done;
46 }
47
48 //=========================================================================
49 //   Creation d une ligne 3d de gp passant par les deux points <P1> et    +
50 //   <P2>.                                                                +
51 //=========================================================================
52
53 gce_MakeLin::gce_MakeLin(const gp_Pnt& P1 ,
54                          const gp_Pnt& P2 ) 
55 {
56   if (P1.Distance(P2) >= gp::Resolution()) {
57     TheLin = gp_Lin(P1,gp_Dir(P2.XYZ()-P1.XYZ()));
58     TheError = gce_Done;
59   }
60   else { TheError = gce_ConfusedPoints; }
61 }
62
63 //=========================================================================
64 //   Creation d une ligne 3d de gp parallele a une autre <Lin> et passant +
65 //   par le point <P>.                                                    +
66 //=========================================================================
67
68 gce_MakeLin::gce_MakeLin(const gp_Lin& Lin ,
69                          const gp_Pnt& P   )
70 {
71   TheLin = gp_Lin(P,Lin.Direction());
72   TheError = gce_Done;
73 }
74
75 const gp_Lin& gce_MakeLin::Value() const
76
77   StdFail_NotDone_Raise_if(!TheError == gce_Done,"");
78   return TheLin;
79 }
80
81 const gp_Lin& gce_MakeLin::Operator() const 
82 {
83   return Value();
84 }
85
86 gce_MakeLin::operator gp_Lin() const
87 {
88   return Value();
89 }
90