This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Physics stolen from: | |
# http://giphy.com/gifs/wave-circle-point-13ePqdDflwat9e | |
def blobPos(pt, r, a): | |
x, y = pt | |
x += cos(a) * r | |
y += sin(a) * r | |
return (x, y) | |
def drawGrid(cells): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# FREQUENCY = 1 | |
# http://dailydrawbot.tumblr.com/post/135252661206/the-blob | |
# FREQUENCY = 2 | |
# http://dailydrawbot.tumblr.com/post/135266061309/the-blob-2 | |
def centerOval(pt, radiusX, radiusY): | |
x, y = pt | |
oval(x - radiusX, y - radiusY, 2 * radiusX, 2 * radiusY) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This script is part of a tutorial screencast: https://vimeo.com/149247423 | |
CANVAS = 500 | |
SQUARESIZE = 158 | |
NSQUARES = 50 | |
SQUAREDIST = 6 | |
width = NSQUARES * SQUAREDIST | |
NFRAMES = 50 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# An interpretation of Marcel Duchamp's Rotoreliefs, as seen in his 1926 movie Anemic Cinema: | |
# https://www.youtube.com/watch?v=dXINTf8kXCc | |
def circle(pt, radius): | |
diameter = 2 * radius | |
x, y = pt | |
oval(x - radius, y - radius, diameter, diameter) | |
canvasSize = 500 | |
nFrames = 64 # 64 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# A moving tribute to Ellsworth Kelly's "Seine" (1951). | |
from random import seed # seed() allows us to get repeatable pseudo-noise | |
def expandGrid(pixels): | |
assert len(pixels) % 2 | |
mid = len(pixels) // 2 | |
midColumn = pixels[mid] | |
pixels.insert(mid + 1, list(midColumn)) | |
pixels.insert(mid + 0, list(midColumn)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Generate a jellyfish-like pulsating blobby animation. | |
from random import seed | |
def varyPoint(pt, radius, phase): | |
x, y = pt | |
dx = radius * cos(phase) | |
dy = radius * sin(phase) | |
return x + dx, y + dy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# http://dailydrawbot.tumblr.com/post/136811506080/circles-after-victor-vasarely-source-code | |
# | |
# Based on works by Victor Vasarely | |
# https://s-media-cache-ak0.pinimg.com/originals/a6/df/1f/a6df1fc5d2dd07d79a44c3aea5172b59.jpg | |
# https://s-media-cache-ak0.pinimg.com/736x/1e/38/82/1e38820f1304c8750de216a31a5f5abe.jpg | |
# http://interiorator.com/wp-content/uploads/2013/07/Vasarely-01.jpg | |
def circle(pt, radius): | |
diameter = 2 * radius | |
x, y = pt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This borrows heavily from: | |
# http://jsfiddle.net/Rebug/5uLr7s6o/ | |
# | |
# Resulting gif: | |
# http://dailydrawbot.tumblr.com/post/134989689114/an-archimedean-spherical-spiral | |
import math | |
import colorsys | |
def circle(pt, radius): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# nCirclesH = 18; nCirclesV = 6: | |
# http://dailydrawbot.tumblr.com/post/138985675364/psychodonut-2 | |
# nCirclesH = 38; nCirclesV = 28: | |
# http://dailydrawbot.tumblr.com/post/139047595845/psychodonut-3 | |
def project(x, y, innerR, outerR, phase): | |
# convert from "donut space" to normal space | |
angle = 2 * pi * x | |
f = (cos(phase + pi * y) + 1) / 2 | |
R = innerR + f * (outerR - innerR) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# http://dailydrawbot.tumblr.com/post/141565208389/oscilloscope-lissajous | |
canvasSize = 500 | |
nFrames = 20 | |
nSteps = 20 | |
radius = 195 | |
nEchoes = 20 | |
nScopeLines = 10 | |
xFrequency = 3 | |
yFrequency = 4 |
OlderNewer