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


#include <GccInt_BLine.ixx>
#include <Standard_DomainError.hxx>
#include <gp_Lin2d.hxx>

GccInt_BLine::
   GccInt_BLine(const gp_Lin2d& Line) {
   lin = gp_Lin2d(Line);
 }

GccInt_IType GccInt_BLine::
   ArcType() const { return GccInt_Lin; }

gp_Lin2d GccInt_BLine::
  Line() const { return lin; }