summaryrefslogtreecommitdiff
path: root/src/PGeom/PGeom_CartesianPoint.cxx
blob: 9de09532db8cf96f1cd3a40628376187694e42fa (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:	PGeom_CartesianPoint.cxx
// Created:	Wed Mar  3 16:39:53 1993
// Author:	Philippe DAUTRY
//		<fid@phylox>
// Copyright:	Matra Datavision 1993


#include <PGeom_CartesianPoint.ixx>

//=======================================================================
//function : PGeom_CartesianPoint
//purpose  : 
//=======================================================================

PGeom_CartesianPoint::PGeom_CartesianPoint ()
{}


//=======================================================================
//function : PGeom_CartesianPoint
//purpose  : 
//=======================================================================

PGeom_CartesianPoint::PGeom_CartesianPoint (const gp_Pnt& aPnt) :
       pnt(aPnt)
{}


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

void  PGeom_CartesianPoint::Pnt(const gp_Pnt& aPnt)
{ pnt = aPnt; }


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

gp_Pnt  PGeom_CartesianPoint::Pnt() const 
{ return pnt; }