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


#include <GccInt_BCirc.ixx>
#include <Standard_DomainError.hxx>
#include <gp_Circ2d.hxx>

GccInt_BCirc::
   GccInt_BCirc(const gp_Circ2d& Circ) {
   cir = gp_Circ2d(Circ);
 }

GccInt_IType GccInt_BCirc::
   ArcType() const {
   return GccInt_Cir;
 }

gp_Circ2d GccInt_BCirc::
  Circle() const { return cir; }