0031668: Visualization - WebGL sample doesn't work on Emscripten 1.39
[occt.git] / src / GeomInt / GeomInt_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
9b0fb8cd 17#include <StdFail_NotDone.hxx>
18
7fd59977 19//=======================================================================
20//function : GeomInt_LineConstructor
21//purpose :
22//=======================================================================
23
24inline GeomInt_LineConstructor::GeomInt_LineConstructor ()
25 : done(Standard_False)
26{
27}
28
29
30//=======================================================================
31//function : Load
32//purpose :
33//=======================================================================
34
35inline void GeomInt_LineConstructor::Load (const Handle(Adaptor3d_TopolTool)& D1,
36 const Handle(Adaptor3d_TopolTool)& D2,
37 const Handle(GeomAdaptor_HSurface)& S1,
38 const Handle(GeomAdaptor_HSurface)& S2)
39{
40 myDom1 = D1;
41 myDom2 = D2;
42 myHS1 = S1;
43 myHS2 = S2;
44}
45
46
47//=======================================================================
48//function : IsDone
49//purpose :
50//=======================================================================
51
52inline Standard_Boolean GeomInt_LineConstructor::IsDone () const
53{
54 return done;
55}
56
57
58//=======================================================================
59//function : NbParts
60//purpose :
61//=======================================================================
62
63inline Standard_Integer GeomInt_LineConstructor::NbParts () const
64{
9775fa61 65 if (!done) { throw StdFail_NotDone(); }
7fd59977 66 return (seqp.Length() / 2);
67}
68
69
70//=======================================================================
71//function : Part
72//purpose :
73//=======================================================================
74inline void GeomInt_LineConstructor::Part (const Standard_Integer I,
75 Standard_Real& WFirst,
76 Standard_Real& WLast) const
77{
9775fa61 78 if (!done) { throw StdFail_NotDone(); }
7fd59977 79 WFirst = seqp(2*I-1);
80 WLast = seqp(2*I);
81}