xxxxxxxxxx
59
//
// Put each of your variants into a custom function for
// drawing your artwork with the specified number of shapes
//
function draw8(){
text("The 8-shape version of your painting", 100, 100)
}
function draw16(){
text("The 16-shape version of your painting", 100, 100)
}
function draw32(){
text("The 32-shape version of your painting", 100, 100)
}
function draw64(){
text("The 64-shape version of your painting", 100, 100)
}
//
// This drawBox() function may be easier to use than rect()
// since it allows you to rotate the rectangle around its
// centerpoint at the specified angle
//
function drawBox(x, y, w, h, angle){
push()
rectMode(CENTER)
angleMode(DEGREES)
translate(x+w/2, y+h/2)
rotate(angle)
rect(0, 0, w, h)
pop()
}
//
// Run one of your draw8/16/32/64 functions in setup() to
// preview your work
//
function setup() {
// use the same canvas size for all of your variations
createCanvas(400, 400)
// only use fill() colors
noStroke()
// uncomment one (and only one) of these draw*() lines
// to select which of your custom functions to call:
draw8()
// draw16()
// draw32()
// draw64()
}