summaryrefslogtreecommitdiff
path: root/inc/HLRAlgo_EdgesBlock.lxx
blob: 9830cba5106aaa03f76fc48a4cc7b67fdb69faef (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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
// File:	HLRAlgo_EdgesBlock.lxx
// Created:	Thu Apr 20 11:31:26 1995
// Author:	Christophe MARION
//		<cma@ecolox>

#define EMaskOrient   ((Standard_Boolean)15)
#define EMaskOutLine  ((Standard_Boolean)16)
#define EMaskInternal ((Standard_Boolean)32)
#define EMaskDouble   ((Standard_Boolean)64)
#define EMaskIsoLine  ((Standard_Boolean)128)

//=======================================================================
//function : NbEdges
//purpose  : 
//=======================================================================

inline Standard_Integer HLRAlgo_EdgesBlock::NbEdges() const
{
  return myEdges.Upper();
}

//=======================================================================
//function : Edge
//purpose  : 
//=======================================================================

inline void HLRAlgo_EdgesBlock::Edge (const Standard_Integer I,
				      const Standard_Integer EI)
{
  myEdges(I) = EI;
}

//=======================================================================
//function : Edge
//purpose  : 
//=======================================================================

inline Standard_Integer
HLRAlgo_EdgesBlock::Edge (const Standard_Integer I) const
{
  return myEdges(I);
}

//=======================================================================
//function : Orientation
//purpose  : 
//=======================================================================

inline TopAbs_Orientation 
HLRAlgo_EdgesBlock::Orientation (const Standard_Integer I) const
{
  return ((TopAbs_Orientation)(myFlags(I) & EMaskOrient));
}

//=======================================================================
//function : Orientation
//purpose  : 
//=======================================================================

inline void 
HLRAlgo_EdgesBlock::Orientation (const Standard_Integer I,
				 const TopAbs_Orientation Or)
{
  myFlags(I) &= ~EMaskOrient;
  myFlags(I) |= (((Standard_Boolean)Or) & EMaskOrient);
}

//=======================================================================
//function : OutLine
//purpose  : 
//=======================================================================

inline Standard_Boolean
HLRAlgo_EdgesBlock::OutLine (const Standard_Integer I) const
{
  return (myFlags(I) & EMaskOutLine) != 0;
}

//=======================================================================
//function : OutLine
//purpose  : 
//=======================================================================

inline void 
HLRAlgo_EdgesBlock::OutLine (const Standard_Integer I,
			     const Standard_Boolean B)
{
  if (B) myFlags(I) |=  EMaskOutLine;
  else   myFlags(I) &= ~EMaskOutLine;
}

//=======================================================================
//function : Internal
//purpose  : 
//=======================================================================

inline Standard_Boolean
HLRAlgo_EdgesBlock::Internal (const Standard_Integer I) const
{
  return (myFlags(I) & EMaskInternal) != 0;
}

//=======================================================================
//function : Internal
//purpose  : 
//=======================================================================

inline void
HLRAlgo_EdgesBlock::Internal (const Standard_Integer I,
			      const Standard_Boolean B)
{
  if (B) myFlags(I) |=  EMaskInternal;
  else   myFlags(I) &= ~EMaskInternal;
}

//=======================================================================
//function : Double
//purpose  : 
//=======================================================================

inline Standard_Boolean
HLRAlgo_EdgesBlock::Double (const Standard_Integer I) const
{
  return (myFlags(I) & EMaskDouble) != 0;
}

//=======================================================================
//function : Double
//purpose  : 
//=======================================================================

inline void HLRAlgo_EdgesBlock::Double (const Standard_Integer I,
					const Standard_Boolean B)
{
  if (B) myFlags(I) |=  EMaskDouble;
  else   myFlags(I) &= ~EMaskDouble;
}

//=======================================================================
//function : IsoLine
//purpose  : 
//=======================================================================

inline Standard_Boolean
HLRAlgo_EdgesBlock::IsoLine (const Standard_Integer I) const
{
  return (myFlags(I) & EMaskIsoLine) != 0;
}

//=======================================================================
//function : IsoLine
//purpose  : 
//=======================================================================

inline void HLRAlgo_EdgesBlock::IsoLine (const Standard_Integer I,
					 const Standard_Boolean B)
{
  if (B) myFlags(I) |=  EMaskIsoLine;
  else   myFlags(I) &= ~EMaskIsoLine;
}

//=======================================================================
//function : MinMax
//purpose  : 
//=======================================================================

inline Standard_Address HLRAlgo_EdgesBlock::MinMax () const
{ return (Standard_Address)&myMinMax; }