summaryrefslogtreecommitdiff
path: root/src/PGeom2d/PGeom2d_CartesianPoint.cxx
blob: b006c9142b77a028203e651a793926265d9d64e8 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// File:	PGeom2d_CartesianPoint.cxx
// Created:	Wed Mar  3 16:39:53 1993
// Author:	Philippe DAUTRY
//		<fid@phylox>
// Copyright:	Matra Datavision 1993


#include <PGeom2d_CartesianPoint.ixx>

//=======================================================================
//function : PGeom2d_CartesianPoint
//purpose  : 
//=======================================================================

PGeom2d_CartesianPoint::PGeom2d_CartesianPoint ()
{}


//=======================================================================
//function : PGeom2d_CartesianPoint
//purpose  : 
//=======================================================================

PGeom2d_CartesianPoint::PGeom2d_CartesianPoint (const gp_Pnt2d& aPnt) :
       pnt(aPnt)
{}


//=======================================================================
//function : Pnt
//purpose  : 
//=======================================================================

void  PGeom2d_CartesianPoint::Pnt(const gp_Pnt2d& aPnt)
{ pnt = aPnt; }


//=======================================================================
//function : Pnt
//purpose  : 
//=======================================================================

gp_Pnt2d PGeom2d_CartesianPoint::Pnt() const 
{ return pnt; }