blob: 9436bf872c85b4c618bb6161eee5a9b8048c1eb3 (
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
|
#include <stdio.h>
#include <Standard_Stream.hxx>
#include <Aspect_IndexPixel.ixx>
Aspect_IndexPixel::Aspect_IndexPixel () {
myIndex = 0;
}
Aspect_IndexPixel::Aspect_IndexPixel (const Standard_Integer anIndex) {
myIndex = anIndex;
}
Standard_Integer Aspect_IndexPixel::Value() const {
return myIndex;
}
void Aspect_IndexPixel::SetValue(const Standard_Integer anIndex) {
myIndex = anIndex;
}
void Aspect_IndexPixel::Print(Standard_OStream& s) const
{
s << dec << setw(4) << myIndex;
}
// ------------------------------------------------------------------
// Hascode : Computes a hascoding value for a given Aspect_IndexPixel
// ------------------------------------------------------------------
Standard_Integer Aspect_IndexPixel::HashCode(const Standard_Integer Upper) const
{
return ( myIndex % Upper ) + 1 ;
}
Standard_Boolean Aspect_IndexPixel::IsEqual(const Aspect_IndexPixel& Other) const
{
return (myIndex == Other.myIndex);
}
Standard_Boolean Aspect_IndexPixel::IsNotEqual(const Aspect_IndexPixel& Other) const
{
return !IsEqual(Other);
}
|