Skip to content

Instantly share code, notes, and snippets.

PImage img;
void setup() {
size(1300, 867);
img = loadImage("3.jpg");
}
void draw() {
tint(255, 51);
for (int i=0; i<10; i++) {
PImage img;
void setup(){
size (1000, 667);
img = loadImage ("a.jpg");
}
void draw (){
tint(255, 102);
image (img, 0, 0);
void setup(){
size(1000,700);
background(190, 50, 248);
}
void draw(){
smooth ();
for(int i=40;i<1000;i+=70){//horizontal 1
float tmn=i/20;
ellipse(i,40,tmn,tmn);
void setup(){
size(1000,700);
background(190, 50, 248);
}
void draw(){
smooth ();
for(int i=40;i<1000;i+=70){//horizontal 1
float tmn=i/20;
ellipse(i,40,tmn,tmn);
size (590, 590);
background (4,4,4);
pushMatrix (); //Línea fucsia
for (int i= -50; i < 700; i= i+40){
stroke (210, 26, 186, 80);
strokeWeight (2);
line (0, i-100, 620, i+80);
}
popMatrix ();
size (600, 550);
background (4, 4, 4);
smooth();
//intervención L. 1
stroke (4, 4, 4);
strokeWeight (1);
fill (188, 188, 188);
rect (0, 0, 20, 10);
size (400, 520);
background(40, 150, 20);
//Línea
PImage img;
size (360, 480);
img = loadImage("imagen2.jpg");
image(img,0,0);