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
// Made in 10 Minutes | |
// By Jacob Joaquin (@jacobjoaquin) | |
// For Genuary 2023 | |
const nLines = Math.floor(Math.random() * 100) + 50 | |
let v0, v1, p0, p1 | |
let speed0 = Math.floor(Math.random() * 20) + 5 | |
let speed1 = Math.floor(Math.random() * 20) + 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 numLEDs = 16; | |
float LEDRingRadius = 80; | |
ArrayList<LED> ledList; | |
int position = 0; | |
ArrayList<LED> ledEmulatorList; | |
class LED { | |
float x = 0; | |
float y = 0; |
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
/* | |
"Simone Says" | |
Coded by Jacob Joaquin | |
Build Diagram Here: | |
https://www.tinkercad.com/things/kgfQCV9AwxG | |
Requires Bounce2 Library: | |
1. Go to: Sketch->Include Library->Manage Libraries... |
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
/* | |
Oscillators in 3D 20171222 | |
by Jacob Joaquin | |
email: [email protected] | |
twitter: https://twitter.com/JacobJoaquin | |
instagram: https://www.instagram.com/jacobjoaquin/ | |
*/ | |
import processing.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
/* | |
Distortion Tiler | |
by Jacob Joaquin | |
To use: | |
Needs a 500x500 image. Search for "Set image name here" to change filename in code. | |
Find me: | |
https://github.com/jacobjoaquin/ | |
https://twitter.com/JacobJoaquin |
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
/* | |
Solar Flare | |
Jacob Joaquin | |
Find me: | |
https://github.com/jacobjoaquin/ | |
https://hackaday.io/jacobjoaquin | |
https://twitter.com/JacobJoaquin | |
http://jacobjoaquin.tumblr.com/ | |
https://www.instagram.com/jacobjoaquin/ |
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 nFrames = 64; | |
boolean render = false; | |
float phaseInc = 1.0 / (float) nFrames; | |
float phase = 0.0; | |
void settings() { | |
size(500, 500); | |
//pixelDensity(displayDensity()); | |
} |
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; | |
int hueOffset = 0; | |
void setup() { | |
img = loadImage("warholMarilyn.jpg"); | |
surface.setSize(img.width, img.height); | |
colorMode(HSB); | |
} | |
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
boolean captureFrames = false; | |
int nFrames = 120; | |
float phase = 0.0; | |
float phaseInc = 1 / (float) nFrames; | |
MetaPalette mp; | |
int nStrips = 40; | |
int ledsPerStrip = 32 * 5; | |
class MetaPalette { | |
ArrayList<Integer> 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
var nx = 0, | |
ny = 1000, | |
nz = 2000, | |
nInc = 0.008; | |
function setup() { | |
createCanvas(500, 500); | |
colorMode(HSB); | |
} |
NewerOlder