Integration of OCCT 6.5.0 from SVN
[occt.git] / src / GccInt / GccInt_Bisec.cxx
CommitLineData
7fd59977 1// File: GccInt_Bisec.cxx
2// Created: Mon Jan 27 09:44:43 1992
3// Author: Remi GILET
4// <reg@phobox>
5
6#include <GccInt_Bisec.ixx>
7#include <gp_Circ2d.hxx>
8#include <gp_Elips2d.hxx>
9#include <gp_Hypr2d.hxx>
10#include <gp_Lin2d.hxx>
11#include <gp_Parab2d.hxx>
12#include <gp_Pnt2d.hxx>
13#include <Standard_NotImplemented.hxx>
14
15gp_Circ2d GccInt_Bisec::
16 Circle() const {
17 Standard_NotImplemented::Raise();
18 return gp_Circ2d();
19 }
20
21gp_Elips2d GccInt_Bisec::
22 Ellipse() const {
23 Standard_NotImplemented::Raise();
24 return gp_Elips2d();
25 }
26
27gp_Hypr2d GccInt_Bisec::
28 Hyperbola() const {
29 Standard_NotImplemented::Raise();
30 return gp_Hypr2d();
31 }
32
33gp_Lin2d GccInt_Bisec::
34 Line() const {
35 Standard_NotImplemented::Raise();
36 return gp_Lin2d();
37 }
38
39gp_Parab2d GccInt_Bisec::
40 Parabola() const {
41 Standard_NotImplemented::Raise();
42 return gp_Parab2d();
43 }
44
45gp_Pnt2d GccInt_Bisec::
46 Point() const {
47 Standard_NotImplemented::Raise();
48 return gp_Pnt2d();
49 }
50