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


#include <GccInt_BPoint.ixx>
#include <Standard_DomainError.hxx>
#include <gp_Pnt2d.hxx>

GccInt_BPoint::
   GccInt_BPoint(const gp_Pnt2d& Point) {
   pnt = gp_Pnt2d(Point);
 }

GccInt_IType GccInt_BPoint::
   ArcType() const {
   return GccInt_Pnt;
 }

gp_Pnt2d GccInt_BPoint::
   Point() const { return pnt; }