#natureofcode
Explore tagged Tumblr posts
Video
instagram
PROGRAMMING POSTERS #55 Studying „The Nature of Code“. #processing #creativecoding #generative #generativedesign #creativeappsnet #poster #posterreposter #posterdesign #itsnicethat #posterlabs #graphicdesign #aiga #posterunion #typosters #thenatureofcode #natureofcode #shiffman https://www.instagram.com/p/BrJMiljh16W/?utm_source=ig_tumblr_share&igshid=ft2nki967e08
#55#processing#creativecoding#generative#generativedesign#creativeappsnet#poster#posterreposter#posterdesign#itsnicethat#posterlabs#graphicdesign#aiga#posterunion#typosters#thenatureofcode#natureofcode#shiffman
2 notes
·
View notes
Photo

Author of Mai’au and Ikekumu for Kuaiwi Academy . Visual photojournalism on @chickswhorip and @hawaiianwatermovement . A 10 year Makahiki Anniversary to e-curriculum and in-person workshops. #seo #natureofcode #authorsofinstagram #author #copyright #illustratorstoryboard #facebookmemories #visualcommunicationexperts https://www.instagram.com/p/CaJiHexLWDBXSFJy6uf2UyJDsD5_m1OKkulH_M0/?utm_medium=tumblr
#seo#natureofcode#authorsofinstagram#author#copyright#illustratorstoryboard#facebookmemories#visualcommunicationexperts
1 note
·
View note
Photo

Day 9 - pushing the type experiments further by redrawing the characters with particles #processing #generativeart #creativecoding #everyday #dailydesign #dontbreakthechain #typeart #particles #natureofcode
#generativeart#typeart#dailydesign#creativecoding#natureofcode#everyday#processing#dontbreakthechain#particles
6 notes
·
View notes
Photo
Day 73 NOC Koch Line Fractals
9 notes
·
View notes
Video
tumblr
Day 088 | Suspension 2
There’s this moment when I swivel around the rope where I hit resistance, I feel like I might stop, then the momentum kicks back up again and lifts me up.
Here’s the code
1 note
·
View note
Photo
44/100 - Fractals Recursive Lines
20 notes
·
View notes
Photo
1 note
·
View note
Video
tumblr
import java.util.Random;
Random generator; void setup() { size(1080, 1080); generator = new Random(); }
void draw() { background(25);
float h = (float)generator.nextGaussian(); h = h*800; h = h+80;
fill(200, 90, 0); ellipse(width/2, height/2, h, h); //saveFrame("output/orange_dot_####.png"); }
#processing#code#motiongraphics#practices#java#media art#new media#digital art#orange#animation#natureofcode#generative art#visual art
0 notes
Photo

"The bees knew what human mathematicians didn't know for thousands of years." - Prof Brian Cox. A hexagon has always been my favourite shape. It underpinned my learning for visual programming. Turns out it is the most efficient shape of all. . . . . #wonder #naturalworld #making #holograms #make #diy #craft #holidayfun #coding #natureofcode #programming #woodstock #capetown (at Cape Town, Western Cape)
#diy#craft#capetown#programming#coding#wonder#make#making#woodstock#holidayfun#holograms#naturalworld#natureofcode
0 notes
Video
instagram
Processing iteration 2 #natureofcode #digitalgraphics #creativecoding #processing #codingtrain
0 notes
Video
tumblr
Matter.jsで遊んでるなう ( ˘ω˘ ) ピンボール風に、障害物にぶつかると跳ね返る感じにしてみた! https://shumpei20190120.netlify.com/ #DailyChallenge #CodingChallenge #062 #20190120 #mediaart #programming #design #p5js #matterjs #natureofcode #pinball #colorful
0 notes
Video
instagram
Getting yesterday’s random walk code to get colors from an image and be constrained to the size of the image wasn’t too hard. A rather abstracted self portrait. Maybe tomorrow I can turn that walker to an array of walker’s for more dramatic effect. #processing #the natureofcode https://www.instagram.com/p/BsHSmWpFOjl/?utm_source=ig_tumblr_share&igshid=9tk3zaxh36f1
0 notes
Photo
Day 91 NOC Genetic Algorithms
1 note
·
View note
Video
tumblr
Day 076 | Suspension
Today I was inspired by the moment of suspension right after I caught the silks in yesterday’s video.
Here’s the code
1 note
·
View note
Photo
43/100 - Fractals Circles
9 notes
·
View notes
Text
Pizza @ ITP - Implementation
My favorite topic from the Nature of Code (Animation and Physics) class was autonomous agents. I’ve been interested in the field of crowd simulation from before so I wanted to delve more into this topic. I decided to simulate the one of the most exciting moment at ITP -- when pizzas arrive on the floor.
I started by making agents those are attracted to the closest pizza. When an agent get to the closest pizza, they eat a slice, smile, and stay there.
Progress 1: Video
Based on the first version, I added some more features to the agents so they... - repel each other so they don’t collide - move away from the pizza after they eat - get hungry again after a certain amount of time from eating - bounce off when they hit the walls - the size of ellipses show how hungry/full students are (bigger means full)
vimeo
I spent a lot of time to make the students waiting in a line when another student is eating a pizza, but haven’t got there yet. Although the class is over, I’m interested in going further with this so I’ll keep working on it.
It was a good experience for me practicing object oriented programming as well as studying more about autonomous agents. I find myself going through a process of “writing” when I code. I write a dirty and long draft, revise, revise, revise, delete, delete, delete, revise, revise... and then finally get to a cleaner and shorter version.
The code with comments is here on my GitHub.
Credit: The steering part of the code is based on Dan Shiffman’s Seek example and Separation example.
0 notes