Maybe it's easier if you use ofSeedRandom. As an example:
ofApp.h
int xCord = 0;
setup()
ofSeedRandom(); // or ofSeedRandom(int val);
xCord = ofRandom(500) + 30;
Maybe it's easier if you use ofSeedRandom. As an example:
ofApp.h
int xCord = 0;
setup()
ofSeedRandom(); // or ofSeedRandom(int val);
xCord = ofRandom(500) + 30;