blob: 84cedcc1da7af973f0aca3014f5d550d764d737d (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
// File: BRepBlend_SurfRstLineBuilder.lxx
// Created: Fri Jan 24 10:47:10 1997
// Author: Laurent BOURESCHE
// <lbo@pomalox.paris1.matra-dtv.fr>
#include <StdFail_NotDone.hxx>
//=======================================================================
//function : IsDone
//purpose :
//=======================================================================
inline Standard_Boolean BRepBlend_SurfRstLineBuilder::IsDone() const
{
return done;
}
//=======================================================================
//function : Line
//purpose :
//=======================================================================
inline const Handle(BRepBlend_Line)& BRepBlend_SurfRstLineBuilder::Line() const
{
if (!done) {StdFail_NotDone::Raise();}
return line;
}
//=======================================================================
//function : DecrochStart
//purpose :
//=======================================================================
inline Standard_Boolean BRepBlend_SurfRstLineBuilder::DecrochStart() const
{
return decrochdeb;
}
//=======================================================================
//function : DecrochEnd
//purpose :
//=======================================================================
inline Standard_Boolean BRepBlend_SurfRstLineBuilder::DecrochEnd() const
{
return decrochfin;
}
|