Ottenere Quadrati RGB x Valori Assoluti e Relativi


/ Published in: Processing
Save to your folder(s)

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


Copy this code and paste it in your HTML
  1. //Creo l'ambiente [esercizio valido per multipli di 3]
  2. size(180,180);
  3. background(0);
  4.  
  5. fill(255,0,0);
  6. //rect(30,75,30,30); //Quadrato assoluto
  7. //rect(width/6,(height/2-height/12),width/6,width/6); //Quadrato relativo
  8.  
  9. fill(0,255,0);
  10. //rect(75,75,30,30); //Quadrato assoluto
  11. //rect((width/3+width/12),(height/2-height/12),width/6,width/6); //Quadrato relativo
  12.  
  13. fill(0,0,255);
  14. //rect(120,75,30,30); //Quadrato assoluto
  15. //rect((width-width/3),(height/2-height/12),width/6,width/6); //Quadrato relativo

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

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.