blob: 1a8d5e09cf6780f9b82359f1f07ed714943b99b7 (
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_Vector.cxx
// Created: Thu Mar 4 11:07:18 1993
// Author: Philippe DAUTRY
// <fid@sdsun2>
// Copyright: Matra Datavision 1993
#include <PGeom_Vector.ixx>
//=======================================================================
//function : PGeom_Vector
//purpose :
//=======================================================================
PGeom_Vector::PGeom_Vector(const gp_Vec& aVec) :
vec(aVec)
{}
//=======================================================================
//function : PGeom_Vector
//purpose :
//=======================================================================
PGeom_Vector::PGeom_Vector()
{}
//=======================================================================
//function : Vec
//purpose :
//=======================================================================
void PGeom_Vector::Vec(const gp_Vec& aVec)
{ vec = aVec; }
//=======================================================================
//function : Vec
//purpose :
//=======================================================================
gp_Vec PGeom_Vector::Vec() const
{ return vec; }
|