xxxxxxxxxx
//import processing.pdf.*;
int tam = 120;
int tam2 = 300;
float grosor = 0.2;
void setup(){
size(900,900);
//beginRecord(PDF, "Trama circular.pdf");
background(255);
for (int a = 0; a < 1000; a = a+70){
for (int b = 0; b < 1000; b = b+70){
fill(20,0,70,80);
noStroke();
ellipse (a,b,tam,tam);
}
}
}
void draw(){
for (int c = 1; c < 1000; c = c+140){
for (int d = 1; d < 1000; d = d+140){
noFill();
stroke(255);
strokeWeight(grosor);
smooth();
ellipse (c, d, tam2, tam2);
}
}
//endRecord();
}