This file contains 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
/** | |
PRINT PAPER PROCESS: MARBLING AND TECHNOLOGY | |
23 FEB 2013, HAMMER MUSEUM | |
UCLA ARTS SOFTWARE STUDIO <http://software.arts.ucla.edu> | |
(Based on code in Dan Shiffman's Nature of Code <http://natureofcode.com/>) | |
Operate the program with the mouse, keyboard, or modify the code. | |
Click to draw a new field |
This file contains 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
/* | |
PROCESSINGJS.COM HEADER ANIMATION | |
MIT License - F1lT3R/Hyper-Metrix | |
Modifed by Casey Reas, 7 Nov 2013 | |
Native Processing Compatible | |
*/ | |
// Set number of circles | |
int count = 90; | |
// Set maximum and minimum circle size |
This file contains 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
""" | |
Explode | |
by Daniel Shiffman. | |
(Rewritten in Python by Jonathan Feinberg.) | |
Mouse horizontal location controls breaking apart of image and | |
Maps pixels from a 2D image into 3D space. Pixel brightness controls | |
translation along z axis. | |
""" | |
This file contains 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
// I think there's a bug in here | |
float magnitude = 0; | |
float baseAngle = 0; | |
int lineSpacer = 4; | |
int yOffset = 80; | |
float cx; | |
float cy; | |
float newcx; |
This file contains 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
import processing.pdf.*; | |
color[] rgb = { | |
#FF0000, #00FF00, #0000FF | |
}; | |
//SPACING BETWEEN LINES | |
float spMin = 2; | |
float spMax = 4; | |
float strokeWidth = 0.5; |
This file contains 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
int gap = 20; | |
void setup() { | |
size(1000, 1000); | |
strokeWeight(4); | |
strokeCap(SQUARE); | |
frameRate(0.5); | |
} | |
void draw() { |
This file contains 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
import processing.pdf.*; | |
void setup() { | |
size(600, 600); | |
//frameRate(1); | |
} | |
void draw() { | |
beginRecord(PDF, "Ex_07_#######.pdf"); |
This file contains 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
size(600, 600); | |
background(255); | |
strokeWeight(8); | |
strokeCap(SQUARE); | |
int offsetRange = 100; | |
int rowHeight = 10; | |
for (int y = 0; y < 600; y += rowHeight) { |
This file contains 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
import processing.pdf.*; | |
boolean recordFrame = false; | |
float x; | |
float diameter; | |
void setup() { | |
size(400, 600); | |
x = random(0, width); |
This file contains 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
import gab.opencv.*; | |
import processing.video.*; | |
import java.awt.*; | |
Capture video; | |
OpenCV opencv; | |
void setup() { | |
size(640, 480); | |
video = new Capture(this, width, height); |
OlderNewer