사용자 삽입 이미지


/***************************************
 * 2008.4 Dongyoon Park
 * cre8ive.park@gmail.com
 * http://www.cre8ive.kr
 ****************************************/

void setup()
{
  size(800,500);    // set screen size.
  background(0);  // set background color.
  smooth();
}

// declare and initialize variables.
int tintVar=100, tintIncrease = 10;
int colorVar1, colorVar2, colorVar3, opacityVar;
int xpos, ypos;

String strText1 = "sadi Communication Design";
PFont font;
font = loadFont("Myriad-BdWeb-70.vlw"); 

void draw()
{

  colorVar1 = int(random(255));
  colorVar2 = int(random(255));
  colorVar3 = int(random(255));
  opacityVar = int(random(100));
 
  xpos = int(random(width-100));
  ypos = int(random(height));

  fill(colorVar1,colorVar2, colorVar3, opacityVar);
  textFont(font);
 
  text(strText1, xpos, ypos);
 
}

Posted by 알 수 없는 사용자