blob: efaa79f76fd6a4c03679527606d3cbab1ccf7733 (
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
|
// File: BOPTools_PointBetween.cxx
// Created: Thu Apr 19 11:19:20 2001
// Author: Peter KURNEV
// <pkv@irinox>
#include <BOPTools_PointBetween.ixx>
//=======================================================================
// function: BOPTools_PointBetween:: BOPTools_PointBetween
// purpose:
//=======================================================================
BOPTools_PointBetween::BOPTools_PointBetween()
:
myT(0.),
myU(0.),
myV(0.)
{}
//=======================================================================
// function: SetParameter
// purpose:
//=======================================================================
void BOPTools_PointBetween::SetParameter(const Standard_Real aT)
{
myT=aT;
}
//=======================================================================
// function: Parameter
// purpose:
//=======================================================================
Standard_Real BOPTools_PointBetween::Parameter()const
{
return myT;
}
//=======================================================================
// function: SetUV
// purpose:
//=======================================================================
void BOPTools_PointBetween::SetUV(const Standard_Real aU,
const Standard_Real aV)
{
myU=aU;
myV=aV;
}
//=======================================================================
// function: UV
// purpose:
//=======================================================================
void BOPTools_PointBetween::UV(Standard_Real& aU,
Standard_Real& aV) const
{
aU=myU;
aV=myV;
}
//=======================================================================
// function: SetPnt
// purpose:
//=======================================================================
void BOPTools_PointBetween::SetPnt (const gp_Pnt& aP)
{
myPnt=aP;
}
//=======================================================================
// function: Pnt
// purpose:
//=======================================================================
const gp_Pnt& BOPTools_PointBetween::Pnt () const
{
return myPnt;
}
|