Interactive experience of materials in a digital spaces, it combines different textures and images of materials randomly creating different compositions as each person attention to detail is different
“material experimentation” by paz
https://openprocessing.org/sketch/874562
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!
mouse, keyboard
CC Attribution ShareAlike
material experimentation
xxxxxxxxxx
int maxImages = 9; //total max of images
int imageIndex = 0; // initial image to be displayed
PImage [] images = new PImage[maxImages];
PFont f;
void setup() {
size(1770, 950);
f = loadFont("SportingGrotesque-Bold-48.vlw");
for (int i = 0; i < images.length; i ++) {
images[i] = loadImage("material" + i + ".png");
}
}
void draw() {
pen();
textFont(f, 40);
fill(240, 255, 255);
textAlign(CENTER);
text("THE MATERIALITY OF DIGITAL CULTURE", 435, 910);
textFont(f, 25);
fill(255);
textAlign(CENTER);
text(" Trace + Press Any Key + Trace Again", 1500, 50);
}
void keyPressed() {
image(images[imageIndex], 0, 0);
imageIndex = int(random(images.length));
}
void pen() {
strokeWeight(2);
stroke(0,0,235);
line(pmouseX, pmouseY, mouseX, mouseY);
}
/** references:
http://learningprocessing.com/examples/chp15/example-15-03-ImageArray1?fbclid=IwAR3bF5Wv9gJxGDM2eutVpqpXP9Iz0jjCtHJToFwGgCgtG9UlL63v6ZxdZ2o
http://learningprocessing.com/examples/chp03/example-03-04-continuousline
*/
See More Shortcuts