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
/* | |
* Tiny Orbits | |
* by Yancy Way (Echophon) - twitter.com/echophons - echophon.tumblr.com | |
*/ | |
//requires HYPE.pde (staging) | |
//requires HOrbiter.pde | |
void setup() { | |
size(400, 400); |
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
/* | |
Gyre Undulation - Yancy Way 2014 | |
Requires HYPE.pde | |
Requires HOrbiter.pde | |
*/ | |
HDrawablePool pool; | |
HColorPool colors; | |
HCanvas canvas; |
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
/* | |
* Probably Dots | |
* by Yancy Way (Echophon) - twitter.com/echophons - echophon.tumblr.com | |
*/ | |
//requires HYPE.pde (staging) | |
HDrawablePool pool; | |
void probSize(HDrawable d, float x, float y){ |
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
/* | |
* Hex Melange | |
* by Yancy Way (Echophon) - twitter.com/echophons - echophon.tumblr.com | |
*/ | |
//requires HYPE.pde (staging) | |
HDrawablePool pool; | |
HColorPool colors; |
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
/* | |
* Alt Wave | |
* by Yancy Way (Echophon) - twitter.com/echophons - echophon.tumblr.com | |
*/ | |
//requires HYPE.pde (staging) | |
//requires HOrbiter | |
void setup() { |
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
/* | |
Op Stack - Yancy Way 2014 | |
Requires HYPE.pde | |
*/ | |
float a, b, m, n1, n2, n3, radius; | |
float theta; | |
float r1, r2, r3, r4, r5, r6; |
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
PImage img; | |
void setup(){ | |
size(500,500); | |
smooth(); | |
} | |
void draw(){ | |
background(#000000); |
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
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
<ndbx formatVersion="18" type="file" uuid="a5d3b702-9a9b-4581-9142-807607615942"> | |
<property name="canvasHeight" value="1000"/> | |
<property name="canvasWidth" value="1000"/> | |
<property name="canvasX" value="0"/> | |
<property name="canvasY" value="0"/> | |
<node name="root" prototype="core.network" renderedChild="combine1"> | |
<node name="add1" position="10.00,0.00" prototype="math.add"/> | |
<node name="colorize1" position="1.00,4.00" prototype="corevector.colorize"> | |
<port name="fill" type="color" value="#2b2b2bff"/> |
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
//requires HPolarLayout | |
import processing.pdf.*; | |
HDrawablePool pool; | |
HPolarLayout layout; | |
HColorPool colors; | |
boolean paused = false; | |
boolean record = false; |
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 hype.*; | |
import hype.extended.layout.*; | |
HDrawablePool pool; | |
void setup() { | |
size(800,800); | |
H.init(this).background(#000000); | |
pool = new HDrawablePool(1024); |
OlderNewer