Movement Of and From Void
macklin celebrini has autism

Origami Around
DEAR READER
Jules of Nature
Show & Tell
NASA
ojovivo
Cosimo Galluzzi

Discoholic 🪩
🩵 avery cochrane 🩵
2025 on Tumblr: Trends That Defined the Year

titsay
Sade Olutola
Lint Roller? I Barely Know Her
will byers stan first human second
Aqua Utopia|海の底で記憶を紡ぐ

No title available

JVL
trying on a metaphor

Product Placement
seen from Bangladesh

seen from Indonesia
seen from United States

seen from United States
seen from United States
seen from United States

seen from United States
seen from United States
seen from Malaysia

seen from United States
seen from United States

seen from United States

seen from United States

seen from Chile
seen from Türkiye

seen from Singapore
seen from United Kingdom
seen from Algeria

seen from Croatia
seen from United States
@smrchrdsn
Movement Of and From Void
public float DOT_DEFAULT_R = 2; public float DOT_MAX_R = 20; public float DOT_SPACING = 20; public float DOT_SHRINK_RATE = 1; public float DOT_EFFECT_R = 60; public float DOT_COLOR_CHANCE= 0.4;
public color[] DOT_COLORS = { color(48, 151, 175), color(167, 116, 14) };
ArrayList<Dot> dots = new ArrayList<Dot>();
void setup() { size(800, 800); pixelDensity(2); background(255); fill(20); float xOffset = 0; for (float y = 0 - DOT_SPACING * 0.5; y < height / DOT_SPACING; y++) { if (y % 2 == 0) { xOffset = 0; } else { xOffset = DOT_SPACING * 0.5; } for (float x = 0 - DOT_SPACING; x < width + DOT_SPACING; x += DOT_SPACING) { dots.add(new Dot(x + xOffset, y * DOT_SPACING)); } } }
void draw() { background(255); for (Dot dot : dots) { dot.grow(); } }
class Dot {
PVector loc; float r; color c;
Dot(float x, float y) { loc = new PVector(x, y); r = DOT_DEFAULT_R; float random = random(1); if (random(1) < DOT_COLOR_CHANCE) { c = DOT_COLORS[int(random(DOT_COLORS.length))]; } else c = color(20); }
void display() { fill(c); noStroke(); ellipse(loc.x, loc.y, r, r); }
void shrink() { if (r > DOT_DEFAULT_R) { r -= DOT_SHRINK_RATE; } }
void grow() { PVector mouse = new PVector(mouseX, mouseY); float d = mouse.dist(loc); if (d < DOT_EFFECT_R) { float _r = map(d, 0, DOT_EFFECT_R, DOT_MAX_R, DOT_DEFAULT_R); if (_r > r) r = _r; } else shrink(); display(); }
}
Artist Intervention: Sound Design5 - 8 PMImagine yourself into a painting with the sounds of New York in the 1920s: birds chirping, car horns blaring, and crowds murmuring. Using a custom designed app by artist Sam Richardson, you can create and share your soundscape with friends and the rest of the PMA360 crowd alike.About Sam Richardsonwww.smrchrdsn.com
This Friday at the Portland Museum of Art I’ll be walking people through basic sound design using an app I developed. Georgia O’Keeffe, Marguerite Thompson Zorach, Florine Stettheimer, and Helen Torr paintings will be on display.
Fish Eye
Something different and minimal
Tauba Auerbach, CMY10, 2008
Experiments In Processing- p5art
@p5art
Jerome Herr
“01110011011000010110111001110011 001000000111010001101001011101000 111001001100101 -310+25”
Dessin numérique-Processing Dimensions variables