summaryrefslogtreecommitdiff
path: root/src/GccInt/GccInt_BElips.cxx
blob: 4917bdf4e91f33e5df98482e6e309543e890195f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// File:	GccInt_BElips.cxx
// Created:	Mon Oct  7 15:33:07 1991
// Author:	Remi GILET
//		<reg@phobox>


#include <GccInt_BElips.ixx>
#include <Standard_DomainError.hxx>
#include <gp_Elips2d.hxx>

GccInt_BElips::
   GccInt_BElips(const gp_Elips2d& Ellipse) {
   eli = gp_Elips2d(Ellipse);
 }

GccInt_IType GccInt_BElips::
   ArcType() const {
   return GccInt_Ell;
 }

gp_Elips2d GccInt_BElips::
  Ellipse() const { return eli; }