043b8b9e51e750cdcd1a5c4ec5cb6822a0880700
[occt.git] / src / GCE2d / GCE2d_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 <GCE2d_MakeLine.ixx>
18 #include <gce_MakeLin2d.hxx>
19 #include <StdFail_NotDone.hxx>
20
21 //=========================================================================
22 //   Constructions of 2d geometrical elements from Geom2d.
23 //=========================================================================
24
25 GCE2d_MakeLine::GCE2d_MakeLine(const gp_Ax2d& A)
26 {
27   TheError = gce_Done;
28   TheLine = new Geom2d_Line(A);
29 }
30
31 GCE2d_MakeLine::GCE2d_MakeLine(const gp_Lin2d& L)
32 {
33   TheError = gce_Done;
34   TheLine = new Geom2d_Line(L);
35 }
36
37 GCE2d_MakeLine::GCE2d_MakeLine(const gp_Pnt2d& P,
38                                const gp_Dir2d& V)
39 {
40   TheError = gce_Done;
41   TheLine = new Geom2d_Line(P,V);
42 }
43
44 GCE2d_MakeLine::GCE2d_MakeLine(const gp_Pnt2d& P1 ,
45                                const gp_Pnt2d& P2 ) 
46 {
47   gce_MakeLin2d L(P1,P2);
48   TheError = L.Status();
49   if (TheError == gce_Done) {
50     TheLine = new Geom2d_Line(L.Value());
51   }
52 }
53
54 GCE2d_MakeLine::GCE2d_MakeLine(const gp_Lin2d& Lin   ,
55                                const gp_Pnt2d& Point ) 
56 {
57   gce_MakeLin2d L(Lin,Point);
58   TheError = L.Status();
59   if (TheError == gce_Done) {
60     TheLine = new Geom2d_Line(L.Value());
61   }
62 }
63
64 GCE2d_MakeLine::GCE2d_MakeLine(const gp_Lin2d&     Lin  ,
65                                const Standard_Real Dist ) 
66 {
67   gce_MakeLin2d L(Lin,Dist);
68   TheError = L.Status();
69   if (TheError == gce_Done) {
70     TheLine = new Geom2d_Line(L.Value());
71   }
72 }
73
74 const Handle(Geom2d_Line)& GCE2d_MakeLine::Value() const
75
76   StdFail_NotDone_Raise_if(!TheError == gce_Done,"");
77   return TheLine;
78 }
79
80 const Handle(Geom2d_Line) & GCE2d_MakeLine::Operator() const 
81 {
82   return Value();
83 }
84
85 GCE2d_MakeLine::operator Handle(Geom2d_Line) () const
86 {
87   return Value();
88 }
89