This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PImage img; | |
void setup() { | |
size(1300, 867); | |
img = loadImage("3.jpg"); | |
} | |
void draw() { | |
tint(255, 51); | |
for (int i=0; i<10; i++) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PImage img; | |
void setup(){ | |
size (1000, 667); | |
img = loadImage ("a.jpg"); | |
} | |
void draw (){ | |
tint(255, 102); | |
image (img, 0, 0); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 (); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
size (400, 520); | |
background(40, 150, 20); | |
//Línea | |
PImage img; | |
size (360, 480); | |
img = loadImage("imagen2.jpg"); | |
image(img,0,0); |