Para hacer este sketch he modificado el programa de serpiente roja. He añadido nuevas formas (elipses que forman nubes, un rectángulo que forma el suelo), he cambiado el fondo y el diámetro y el color de la serpiente que ahora parece los copos de nieves que han caído estos días en Cuenca.
“Serpiente roja/Nieve” by Juan Ignacio Sainz
https://openprocessing.org/sketch/185053
License CreativeCommons Attribution ShareAlike
https://creativecommons.org/licenses/by-sa/3.0
{{filePath}}
{{width}} x {{height}}
Report Sketch
Oh, that naughty sketch! Please let us know what the issue is below.
Apply Template
Applying this template will reset your sketch and remove all your changes. Are you sure you would like to continue?
Report Sketch
Report Comment
Please confirm that you would like to report the comment below.
We will review your submission and take any actions necessary per our Community Guidelines. In addition to reporting this comment, you can also block the user to prevent any future interactions.
Please report comments only when necessary. Unnecessary or abusive use of this tool may result in your own account being suspended.
Are you sure you want to delete your sketch?
Any files uploaded will be deleted as well.
Delete Comment?
This will also delete all the replies to this comment.
Delete this tab? Any code in it will be deleted as well.
Select a collection to submit your sketch
We Need Your Support
Since 2008, OpenProcessing has provided tools for creative coders to learn, create, and share over a million open source projects in a friendly environment.
Niche websites like ours need your continued support for future development and maintenance, while keeping it an ad-free platform that respects your data and privacy!
Please consider subscribing below to show your support with a "Plus" badge on your profile and get access to many other features!
CC Attribution ShareAlike
Serpiente roja/Nieve
Ignacio Sainz
xxxxxxxxxx
int rojo = 255;
int tiempo = 0;
int diametro = 10;
void setup() {
size(500,500);
background(0,25,255);
noStroke();
ellipse(100,50,100,100);
ellipse(170,50,150,150);
ellipse(230,30,170,170);
ellipse(450,50,150,150);
fill(0,200,0);
rect(0,400,600,400);
}
void draw() {
tiempo = tiempo + 1;
diametro = int(10 * (1 + sin( tiempo * 2 * PI / frameRate / 5))); // Modifica el diametro del circulo con el paso del tiempo
noStroke();
fill(255, 255, 255,50); // Añade un 50% de transparencia al color
ellipse(mouseX, mouseY, diametro, diametro);
}
See More Shortcuts