Módulo III — Interação (2/2)
A partir de um tutorial de John Park, no Youtube* Interação Código: String [] names = {“Tipografia”,”Animação”,”Interação”,”Composição”,”Desenho”,”Digital”,”Abstração”}; String textHolder = “test”; int a; void setup() { size(900,700); println (names.length); textSize (100); background(#ffebee); textAlign (CENTER); strokeWeight(4); } void draw() { // … Continuar a ler Módulo III — Interação (2/2)