| 114 | } STDMatchList; |
| 115 | |
| 116 | class VOXEL_LOC { |
| 117 | public: |
| 118 | int64_t x, y, z; |
| 119 | |
| 120 | VOXEL_LOC(int64_t vx = 0, int64_t vy = 0, int64_t vz = 0) |
| 121 | : x(vx), y(vy), z(vz) {} |
| 122 | |
| 123 | bool operator==(const VOXEL_LOC &other) const { |
| 124 | return (x == other.x && y == other.y && z == other.z); |
| 125 | } |
| 126 | }; |
| 127 | |
| 128 | // for down sample function |
| 129 | struct M_POINT { |
nothing calls this directly
no outgoing calls
no test coverage detected