0024513: Suspicious code highlighted by 0024510
[occt.git] / src / IntTools / IntTools_LineConstructor.lxx
CommitLineData
b311480e 1// Created on: 1995-02-07
2// Created by: Jacques GOUSSARD
3// Copyright (c) 1995-1999 Matra Datavision
973c2be1 4// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 5//
973c2be1 6// This file is part of Open CASCADE Technology software library.
b311480e 7//
d5f74e42 8// This library is free software; you can redistribute it and/or modify it under
9// the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 10// by the Free Software Foundation, with special exception defined in the file
11// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12// distribution for complete text of the license and disclaimer of any warranty.
b311480e 13//
973c2be1 14// Alternatively, this file may be used under the terms of Open CASCADE
15// commercial license or contractual agreement.
7fd59977 16
17//=======================================================================
18//function : GeomInt_LineConstructor
19//purpose :
20//=======================================================================
21
22inline IntTools_LineConstructor::IntTools_LineConstructor ()
23 : done(Standard_False)
24{
25}
26
27
28//=======================================================================
29//function : Load
30//purpose :
31//=======================================================================
32
33inline void IntTools_LineConstructor::Load(const Handle(Adaptor3d_TopolTool)& D1,
34 const Handle(Adaptor3d_TopolTool)& D2,
35 const Handle(GeomAdaptor_HSurface)& S1,
36 const Handle(GeomAdaptor_HSurface)& S2)
37{
38 myDom1 = D1;
39 myDom2 = D2;
40 myHS1 = S1;
41 myHS2 = S2;
42}
43
44
45//=======================================================================
46//function : IsDone
47//purpose :
48//=======================================================================
49
50inline Standard_Boolean IntTools_LineConstructor::IsDone () const
51{
52 return done;
53}
54
55
56//=======================================================================
57//function : NbParts
58//purpose :
59//=======================================================================
60
61inline Standard_Integer IntTools_LineConstructor::NbParts () const
62{
63 if (!done) { StdFail_NotDone::Raise(); }
64 return (seqp.Length() / 2);
65}
66
67
68//=======================================================================
69//function : Part
70//purpose :
71//=======================================================================
72
73inline void IntTools_LineConstructor::Part (const Standard_Integer I,
74 Standard_Real& WFirst,
75 Standard_Real& WLast) const
76{
77 if (!done) { StdFail_NotDone::Raise(); }
78 WFirst = seqp(2*I-1);
79 WLast = seqp(2*I);
80}