Skip to main content
3 of 6
added 155 characters in body
PurkkaKoodari
  • 17.9k
  • 2
  • 37
  • 92

#Processing, 101 97 bytes

4 bytes thanks to Flambino.

float d;void draw(){background(255);stroke(#800080);d+=PI/1800;point(50+cos(d)*38,50+sin(d)*38);} 

This creates a default 100 by 100 pixel window with the required animation.

output window

Disclaimer: that image is not a GIF. Don't stare at it for a minute.

PurkkaKoodari
  • 17.9k
  • 2
  • 37
  • 92