


Sort of a meta design. Using the unique shapes of Caslon, trying out some animation techniques of text fitting into paths made with type in drawbot.
It was pretty cool that Ace Hotel retweeted it!
This time, I was inspired by Josef Albers’s “Interaction of Color”
For this exercise, I was experimenting with using random()
for various fills and the type. I was also trying to see how animation, timing, and frame rate works in drawbot. Lots to explore and play with.
This reminds me of one of my favorite books we read to our children, Albers’s Squares and Other Shapes, before working on this design with Juno. Highly recommended.
Here’s the code if you all want to play with it:
NFRAMES = 50
for frame in range(NFRAMES):
newPage(1000,1000)
frameDuration(1/7)
# set a blend mode
blendMode("hardLight")
# draw a rectangle
fill(random(), random(), random(), 1)
# x y w h
rect(100, 100, 400, 400)
fill(random(), random(), random(), 1)
rect(500, 100, 400, 400)
fill(random(), random(), random(), 1)
rect(500, 500, 400, 400)
fill(random(), random(), random(), 1)
rect(100, 500, 400, 400)
fill(random(), random(), random(), 1)
rect(300, 300, 400, 400)
# set a font and font size
font("Futura", 200)
# set a blend mode
blendMode("overlay")
# draw text
fill(random(), random(), random(), 1)
text("Juno", (140, 630))
fill(random(), random(), random(), 1)
text("Ballio", (130, 230))
saveImage(u"~/Desktop/drawBotTest.gif")
I’ve been drawing computationally with Drawbot in Python 3 out of John Maeda’s encouragement and teachings. Much gratitude to John… I’ve been posting some work-in-progress on Twitter, but thought it’d be nice to post it on my blog too as a nice collection of trials, experiments, fails, surprises, and some really cool things that came out of playing with code. 🙂 Stay tuned for more posts on this blog!
First up, this is one of my favorites so far. I love how the colors and dots spiral into this beautiful pattern. I love it so much that I made it a shirt and a sweatshirt on Amazon! Support art, buy a shirt today. 🙂 I got one to check out the quality and I can confirm that it’s very comfortable. The print quality is ace, too!
5000×5000 high res glory
I’m looking to make more computational design shirts too! Stay tuned for more new designs.
In the subsequent posts, I’ll be sharing my fun exports mostly from Drawbot. As well as a few creative experiments I’ve been noodling with.