Integration of OCCT 6.5.0 from SVN
[occt.git] / src / Blend / Blend_Walking.lxx
CommitLineData
7fd59977 1#include <StdFail_NotDone.hxx>
2
3inline Standard_Boolean Blend_Walking::IsDone () const
4{
5 return done;
6}
7
8inline Standard_Boolean Blend_Walking::TwistOnS1() const
9{
10 return twistflag1;
11}
12
13inline Standard_Boolean Blend_Walking::TwistOnS2() const
14{
15 return twistflag2;
16}
17
18inline const Handle(TheLine)& Blend_Walking::Line () const
19{
20 if (!done) {StdFail_NotDone::Raise();}
21 return line;
22}