Skip to content

Instantly share code, notes, and snippets.

@REAS
REAS / PDF_Example_02.pde
Last active October 12, 2018 23:41
Create a PDF file with mouse press
import processing.pdf.*; // Import PDF code
boolean recordPDF = false;
int count = 0;
void setup() {
size(600, 600);
}
void draw() {
@REAS
REAS / PDF_Example_01.pde
Last active October 12, 2018 23:43
Create a PDF file and draw to the screen
import processing.pdf.*; // Import PDF code
void setup() {
size(600, 600);
noLoop(); // Run the draw() only once
}
void draw() {
beginRecord(PDF, "line.pdf"); // Start writing to PDF
// START PATTERN
@REAS
REAS / LatentSpace_to_Diagram_02.pde
Created September 11, 2018 20:47
Converts a JSON file with values from -1 to 1 into a line of rectangles moving through hues from orange to blue
float[] latentspace;
String s = "RandGen_20180904-201026_00036"; // JSON file name
void setup() {
size(1000, 100);
colorMode(HSB, 360, 100, 100);
loadData();
int w = 10;
int h = 100;
for (int i = 0; i < latentspace.length; i++) {
@REAS
REAS / LatentSpace_to_Diagram_01.pde
Last active September 10, 2018 21:26
Converts a JSON file with values from -1 to 1 into a line of gray rectangles
float[] latentspace;
String s = "RandGen_20180904-201026_00036"; // JSON file name
void setup() {
size(1000, 100);
loadData();
int w = 10;
int h = 100;
for (int i = 0; i < latentspace.length; i++) {
float g = map(latentspace[i], -1, 1, 0, 255);
@REAS
REAS / TXT
Last active February 1, 2018 20:41
Big Picture, SCI-Arc VS 4201 01, Spring 2018
Big Picture
SCI-Arc VS 4201 01
Spring 2018
Instructors
Ryan Tyler Martinez
Casey Reas
Course Meetings: Thursdays 10:00-1:00PM, 2:00-5:00pm PC Lab North
import gab.opencv.*;
import processing.video.*;
import java.awt.*;
Capture video;
OpenCV opencv;
void setup() {
size(640, 480);
video = new Capture(this, width, height);
import processing.pdf.*;
boolean recordFrame = false;
float x;
float diameter;
void setup() {
size(400, 600);
x = random(0, width);
@REAS
REAS / EmbeddedLoops
Created September 4, 2014 15:47
Embedded Loops for the Buckeyes
size(600, 600);
background(255);
strokeWeight(8);
strokeCap(SQUARE);
int offsetRange = 100;
int rowHeight = 10;
for (int y = 0; y < 600; y += rowHeight) {
@REAS
REAS / PDF Example
Last active August 29, 2015 14:06
PDF Example for the Buckeyes
import processing.pdf.*;
void setup() {
size(600, 600);
//frameRate(1);
}
void draw() {
beginRecord(PDF, "Ex_07_#######.pdf");
int gap = 20;
void setup() {
size(1000, 1000);
strokeWeight(4);
strokeCap(SQUARE);
frameRate(0.5);
}
void draw() {