“mapping” by Mike Jurewicz
https://openprocessing.org/sketch/186020
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
mapping
Jurewicz
xxxxxxxxxx
size(800,500);
background(89,100,200);
smooth();
noStroke();
/*
These four statements help set up the basics for the sketch.
The first two set up the size and color of the canvas while the
last two set the standards for the sketch itself.
*/
for (int i = 0; i <=width; i += 60){
for (int z = 0; z <=width/1.5; z += 20){
float q = map(i,z,80,100,30);
fill(180, 150);
triangle(i,z,125,25,225,125);
ellipse(8,z,q,3);
rect(5,i,q,4);
ellipse(i,1,2,q);
}
}
/*
This is a for loop within a for loop, which allow for the creation
of a repeating patern across the body of the canvas with just the
variables seen above. It also features the use of the map function,
which helps to not only add another variable, but also simplify the
math used in creating the sketch.
*/
See More Shortcuts