0027961: Visualization - remove unused and no more working OpenGl_AVIWriter
[occt.git] / src / GeomInt / GeomInt_LineConstructor.lxx
1 // Created on: 1995-02-07
2 // Created by: Jacques GOUSSARD
3 // Copyright (c) 1995-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
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
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.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16
17 #include <StdFail_NotDone.hxx>
18
19 //=======================================================================
20 //function : GeomInt_LineConstructor
21 //purpose  : 
22 //=======================================================================
23
24 inline GeomInt_LineConstructor::GeomInt_LineConstructor ()
25  : done(Standard_False)
26 {
27 }
28
29
30 //=======================================================================
31 //function : Load
32 //purpose  : 
33 //=======================================================================
34
35 inline 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
52 inline Standard_Boolean GeomInt_LineConstructor::IsDone () const
53 {
54   return done;
55 }
56
57
58 //=======================================================================
59 //function : NbParts
60 //purpose  : 
61 //=======================================================================
62
63 inline Standard_Integer GeomInt_LineConstructor::NbParts () const
64 {
65   if (!done) { StdFail_NotDone::Raise(); }
66   return (seqp.Length() / 2);
67 }
68
69
70 //=======================================================================
71 //function : Part
72 //purpose  : 
73 //=======================================================================
74 inline void GeomInt_LineConstructor::Part (const Standard_Integer I,
75                                            Standard_Real& WFirst,
76                                            Standard_Real& WLast) const
77 {
78   if (!done) { StdFail_NotDone::Raise(); }
79   WFirst = seqp(2*I-1);
80   WLast  = seqp(2*I);
81 }