Any questions / things I can clarify about the projects or anything else we have covered so far?
Generative art
Setup
# load packageslibrary(tidyverse)library(scico)# set theme for ggplot2ggplot2::theme_set(ggplot2::theme_minimal(base_size =14))# set width of code outputoptions(width =65)# set figure parameters for knitrknitr::opts_chunk$set(fig.width =7, # 7" widthfig.asp =0.618, # the golden ratiofig.retina =3, # dpi multiplier for displaying HTML output on retinafig.align ="center", # center align figuresdpi =300# higher dpi, sharper image)
One overly simple but useful definition is that generative art is art programmed using a computer that intentionally introduces randomness as part of its creation process.
There is randomness to the art, introduced by the computer (the code)
The artist has control over the randomness, as contradictory as that may sound
Generative art: why
Why people create generative art pieces?
Artistic expression
Leveraging computers to generate randomness
…
Why are we learning about generative art?
A different look at data visualization: not for the meaning in the data, but for the visual itself
Great way to practice programming, particularly if you’re into creating art
Opportunity to practice problem solving skills, particularly if you’re sketching first, then creating or reproducing an existing piece
Generative art in use: Book covers
Just one of many examples of generative art as a practical solution by the New York Public Library:
To fill in missing book covers in an ebook-borrowing and reading app
I can plot myself flowers
Let’s make a circle
# make a circle of pointst <-seq(0, 2* pi, length.out =50)x <-sin(t)y <-cos(t)df <-tibble(t, x, y)# plot a circle of pointsggplot(df, aes(x, y)) +geom_point() +coord_equal()
The Golden Angle
The golden angle is the angle subtended by the smaller (red) arc when two arcs that make up a circle are in the golden ratio.
π(3−√5)
The golden angle is the angle separating successive florets on a sunflower.
Petals with the golden angle
# set golden angleangle <- pi * (3-sqrt(5))# set number of pointspoints <-50# make data framedf <-tibble(i =1:points,t = (1:points) * angle,x =sin(t),y =cos(t))# plot points in a spiralggplot(df, aes(x = x * t, y = y * t)) +geom_path(color ="gray") +geom_text(aes(label = i)) +coord_equal()# set golden angleangle <- pi * (3-sqrt(5))# set number of pointspoints <-50# make data framedf <-tibble(i =1:points,t = (1:points) * angle,x =sin(t),y =cos(t))# plot points in a spiralggplot(df, aes(x = x * t, y = y * t)) +geom_path(color ="gray") +geom_text(aes(label = i)) +coord_equal()# set golden angleangle <- pi * (3-sqrt(5))# set number of pointspoints <-50# make data framedf <-tibble(i =1:points,t = (1:points) * angle,x =sin(t),y =cos(t))# plot points in a spiralggplot(df, aes(x = x * t, y = y * t)) +geom_path(color ="gray") +geom_text(aes(label = i)) +coord_equal()# set golden angleangle <- pi * (3-sqrt(5))# set number of pointspoints <-50# make data framedf <-tibble(i =1:points,t = (1:points) * angle,x =sin(t),y =cos(t))# plot points in a spiralggplot(df, aes(x = x * t, y = y * t)) +geom_path(color ="gray") +geom_text(aes(label = i)) +coord_equal()# set golden angleangle <- pi * (3-sqrt(5))# set number of pointspoints <-50# make data framedf <-tibble(i =1:points,t = (1:points) * angle,x =sin(t),y =cos(t))# plot points in a spiralggplot(df, aes(x = x * t, y = y * t)) +geom_path(color ="gray") +geom_text(aes(label = i)) +coord_equal()
Paths to points
# set golden angleangle <- pi * (3-sqrt(5))# set number of pointspoints <-50# make data framedf <-tibble(i =1:points,t = (1:points) * angle,x =sin(t),y =cos(t))# plot points in a spiralggplot(df, aes(x = x * t, y = y * t)) +geom_point() +coord_equal()# set golden angleangle <- pi * (3-sqrt(5))# set number of pointspoints <-50# make data framedf <-tibble(i =1:points,t = (1:points) * angle,x =sin(t),y =cos(t))# plot points in a spiralggplot(df, aes(x = x * t, y = y * t)) +geom_point() +coord_equal()
Without the background
# set golden angleangle <- pi * (3-sqrt(5))# set number of pointspoints <-50# make data framedf <-tibble(i =1:points,t = (1:points) * angle,x =sin(t),y =cos(t))# plot points in a spiralggplot(df, aes(x = x * t, y = y * t)) +geom_point() +coord_equal() +theme_void()# set golden angleangle <- pi * (3-sqrt(5))# set number of pointspoints <-50# make data framedf <-tibble(i =1:points,t = (1:points) * angle,x =sin(t),y =cos(t))# plot points in a spiralggplot(df, aes(x = x * t, y = y * t)) +geom_point() +coord_equal() +theme_void()
More points
# set golden angleangle <- pi * (3-sqrt(5))# set number of pointspoints <-100# make data framedf <-tibble(i =1:points,t = (1:points) * angle,x =sin(t),y =cos(t))# plot points in a spiralggplot(df, aes(x = x * t, y = y * t)) +geom_point() +coord_equal() +theme_void()# set golden angleangle <- pi * (3-sqrt(5))# set number of pointspoints <-100# make data framedf <-tibble(i =1:points,t = (1:points) * angle,x =sin(t),y =cos(t))# plot points in a spiralggplot(df, aes(x = x * t, y = y * t)) +geom_point() +coord_equal() +theme_void()
Adjust points
# set golden angleangle <- pi * (3-sqrt(5))# set number of pointspoints <-100# make data framedf <-tibble(i =1:points,t = (1:points) * angle +20,x =sin(t),y =cos(t))# plot points in a spiralggplot(df, aes(x = x * t, y = y * t)) +geom_point() +coord_equal() +theme_void()# set golden angleangle <- pi * (3-sqrt(5))# set number of pointspoints <-100# make data framedf <-tibble(i =1:points,t = (1:points) * angle +20,x =sin(t),y =cos(t))# plot points in a spiralggplot(df, aes(x = x * t, y = y * t)) +geom_point() +coord_equal() +theme_void()
Formalize a system
Write a function: build_art()
build_art <-function() {# set golden angle angle <- pi * (3-sqrt(5))# set number of points points <-100# make data frametibble(i =1:points,t = (1:points) * angle +20,x =sin(t),y =cos(t) )}