summaryrefslogtreecommitdiff
path: root/Year_2/IandM/rote/rote.pde
blob: 1292328ef35890cb42cfd51b8785df20ecddc1b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
void setup() {
  size(500, 500);
}

int th = 0;

void draw() {
  background(#ffffff);
  translate(width/2, height/2);
  rotate(radians(th++));
  stroke(0);
  noFill();
  strokeWeight(20);
  ellipseMode(RADIUS);
  ellipse(0, 0, 200, 200);
  
  noStroke();
  fill(0);
  triangle(0, -200, 180, 100, -180, 100);
}