how to tell min/max values in this case?
in
Programming Questions
•
9 months ago
float a;
void draw(){
a+=0.03;
float x= noise(a, 10)*width/2;
println(x);
}
hello
i want to map x to another range
but what is the min and max values for x now?
how to tell?
float z=map(x,?,?,0,2000);
best, k
void draw(){
a+=0.03;
float x= noise(a, 10)*width/2;
println(x);
}
hello
i want to map x to another range
but what is the min and max values for x now?
how to tell?
float z=map(x,?,?,0,2000);
best, k
2