Return to Snippet

Revision: 27349
at June 3, 2010 07:05 by Homitsu


Updated Code
//Creo l'ambiente
size(400,400);
background(255);
smooth(); //Con le circonferenze, meglio usare sempre antialias

fill(255,0,0,255); //Alpha alla massima opacita'
ellipse(width/3,height/2,width/3,height/3);

fill(0,255,0); //Alpha non impostato
ellipse((width/3*2),height/2,width/3,height/3);

fill(0,0,255,125); //Alpha circa al 50%
ellipse(width/2,height/2,width/3,height/3);

Revision: 27348
at June 3, 2010 07:03 by Homitsu


Updated Code
//Creo l'ambiente
size(400,400);
background(255);
smooth(); //Con le circonferenze è meglio usare sempre antialias

fill(255,0,0,255); //Alpha alla massima opacità
ellipse(width/3,height/2,width/3,height/3);

fill(0,255,0); //Alpha non impostato
ellipse((width/3*2),height/2,width/3,height/3);

fill(0,0,255,125); //Alpha circa al 50%
ellipse(width/2,height/2,width/3,height/3);

Revision: 27347
at June 3, 2010 07:03 by Homitsu


Initial Code
//Creo l'ambiente
size(400,400);
background(255);
smooth(); //Con le circonferenze è meglio usare sempre antialias

fill(255,0,0,255); //Alpha alla massima opacità
ellipse(width/3,height/2,width/3,height/3);

fill(0,255,0); //Alpha non impostato
ellipse((width/3*2),height/2,width/3,height/3);

fill(0,0,255,125); //Alpha circa al 50%
ellipse(width/2,height/2,width/3,height/3);

Initial URL
http://www.isiaurbino.net/mathema/?p=386

Initial Description
Sketch realizzato nel 2010 da Valentina Rachiele e Davide Homitsu Riboli per gli studenti ISIA Urbino nell'ambito del corso "Matematica per il Design.

Initial Title
Gestire le Trasparenze

Initial Tags


Initial Language
Processing