blob: dc4aa7d0ae178cee488d63f5a83336b0eb62e41d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#include <StdFail_NotDone.hxx>
inline Standard_Boolean Blend_Walking::IsDone () const
{
return done;
}
inline Standard_Boolean Blend_Walking::TwistOnS1() const
{
return twistflag1;
}
inline Standard_Boolean Blend_Walking::TwistOnS2() const
{
return twistflag2;
}
inline const Handle(TheLine)& Blend_Walking::Line () const
{
if (!done) {StdFail_NotDone::Raise();}
return line;
}
|