blob: 7195dca6176f8814472fc4edea332e0908ac4e6e (
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
|
#include <StdFail_NotDone.hxx>
//=======================================================================
//function : IsDone
//purpose :
//=======================================================================
inline Standard_Boolean CPnts_AbscissaPoint::IsDone() const
{
return myDone;
}
//=======================================================================
//function : Parameter
//purpose :
//=======================================================================
inline Standard_Real CPnts_AbscissaPoint::Parameter() const
{
StdFail_NotDone_Raise_if(!myDone, "");
return myParam;
}
//=======================================================================
//function : SetParameter
//purpose :
//=======================================================================
inline void CPnts_AbscissaPoint::SetParameter(const Standard_Real P)
{
myParam = P;
myDone = Standard_True;
}
|