Hello,
i have an ofVec3f as an ofParameter and i don't know how to update just one coordinate value.
for example i have :
ofParameter<ofVec3f> position;
I am able to get separate values using
float distance = position.get().z;
But how can i just set the z coordinate ?
thanks a lot