Food&Code Food&Code Workshop

Food for thought


Home About

Course by for Food&Code

1) This course is made with words

text("word", 10, 30);

Can use a lot by default (all on your system), can load them online too. Ask us.

    var part;
      
    function setup() {
      createCanvas(windowWidth-20, windowHeight-20);
        background(0);
      part = {};
      part.x = random(100000);
      part.y = random(100000);
    }

    function draw() {
      noStroke();
      fill(255,40);
      part.x+=0.01; part.y+=0.01;
      textFont("Verdana", 30);
      text("Here",  noise(part.x+10)*width,noise(part.y+10)*height);  
    }     

2) Feed on the web