Skip to content

Instantly share code, notes, and snippets.

void setup(){
size(600,600);
}
// x = sin(a) allowed us to derive points' coords based on increments of 'a'
// we can use more complex parametric equations to derive x and y coords of
// complex curves based on a changing parameter 't'
// see Bernstein polynomial
//