blob: 437acd11c509105c76ad05b79af44d6c78b7ca92 (
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
|
// File: PGeom_SweptSurface.cxx
// Created: Thu Mar 4 10:53:28 1993
// Author: Philippe DAUTRY
// <fid@sdsun2>
// Copyright: Matra Datavision 1993
#include <PGeom_SweptSurface.ixx>
//=======================================================================
//function : PGeom_SweptSurface
//purpose :
//=======================================================================
PGeom_SweptSurface::PGeom_SweptSurface()
{}
//=======================================================================
//function : PGeom_SweptSurface
//purpose :
//=======================================================================
PGeom_SweptSurface::PGeom_SweptSurface
(const Handle(PGeom_Curve)& aBasisCurve,
const gp_Dir& aDirection) :
basisCurve(aBasisCurve),
direction(aDirection)
{}
//=======================================================================
//function : BasisCurve
//purpose :
//=======================================================================
void PGeom_SweptSurface::BasisCurve
(const Handle(PGeom_Curve)& aBasisCurve)
{ basisCurve = aBasisCurve; }
//=======================================================================
//function : BasisCurve
//purpose :
//=======================================================================
Handle(PGeom_Curve) PGeom_SweptSurface::BasisCurve() const
{ return basisCurve; }
//=======================================================================
//function : Direction
//purpose :
//=======================================================================
void PGeom_SweptSurface::Direction(const gp_Dir& aDirection)
{ direction = aDirection; }
//=======================================================================
//function : Direction
//purpose :
//=======================================================================
gp_Dir PGeom_SweptSurface::Direction() const
{ return direction; }
|