0024428: Implementation of LGPL license
[occt.git] / src / GC / GC_MakeHyperbola.cxx
CommitLineData
b311480e 1// Created on: 1992-10-02
2// Created by: Remi GILET
3// Copyright (c) 1992-1999 Matra Datavision
973c2be1 4// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 5//
973c2be1 6// This file is part of Open CASCADE Technology software library.
b311480e 7//
973c2be1 8// This library is free software; you can redistribute it and / or modify it
9// under the terms of the GNU Lesser General Public 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.
b311480e 13//
973c2be1 14// Alternatively, this file may be used under the terms of Open CASCADE
15// commercial license or contractual agreement.
7fd59977 16
17#include <GC_MakeHyperbola.ixx>
18#include <gce_MakeHypr.hxx>
19#include <StdFail_NotDone.hxx>
20
21GC_MakeHyperbola::GC_MakeHyperbola(const gp_Hypr& H)
22{
23 TheError = gce_Done;
24 TheHyperbola = new Geom_Hyperbola(H);
25}
26
27GC_MakeHyperbola::GC_MakeHyperbola(const gp_Ax2& A2 ,
28 const Standard_Real MajorRadius,
29 const Standard_Real MinorRadius)
30{
31 if (MajorRadius < 0. || MinorRadius < 0.0) { TheError = gce_NegativeRadius; }
32 else {
33 TheError = gce_Done;
34 TheHyperbola = new Geom_Hyperbola(gp_Hypr(A2,MajorRadius,MinorRadius));
35 }
36}
37
38GC_MakeHyperbola::GC_MakeHyperbola(const gp_Pnt& S1 ,
39 const gp_Pnt& S2 ,
40 const gp_Pnt& Center ) {
41 gce_MakeHypr H = gce_MakeHypr(S1,S2,Center);
42 TheError = H.Status();
43 if (TheError == gce_Done) {
44 TheHyperbola = new Geom_Hyperbola(H.Value());
45 }
46}
47
48const Handle(Geom_Hyperbola)& GC_MakeHyperbola::Value() const
49{
50 StdFail_NotDone_Raise_if(!TheError == gce_Done,"");
51 return TheHyperbola;
52}
53
54const Handle(Geom_Hyperbola)& GC_MakeHyperbola::Operator() const
55{
56 return Value();
57}
58
59GC_MakeHyperbola::operator Handle(Geom_Hyperbola) () const
60{
61 return Value();
62}
63