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
| float rAngle =random(0.1,30); | |
| float rFill = random(0,255); | |
| float bgFill = random(200,255); | |
| float rStroke = random(0.25,3); | |
| void setup() { | |
| size(1920, 1080); | |
| smooth(); | |
| frameRate(1000); | |
| } |
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
| PImage img; //PImage | |
| int brushSize = 1; | |
| int alpha = 255; | |
| void setup() { | |
| size(1600, 1200); | |
| img = loadImage("G9.jpg"); | |
| //background(img); | |
| background(0); |
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
| IMPORTANT READ ME////Make sure you CHANGE OUT THE IMAGE TO YOUR OWN IMAGE .svg OR You will see "null Pointer Exception" | |
| //Go to sketch > Show sketch folder > data > yourFile.svg | |
| import geomerative.*; | |
| RShape grp; | |
| RPoint[][] pointPaths; | |
| float xmag, ymag, newYmag, newXmag = 0; | |
| float z = 0; |