summaryrefslogtreecommitdiff
path: root/src/PGeom/PGeom_ElementarySurface.cxx
blob: ca2718d33c7ffdf4f69633fba643a5b53e8011bc (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
45
46
47
// File:	PGeom_ElementarySurface.cxx
// Created:	Wed Mar  3 18:07:27 1993
// Author:	Philippe DAUTRY
//		<fid@phylox>
// Copyright:	Matra Datavision 1993


#include <PGeom_ElementarySurface.ixx>

//=======================================================================
//function : PGeom_ElementarySurface
//purpose  : 
//=======================================================================

PGeom_ElementarySurface::PGeom_ElementarySurface()
{}


//=======================================================================
//function : PGeom_ElementarySurface
//purpose  : 
//=======================================================================

PGeom_ElementarySurface::PGeom_ElementarySurface
  (const gp_Ax3& aPosition) :
  position(aPosition)
{}


//=======================================================================
//function : Position
//purpose  : 
//=======================================================================

void  PGeom_ElementarySurface::Position(const gp_Ax3& aPosition)
{ position = aPosition; }


//=======================================================================
//function : Position
//purpose  : 
//=======================================================================

gp_Ax3  PGeom_ElementarySurface::Position() const 
{ return position; }