blob: 9fe6bfa33ccb069059511efe477caedb05c7cd7f (
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
|
#include <StdFail_NotDone.hxx>
inline Standard_Boolean IntStart_SearchInside::IsDone () const {
return done;
}
inline Standard_Integer IntStart_SearchInside::NbPoints () const {
if (!done) {StdFail_NotDone::Raise();}
return list.Length();
}
inline const IntSurf_InteriorPoint& IntStart_SearchInside::Value
(const Standard_Integer Index) const
{
if (!done) {StdFail_NotDone::Raise();}
return list.Value(Index);
}
|