Warnings on vc14 were eliminated
[occt.git] / src / BRep / BRep_GCurve.lxx
1 // Created on: 1995-03-15
2 // Created by: Laurent PAINNOT
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 //=======================================================================
18 //function : SetRange
19 //purpose  : 
20 //=======================================================================
21
22 inline void BRep_GCurve::SetRange(const Standard_Real First, 
23                                   const Standard_Real Last)
24 {
25   myFirst = First;
26   myLast  = Last;
27   Update();
28 }
29
30 //=======================================================================
31 //function : Range
32 //purpose  : 
33 //=======================================================================
34
35 inline void BRep_GCurve::Range(Standard_Real& First, 
36                                Standard_Real& Last) const 
37 {
38   First = myFirst;
39   Last  = myLast;
40 }
41
42 //=======================================================================
43 //function : First
44 //purpose  : 
45 //=======================================================================
46
47 inline Standard_Real BRep_GCurve::First() const 
48 {
49   return myFirst;
50 }
51
52 //=======================================================================
53 //function : Last
54 //purpose  : 
55 //=======================================================================
56
57 inline Standard_Real BRep_GCurve::Last() const 
58 {
59   return myLast;
60 }
61
62 //=======================================================================
63 //function : First
64 //purpose  : 
65 //=======================================================================
66
67 inline void BRep_GCurve::First(const Standard_Real F)
68 {
69   myFirst = F;
70   Update();
71 }
72
73 //=======================================================================
74 //function : Last
75 //purpose  : 
76 //=======================================================================
77
78 inline void BRep_GCurve::Last(const Standard_Real L)
79 {
80   myLast = L;
81   Update();
82 }
83