summaryrefslogtreecommitdiff
path: root/inc/BRepOffset_Interval.lxx
blob: a02f7bdccf9fd0f00f9d147da772f2d63721def0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
// File:	BRepOffset_Interval.lxx
// Created:	Fri Oct 20 18:08:49 1995
// Author:	Yves FRICAUD
//		<yfr@stylox>



//=======================================================================
//function : First
//purpose  : 
//=======================================================================

inline void BRepOffset_Interval::First(const Standard_Real U)
{
  f = U;
}


//=======================================================================
//function : Last
//purpose  : 
//=======================================================================

inline void BRepOffset_Interval::Last(const Standard_Real U)
{
  l = U;
}


//=======================================================================
//function : Type
//purpose  : 
//=======================================================================

inline void BRepOffset_Interval::Type(const BRepOffset_Type T)
{
  type = T;
}


//=======================================================================
//function : First
//purpose  : 
//=======================================================================

inline Standard_Real BRepOffset_Interval::First() const 
{
  return f;
}


//=======================================================================
//function : Last
//purpose  : 
//=======================================================================

inline Standard_Real BRepOffset_Interval::Last() const 
{
  return l;
}


//=======================================================================
//function : Type
//purpose  : 
//=======================================================================

inline BRepOffset_Type BRepOffset_Interval::Type() const 
{
  return type;
}