0022048: Visualization, AIS_InteractiveContext - single object selection should alway...
[occt.git] / src / IntStart / IntStart_SearchOnBoundaries.lxx
... / ...
CommitLineData
1// Copyright (c) 1995-1999 Matra Datavision
2// Copyright (c) 1999-2014 OPEN CASCADE SAS
3//
4// This file is part of Open CASCADE Technology software library.
5//
6// This library is free software; you can redistribute it and/or modify it under
7// the terms of the GNU Lesser General Public License version 2.1 as published
8// by the Free Software Foundation, with special exception defined in the file
9// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
10// distribution for complete text of the license and disclaimer of any warranty.
11//
12// Alternatively, this file may be used under the terms of Open CASCADE
13// commercial license or contractual agreement.
14
15#include <StdFail_NotDone.hxx>
16
17
18inline Standard_Boolean IntStart_SearchOnBoundaries::IsDone () const {
19
20 return done;
21}
22
23
24inline Standard_Boolean IntStart_SearchOnBoundaries::AllArcSolution () const {
25
26 if (!done) {throw StdFail_NotDone();}
27 return all;
28}
29
30
31inline Standard_Integer IntStart_SearchOnBoundaries::NbPoints () const {
32
33 if (!done) {throw StdFail_NotDone();}
34 return spnt.Length();
35}
36
37
38inline const IntStart_ThePathPoint& IntStart_SearchOnBoundaries::Point
39 (const Standard_Integer Index) const {
40
41 if (!done) {throw StdFail_NotDone();}
42 return spnt.Value(Index);
43}
44
45inline Standard_Integer IntStart_SearchOnBoundaries::NbSegments () const {
46
47 if (!done) {throw StdFail_NotDone();}
48 return sseg.Length();
49}
50
51
52inline const IntStart_TheSegment& IntStart_SearchOnBoundaries::Segment
53 (const Standard_Integer Index) const {
54
55 if (!done) {throw StdFail_NotDone();}
56 return sseg.Value(Index);
57}
58