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
//based from https://twitter.com/ntsutae/status/1227550470001946624 | |
//https://www.openprocessing.org/sketch/841004 | |
//resource http://mathworld.wolfram.com/HeartCurve.html | |
float C=0, F; | |
Sperm[] Sperm; | |
long time; | |
void setup() { | |
size(1280, 720); | |
Sperm=new Sperm[width]; |
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
//based from: https://twitter.com/ntsutae/status/1232297507192856576 | |
float i,j,t=-10; | |
int w=720; | |
void setup() { | |
size(720, 720); | |
noStroke(); | |
fill(0); | |
} | |
void draw() { | |
background(255); |
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
Slider slider; | |
void setup() { | |
size(720, 720); | |
colorMode(HSB,360); | |
float sliderSize = 400; | |
PVector sliderPos = new PVector((width-sliderSize)/2, height-50); //to put in the middle-bottom screen | |
float startValue = 0; | |
float endValue = 360; | |
slider = new Slider(sliderPos, sliderSize, startValue, endValue,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
Slider slider; | |
long time; | |
boolean glitch = false; | |
float t=0; | |
float x, y, angle, r, n; | |
float sliderSize, startValue, endValue; | |
void setup() { | |
size(730, 730, FX2D); | |
sliderSize = 400; | |
PVector sliderPos = new PVector((width-sliderSize)/2, height-50); //to put in the middle-bottom |
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
//https://twitter.com/VolfeganGeist/status/1241962067109838848 | |
int n, x, y, X, Y, w=720; | |
void setup() { | |
size(720, 720); | |
} | |
void draw() { | |
background(0); | |
loadPixels(); | |
X=0; | |
Y=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
//based on: https://twitter.com/ntsutae/status/1242745365608071169 | |
float a, b, i, C, W=720, H=W/2; | |
void setup() { | |
size(720, 720); | |
strokeWeight(C=20); | |
stroke(W); | |
colorMode(HSB, 360); | |
blendMode(DIFFERENCE); | |
} | |
void draw() { |
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
β¬β¬β¬.β.β¬β¬β¬ | |
.ββββββββ | |
β’β€ ββββββββββββ’β€ | |
ββ β ββ βββββββββββ¬ | |
β₯ββββββ€ | |
βββ©βββ©β | |
β¬ββ¬ | |
β¬ββ¬ | |
β¬ββ¬ | |
β¬ββ¬ |
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
________.β-~~~'"'~~β_ | |
______β-~"-,::<head>'-β | |
____,~''::::' :::::: :\', | |
___,-~//,, "Β―"'"~-~"Β―"-, | |
__|:::|:::-~~---::: --:| | |
(Β―''~-':::'Β―Β°:',::|:Β°-:| | |
__"'-,|:::::: / ~_]\ :,' | |
______|,:::::-~,__,:::/ | |
_____,-"\":'~ββ_::_,-' | |
__β-';;;;\:"-,'~-~"/ |
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
//inspired by Max Cooper - Aleph 2 (Official Video by Martin Krzywinski) | |
//https://www.youtube.com/watch?v=tNYfqklRehM | |
import java.math.*; | |
BigInteger prime; | |
int n = 0; | |
int fontsize=12; | |
int x=0, y=0; | |
int repeat=1; | |
void setup() { | |
size(720, 720); |
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 i, x, y; | |
void setup() { | |
size(1080, 720); | |
background(0); | |
noStroke(); | |
for (i=0; i<1500; i++) { | |
x=random(0, width); | |
y=random(0, height); | |
float alpha=random(20, 200); |