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")