We are about to switch to a new forum software. Until then we have removed the registration on this forum.
hi, I try to make an iteration with a step that is getting smaller and smaller
I've made this :
for (float i= 0 ; i < 100 ; i= ceil(i + (100-i)/5) ) {
line(0, i, width, i);
}
is there a more conventional way ?
Answers
For example: