0024530: TKMesh - remove unused package IntPoly
[occt.git] / src / BRep / BRep_GCurve.lxx
CommitLineData
b311480e 1// Created on: 1995-03-15
2// Created by: Laurent PAINNOT
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//
973c2be1 8// This library is free software; you can redistribute it and / or modify it
9// under the terms of the GNU Lesser General Public 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.
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 : SetRange
19//purpose :
20//=======================================================================
21
22inline 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
35inline 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
47inline Standard_Real BRep_GCurve::First() const
48{
49 return myFirst;
50}
51
52//=======================================================================
53//function : Last
54//purpose :
55//=======================================================================
56
57inline Standard_Real BRep_GCurve::Last() const
58{
59 return myLast;
60}
61
62//=======================================================================
63//function : First
64//purpose :
65//=======================================================================
66
67inline void BRep_GCurve::First(const Standard_Real F)
68{
69 myFirst = F;
70 Update();
71}
72
73//=======================================================================
74//function : Last
75//purpose :
76//=======================================================================
77
78inline void BRep_GCurve::Last(const Standard_Real L)
79{
80 myLast = L;
81 Update();
82}
83