summaryrefslogtreecommitdiff
path: root/src/PGeom2d/PGeom2d_OffsetCurve.cxx
blob: 29f7c47d912b1fc561b2797debe68f46a619bac9 (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
// File:	PGeom2d_OffsetCurve.cxx
// Created:	Thu Mar  4 10:01:30 1993
// Author:	Philippe DAUTRY
//		<fid@sdsun2>
// Copyright:	Matra Datavision 1993


#include <PGeom2d_OffsetCurve.ixx>

//=======================================================================
//function : PGeom2d_OffsetCurve
//purpose  : 
//=======================================================================

PGeom2d_OffsetCurve::PGeom2d_OffsetCurve()
{}


//=======================================================================
//function : PGeom2d_OffsetCurve
//purpose  : 
//=======================================================================

PGeom2d_OffsetCurve::PGeom2d_OffsetCurve
  (const Handle(PGeom2d_Curve)& aBasisCurve,
   const Standard_Real aOffsetValue) :
  basisCurve(aBasisCurve),
  offsetValue(aOffsetValue)
{}


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

void  PGeom2d_OffsetCurve::BasisCurve(const Handle(PGeom2d_Curve)& aBasisCurve)
{ basisCurve = aBasisCurve; }


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

Handle(PGeom2d_Curve)  PGeom2d_OffsetCurve::BasisCurve() const 
{ return basisCurve; }


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

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


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

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