| 43 | } |
| 44 | |
| 45 | Cache::i_Point Cache::hashPoint(const Point& p) |
| 46 | { |
| 47 | i_Point ip; |
| 48 | ip.append(hashValue(p.x())); |
| 49 | ip.append(hashValue(p.y())); |
| 50 | ip.append(hashValue(p.z())); |
| 51 | |
| 52 | return ip; |
| 53 | } |
| 54 | |
| 55 | Cache::i_Polygon Cache::hashPolygon(Polygon* pg) |
| 56 | { |