Orquestra Organismo - Interfaces : ProcessingMovimento

HomePage :: Categories :: PageIndex :: RecentChanges :: RecentlyCommented :: Login/Register
texttext
texttext

Ai vai o esboço para a criação de um display em processing:

PFont fontA;
float a = 100;

void setup()
{
size(400, 200);
stroke(255);
noFill();
frameRate(30);
// Load the font. Fonts must be placed within the data 
// directory of your sketch. A font must first be created
// using the 'Create Font...' option in the Tools menu.
fontA = loadFont("Ziggurat-HTF-Black-32.vlw");
textFont(fontA, 32);
}

void draw() 
{
background(0);
text("interfaces", a, 180);
fill(255);
  a = a - 3;
  if (a < 0) { 
	a = width;
  }
}
Valid XHTML 1.0 Transitional :: Valid CSS :: Powered by WikkaWiki
Page was generated in -0.2322 seconds