All pastes #2086409 Raw Edit

Stuff

public text v1 · immutable
#2086409 ·published 2011-10-03 09:45 UTC
rendered paste body

PFont fontA;

void setup() 
{
  size(800, 200);
  background(0);
  smooth();
  fontA = loadFont("CourierNew36.vlw");
  textFont(fontA, 32);
} 

void draw() 
{
  fill(200);

  text("jag gillar potatis", 10, 40);
}