TUTORIAL QUICK LINKS



Letter Design by Yeohyun Ahn and layout design by John Page Corrigan by using Ricard Marxer's Caligraft


How to Adjust Color
:
This allows to one to specify the color of objects within the display window. The numeric values in the function of fill, here for example, fill(200,10,20);, define the RGB proportions, which stands for red, green and blue, the standardized screen color system, with which you are probably familiar.



PFont myFont;
void setup() {
size(200, 200);
background(255,255,255);
myFont = createFont("Univers", 32);
textFont(myFont);
fill(200,10,20);
translate(55,90);
text("TYPE");
}

For more information: the book, TYPE+CODE Processing for Graphic designers.