0024624: Lost word in license statement in source files
[occt.git] / src / GC / GC_MakeLine.cxx
1 // Created on: 1992-10-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 #include <GC_MakeLine.ixx>
18 #include <gce_MakeLin.hxx>
19 #include <StdFail_NotDone.hxx>
20
21 //=========================================================================
22 //   Constructions of 3d geometrical elements from Geom.
23 //=========================================================================
24
25 GC_MakeLine::GC_MakeLine(const gp_Pnt& P ,
26                            const gp_Dir& V )
27 {
28   TheError = gce_Done;
29   TheLine = new Geom_Line(P,V);
30 }
31
32 GC_MakeLine::GC_MakeLine(const gp_Ax1& A1 )
33 {
34   TheError = gce_Done;
35   TheLine = new Geom_Line(A1);
36 }
37
38 GC_MakeLine::GC_MakeLine(const gp_Lin& L )
39 {
40   TheError = gce_Done;
41   TheLine = new Geom_Line(L);
42 }
43
44 GC_MakeLine::GC_MakeLine(const gp_Pnt& P1 ,
45                            const gp_Pnt& P2 ) 
46 {
47   gce_MakeLin L(P1,P2);
48   TheError = L.Status();
49   if (TheError == gce_Done) {
50     TheLine = new Geom_Line(L.Value());
51   }
52 }
53
54 GC_MakeLine::GC_MakeLine(const gp_Lin& Lin   ,
55                            const gp_Pnt& Point ) 
56 {
57   gce_MakeLin L(Lin,Point);
58   TheError = L.Status();
59   if (TheError == gce_Done) {
60     TheLine = new Geom_Line(L.Value());
61   }
62 }
63
64 const Handle(Geom_Line)& GC_MakeLine::Value() const
65
66   StdFail_NotDone_Raise_if(!TheError == gce_Done,"");
67   return TheLine;
68 }
69
70 const Handle(Geom_Line)& GC_MakeLine::Operator() const 
71 {
72   return Value();
73 }
74
75 GC_MakeLine::operator Handle(Geom_Line) () const
76 {
77   return Value();
78 }
79