summaryrefslogtreecommitdiff
path: root/src/PGeom2d/PGeom2d_Vector.cxx
blob: acc534e48b946cfd07fc84c4ef16505e7c6b2b60 (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_Vector.cxx
// Created:	Thu Mar  4 11:07:18 1993
// Author:	Philippe DAUTRY
//		<fid@sdsun2>
// Copyright:	Matra Datavision 1993


#include <PGeom2d_Vector.ixx>

//=======================================================================
//function : PGeom2d_Vector
//purpose  : 
//=======================================================================

PGeom2d_Vector::PGeom2d_Vector(const gp_Vec2d& aVec) :
       vec(aVec)
{}


//=======================================================================
//function : PGeom2d_Vector
//purpose  : 
//=======================================================================

PGeom2d_Vector::PGeom2d_Vector()
{}


//=======================================================================
//function : Vec
//purpose  : 
//=======================================================================

void  PGeom2d_Vector::Vec(const gp_Vec2d& aVec)
{ vec = aVec; }


//=======================================================================
//function : Vec
//purpose  : 
//=======================================================================

gp_Vec2d PGeom2d_Vector::Vec() const 
{ return vec; }