MCPcopy Create free account
hub / github.com/InteractiveComputerGraphics/CompactNSearch / PointID

Class PointID

include/DataStructures.h:13–22  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11namespace CompactNSearch
12{
13struct PointID
14{
15 unsigned int point_set_id;
16 unsigned int point_id;
17
18 bool operator==(PointID const& other) const
19 {
20 return point_id == other.point_id && point_set_id == other.point_set_id;
21 }
22};
23
24struct HashKey
25{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected