summaryrefslogtreecommitdiff
path: root/src/GccInt/GccInt_BParab.cxx
blob: 0885fa080d578760e4398538bc0ca2048a3f52a4 (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_BParab.cxx
// Created:	Mon Oct  7 15:33:07 1991
// Author:	Remi GILET
//		<reg@phobox>


#include <GccInt_BParab.ixx>
#include <Standard_DomainError.hxx>
#include <gp_Parab2d.hxx>

GccInt_BParab::
   GccInt_BParab(const gp_Parab2d& Parab) {
   par = gp_Parab2d(Parab);
 }

GccInt_IType GccInt_BParab::
   ArcType() const {
   return GccInt_Par;
 }

gp_Parab2d GccInt_BParab::
  Parabola() const { return par; }