An experiment in exploring lines and colors. This one is special in that I wanted to play with the different ways how an artwork could manifest in its various forms. From Python code in drawbot. To rendering into bitmap and vector. To animation in After Effects. To 3D spatial structural form in Cinema4D. Each has its own interpretation and emotions to them.
As a further exploration of the tunnel piece, I wanted to explore how it could translate in the 3 dimensional space. Thought this iteration in Cinema 4D is a nice translation of the original.
Inspired by Bridget Riley’s works. I started experimenting with squares that are slightly rotated and tiled, which creating some weird optical illusion when moved.
In celebration of the new WordPress 5.0 release, I’m giving my site a new look! It’s using the latest and greatest Gutenberg-ready theme — Twenty Nineteen, designed by my talented Automattic co-workers and friends, Allan Cole and Kjell Reigstad.
Pretty sleek!
I am loving the flexibility of the block editor, and just how intuitive it is to see exactly what your post will look like. I’m still tweaking and playing with things, so more to come.
Another thing that I’m really excited about this WordPress 5.0 release is the release video! I had the pleasure to co-lead the creative direction on this video with my talented co-workers, Matias Ventura and Josepha Haden. We worked with the fine folks over at ThinkMojo to produce this video for us.
The result is an energetic, jazzy piece of animation that showcases the possibilities of our new block editor. Enjoy.
WordPress 5.0 “Bebo” release video
The video was even featured at the end of the State of the Word by Matt Mullenweg at WordCamp US 2018. 🙂
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")