0

I am using Processing Is there anyway I can slow time of my multiple circle drawing animation ? It is supposed to look like a starry night , but it is too fast

T Tse
  • 786
  • 7
  • 19
  • [Welcome to StackOverflow](http://stackoverflow.com/tour). Please read our [ask] page for hints on how to improve your question. Great question tend to provide quicker, better answers from the community – blurfus Feb 09 '18 at 03:27
  • @Aleksandar Djuric alternatively you can use [millis()](https://stackoverflow.com/questions/12417937/create-a-simple-countdown-in-processing/12421641#12421641) to update the animation properties less often or make increments of your circle drawing properties smaller – George Profenza Feb 09 '18 at 15:19

2 Answers2

2

You can adjust the framerate by calling the frameRate function.

T Tse
  • 786
  • 7
  • 19
0
void setup() {frameRate(4);} void draw() {}
nkr
  • 3,026
  • 7
  • 31
  • 39