“Crowded” by tapirot
https://openprocessing.org/sketch/974754
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!
click left mouse button
CC Attribution ShareAlike
Crowded
xxxxxxxxxx
//UPPER LEFT SPIRAL VARIABLES
float angleOne = 0.0;
float offsetOne = 680;
float scalarOne = 5;
float speedOne = 0.25;
//LOWER RIGHT SPIRAL VARIABLES
float angleTwo = 0.0;
float offsetTwo = 20;
float scalarTwo = 5;
float speedTwo = 0.25;
//HEART ANGLE
float heart = 0.0;
void setup() {
//SIZE AND COLOR OF WINDOW
size(700, 700);
background(0);
smooth();
}
void draw() {
//INTERACTION INSTRUCTIONS. "I" FOR INSTRUCTIONS
String i = "Click your left mouse button to interact";
textSize(30);
text(i, 75, height/2);
//SPIRAL MOTION FOR UPPER LEFT
float x = offsetOne + cos(angleOne) * scalarOne;
float y = offsetOne + sin(angleOne) * scalarOne;
ellipse( x, y, 2, 2);
angleOne += speedOne;
scalarOne += speedOne;
//SPIRAL MOTION FOR LOWER RIGHT
float a = offsetTwo + cos(angleTwo) * scalarTwo;
float b = offsetTwo + sin(angleTwo) * scalarTwo;
ellipse( a, b, 2, 2);
angleTwo += speedTwo;
scalarTwo += speedTwo;
//YES, THERE'S SPIRALS SPINNING BUT WHAT IFFFF
if (mousePressed == true) {
//WHEN MOUSE CLICKS, COLOUR OF SHAPES AND PHRASE CHANGES
stroke(#EBF791);
fill(#CA6AFF);
ellipse( a, b, 10, 10);
ellipse( x, y, 10, 10);
//BUT IF NOT THEN
} else {
//COLORS JUST STAY LIKE THIS
stroke(#6AC4FF);
fill(#FFF174);
textSize(30);
text(i, 75, height/2);
}
//I WANTED HEART TO ROTATE BUT IDK HOW TO
//MAKE IT ROTATE ON ITS ENTER
//SO I MADE IT SCALE. LOOKS LIKE A
//BEATING HEART
//THIS MAKES THE HEART FOLLOW THE MOUSE
translate(mouseX, mouseY);
//HOW BIG I WANT THE SCALE TO BE
scale(sin(heart)+2);
smooth();
//DRAWING THE HEART. THANK YOU PERSON
//FROM THE INTERNET
beginShape();
vertex(50, 15);
bezierVertex(50, -5, 90, 5, 50, 40);
vertex(50, 15);
bezierVertex(50, -5, 10, 5, 50, 40);
endShape();
heart += 0.1;
}
See More Shortcuts