martes, 14 de enero de 2020

int R=400;
float angulo=0;


void setup(){
  fullScreen();
  background(0);
  smooth();
}


void draw(){
  noStroke();
  fill(0,20);
  rect(0,0,width,height);
  ellipseMode(CENTER);
  stroke(255);
  strokeWeight(2);
  fill(255,20);
  ellipse(width/2,height/2,850,850);
  strokeWeight(10);
  stroke(255);
  point(width/2,height/2);
  strokeWeight(4);
  stroke(255,0,150);
  line(width/2,height/2,width/2+R*cos(angulo),height/2+R*sin(angulo));
  angulo=angulo+0.005;
}

3. Reloj analógico

lunes, 13 de enero de 2020

int i,j;

fullScreen();
background(0);

for(j=5;j<height;j=j+20){
  for(i=5;i<width;i=i+20){//hace los puntos de una línea horizontal
   strokeWeight(10);
   stroke(171, 235, 198);
   point(i,j);
  }
}

2. Rejilla de puntos

miércoles, 8 de enero de 2020

Hui Li Liu Xu
2ºBach B

Google

Tic




1. Presentación