0031687: Draw Harness, ViewerTest - extend command vrenderparams with option updating...
[occt.git] / src / GC / GC_MakeArcOfHyperbola.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//
d5f74e42 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
973c2be1 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
42cf5bc1 17
18#include <ElCLib.hxx>
19#include <GC_MakeArcOfHyperbola.hxx>
7fd59977 20#include <Geom_Hyperbola.hxx>
42cf5bc1 21#include <Geom_TrimmedCurve.hxx>
22#include <gp_Hypr.hxx>
23#include <gp_Pnt.hxx>
7fd59977 24#include <StdFail_NotDone.hxx>
7fd59977 25
26GC_MakeArcOfHyperbola::
27 GC_MakeArcOfHyperbola(const gp_Hypr& Hypr ,
28 const gp_Pnt& P1 ,
29 const gp_Pnt& P2 ,
30 const Standard_Boolean Sense )
31{
32 Standard_Real Alpha1 = ElCLib::Parameter(Hypr,P1);
33 Standard_Real Alpha2 = ElCLib::Parameter(Hypr,P2);
34 Handle(Geom_Hyperbola) H = new Geom_Hyperbola(Hypr);
35 TheArc = new Geom_TrimmedCurve(H,Alpha1,Alpha2,Sense);
36 TheError = gce_Done;
37}
38
39GC_MakeArcOfHyperbola::GC_MakeArcOfHyperbola(const gp_Hypr& Hypr ,
40 const gp_Pnt& P ,
41 const Standard_Real Alpha ,
42 const Standard_Boolean Sense )
43{
44 Standard_Real Alphafirst = ElCLib::Parameter(Hypr,P);
45 Handle(Geom_Hyperbola) H = new Geom_Hyperbola(Hypr);
46 TheArc = new Geom_TrimmedCurve(H,Alphafirst,Alpha,Sense);
47 TheError = gce_Done;
48}
49
50GC_MakeArcOfHyperbola::GC_MakeArcOfHyperbola(const gp_Hypr& Hypr ,
51 const Standard_Real Alpha1 ,
52 const Standard_Real Alpha2 ,
53 const Standard_Boolean Sense )
54{
55 Handle(Geom_Hyperbola) H = new Geom_Hyperbola(Hypr);
56 TheArc = new Geom_TrimmedCurve(H,Alpha1,Alpha2,Sense);
57 TheError = gce_Done;
58}
59
60const Handle(Geom_TrimmedCurve)& GC_MakeArcOfHyperbola::Value() const
61{
2d2b3d53 62 StdFail_NotDone_Raise_if (TheError != gce_Done,
63 "GC_MakeArcOfHyperbola::Value() - no result");
7fd59977 64 return TheArc;
65}