summaryrefslogtreecommitdiff
path: root/src/PGeom/PGeom_OffsetCurve.cxx
blob: 8b2b5886d8977c7ef6decec9961f65e60815d5bb (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
// File:	PGeom_OffsetCurve.cxx
// Created:	Thu Mar  4 10:01:30 1993
// Author:	Philippe DAUTRY
//		<fid@sdsun2>
// Copyright:	Matra Datavision 1993


#include <PGeom_OffsetCurve.ixx>

//=======================================================================
//function : PGeom_OffsetCurve
//purpose  : 
//=======================================================================

PGeom_OffsetCurve::PGeom_OffsetCurve()
{}


//=======================================================================
//function : PGeom_OffsetCurve
//purpose  : 
//=======================================================================

PGeom_OffsetCurve::PGeom_OffsetCurve
  (const Handle(PGeom_Curve)& aBasisCurve,
   const Standard_Real aOffsetValue,
   const gp_Dir& aOffsetDirection) :
  basisCurve(aBasisCurve),
  offsetDirection(aOffsetDirection),
  offsetValue(aOffsetValue)
{}


//=======================================================================
//function : BasisCurve
//purpose  : 
//=======================================================================

void  PGeom_OffsetCurve::BasisCurve(const Handle(PGeom_Curve)& aBasisCurve)
{ basisCurve = aBasisCurve; }


//=======================================================================
//function : BasisCurve
//purpose  : 
//=======================================================================

Handle(PGeom_Curve)  PGeom_OffsetCurve::BasisCurve() const 
{ return basisCurve; }


//=======================================================================
//function : OffsetDirection
//purpose  : 
//=======================================================================

void  PGeom_OffsetCurve::OffsetDirection(const gp_Dir& aOffsetDirection)
{ offsetDirection = aOffsetDirection; }


//=======================================================================
//function : OffsetDirection
//purpose  : 
//=======================================================================

gp_Dir  PGeom_OffsetCurve::OffsetDirection() const 
{ return offsetDirection; }


//=======================================================================
//function : OffsetValue
//purpose  : 
//=======================================================================

void  PGeom_OffsetCurve::OffsetValue(const Standard_Real aOffsetValue)
{ offsetValue = aOffsetValue; }


//=======================================================================
//function : OffsetValue
//purpose  : 
//=======================================================================

Standard_Real  PGeom_OffsetCurve::OffsetValue() const 
{ return offsetValue; }