blob: 47aa8f17c49fd61473135ae00c95301b5529753e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// File: IntTools_SurfaceRangeSampleMapHasher.lxx
// Created: Fri Oct 14 20:56:50 2005
// Author: Mikhail KLOKOV
// <mkk@kurox>
inline Standard_Integer IntTools_SurfaceRangeSampleMapHasher::HashCode(const IntTools_SurfaceRangeSample& K,
const Standard_Integer Upper) {
// return (((K.GetDepthU() % Upper) ^ (K.GetDepthV() % Upper)) % Upper);
return ((K.GetIndexU() * K.GetIndexV()) % Upper);
}
inline Standard_Boolean IntTools_SurfaceRangeSampleMapHasher::IsEqual(const IntTools_SurfaceRangeSample& S1,
const IntTools_SurfaceRangeSample& S2) {
return S1.IsEqual(S2);
}
|