Thrill of the Arts

Back to Home

Inspired by Vulfpeck

Thrill of the Arts

Technical Implementation

I like minimalist geometric art like Vulfpeck’s Thrill of the Arts album cover. It’s basically just lines with a vertical offset at 75%. A related idea is here.

import numpy as np
import matplotlib.pyplot as plt

x_base = np.array([0, 7.5, 10])
y_base = np.array([1, 1.3, 1])

plt.figure(figsize=(10,5))
for i in range(2):
    for j in range(30):
        x = x_base - 6*i
        y = y_base*j + 6*i
        c = plt.cm.winter(j/29)[:-1]
        plt.plot(x, y, color=(c, 1-0.5*i), linewidth=3)
plt.axis('off')
plt.show()