1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-19 13:40:49 +03:00
Files
occt/src/IntStart/IntStart_SearchOnBoundaries.lxx
2012-03-05 19:23:40 +04:00

45 lines
922 B
Plaintext
Executable File

#include <StdFail_NotDone.hxx>
inline Standard_Boolean IntStart_SearchOnBoundaries::IsDone () const {
return done;
}
inline Standard_Boolean IntStart_SearchOnBoundaries::AllArcSolution () const {
if (!done) {StdFail_NotDone::Raise();}
return all;
}
inline Standard_Integer IntStart_SearchOnBoundaries::NbPoints () const {
if (!done) {StdFail_NotDone::Raise();}
return spnt.Length();
}
inline const IntStart_ThePathPoint& IntStart_SearchOnBoundaries::Point
(const Standard_Integer Index) const {
if (!done) {StdFail_NotDone::Raise();}
return spnt.Value(Index);
}
inline Standard_Integer IntStart_SearchOnBoundaries::NbSegments () const {
if (!done) {StdFail_NotDone::Raise();}
return sseg.Length();
}
inline const IntStart_TheSegment& IntStart_SearchOnBoundaries::Segment
(const Standard_Integer Index) const {
if (!done) {StdFail_NotDone::Raise();}
return sseg.Value(Index);
}