Integration of OCCT 6.5.0 from SVN
[occt.git] / src / GccInt / GccInt_BParab.cxx
1 // File:        GccInt_BParab.cxx
2 // Created:     Mon Oct  7 15:33:07 1991
3 // Author:      Remi GILET
4 //              <reg@phobox>
5
6
7 #include <GccInt_BParab.ixx>
8 #include <Standard_DomainError.hxx>
9 #include <gp_Parab2d.hxx>
10
11 GccInt_BParab::
12    GccInt_BParab(const gp_Parab2d& Parab) {
13    par = gp_Parab2d(Parab);
14  }
15
16 GccInt_IType GccInt_BParab::
17    ArcType() const {
18    return GccInt_Par;
19  }
20
21 gp_Parab2d GccInt_BParab::
22   Parabola() const { return par; }
23