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
WIDTH = 1200 | |
HEIGHT = 800 | |
NO_POINTS = 7 | |
def setup(): | |
# size(WIDTH, HEIGHT) | |
fullScreen() | |
frameRate(15) | |
# noLoop() |
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
NO_POINTS = 5 | |
def setup(): | |
fullScreen() | |
frameRate(15) | |
background(0) | |
def draw(): | |
# background(255) | |
stroke(255, 10) |
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
NO_POINTS = 9 | |
def setup(): | |
fullScreen() | |
frameRate(15) | |
background(0) | |
def draw(): | |
background(0) | |
stroke(255) |
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
NO_POINTS = 7 | |
def setup(): | |
fullScreen() | |
frameRate(15) | |
background(0) | |
# strokeWeight() | |
def draw(): | |
background(0) |
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
FG = color(17, 17, 17, 10) # foreground color | |
BG = "#f3f3f3" # background color | |
WIDTH = 1000 | |
ASPECT_RATIO = 0.666 # !!! copy from console | |
TOTAL_FRAMES = 10 # higher means darker & covering higher percentage of picture | |
LINE_LENGTH = 65 # higher means more blurry & darker | |
GRID_DISTANCE = 15 # if GRID_DISTANCE >> LINE_LENGTH, picture may be incomplete; higher -> lighter |