This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| PGraphics g ; | |
| void setup() { | |
| size(500,500); | |
| smooth(8); | |
| noStroke(); | |
| fill(0); | |
| g = createGraphics(270,270); | |
| g.beginDraw(); | |
| g.background(255); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // based on http://www.magneticrealms.com/posts/2014/02/03/a-crt-filter-without-shaders/ | |
| // generateme.tumblr.com | |
| // [email protected] | |
| void setup() { | |
| PImage img = loadImage("w.jpg"); | |
| size(img.width,img.height); | |
| noFill(); | |
| smooth(8); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // generateme.tumblr.com, 2016 | |
| // idea by zach lieberman | |
| // choose variant | |
| int variant = 0; // 0 or 1; | |
| void setup() { | |
| size(800, 800); | |
| background(0, 5, 25); | |
| strokeWeight(0.8); |