I am using the following code.
const int X_ORIGIN = 1233086; const int Y_ORIGIN = -4728071; const int Z_ORIGIN = 4085704; const in
As an alternative, this would also work in this case:
enum { X_ORIGIN = 1233086, Y_ORIGIN = -4728071, Z_ORIGIN = 4085704 }; const int xyzOrigin[] = { X_ORIGIN, Y_ORIGIN, Z_ORIGIN }; int main() { return 0; }