summaryrefslogtreecommitdiff
path: root/src/PGeom/PGeom_Conic.cxx
blob: cc6cd662edeb6068f023357ff1ff058a19119a19 (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_Conic.cxx
// Created:	Wed Mar  3 17:33:38 1993
// Author:	Philippe DAUTRY
//		<fid@phylox>
// Copyright:	Matra Datavision 1993


#include <PGeom_Conic.ixx>

//=======================================================================
//function : PGeom_Conic
//purpose  : 
//=======================================================================

PGeom_Conic::PGeom_Conic(const gp_Ax2& aPosition) :
       position(aPosition)
{}


//=======================================================================
//function : PGeom_Conic
//purpose  : 
//=======================================================================

PGeom_Conic::PGeom_Conic()
{}


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

void  PGeom_Conic::Position(const gp_Ax2& aPosition)
{ position = aPosition; }


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

gp_Ax2  PGeom_Conic::Position() const 
{ return position; }