MCPcopy Create free account
hub / github.com/Pamphlett/Outram / VOXEL_LOC

Class VOXEL_LOC

include/desc/STDesc.h:116–126  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

114} STDMatchList;
115
116class VOXEL_LOC {
117public:
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
129struct M_POINT {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected