“Spin Spin Spin” by Mike Jurewicz
https://openprocessing.org/sketch/188525
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
Spin Spin Spin
Jurewicz
xxxxxxxxxx
float angle = 0.0;
//This sets up the variable to be used throughout the sketch
void setup() {
size(800,400);
background(255);
smooth();
}
//Here is the setup for the sketch
void draw(){
fill(255,0,0);
pushMatrix();
translate(mouseX, mouseY);
rotate(angle);
rect(-15,-15,30,30);
angle += 0.1;
popMatrix();
/*This sets up the primary drawing of the sketch, which repeats
continuously.*/
if (mousePressed && mouseButton == LEFT){
fill(0,255,0);
translate(mouseX, mouseY);
rotate(angle);
ellipse(-15,-15,30,30);
strokeWeight(2);
angle += 0.1;
}
/*This first if function creates a green circle (ellipse) and
binds it to the left mluse button.*/
if (mousePressed && mouseButton == RIGHT){
fill(0,0,255);
translate(mouseX, mouseY);
rotate(angle);
triangle(-15,-15,-15,30,30,30);
strokeWeight(3);
angle += 0.1;
/*This second if function creates a blue triangle and binds it
to the right mouse button.*/
}else{
translate(mouseX, mouseY);
rotate(angle);
quad(30,30,130,130,130,130,130,130);
strokeWeight(4);
angle += 0.1;
/*This else function creates a quad variable and draws is when
neither mouse button is pressed.*/
}
}
See More Shortcuts