Processing Forum
Investigate and develop i18n strategy (+ think about Tools & Libraries).
Implement i18n routines.
Extract Strings, refactor existing sources.
Add new “Choose Language” UI elements in Preferences window.
Start Processing translation: crowdsourced translation web site.
void setup() {Cheers!
size(640, 360);
// Define colors
b1 = color(255);
b2 = color(0);
c1 = color(204, 102, 0);
c2 = color(0, 102, 153);
noLoop();
}
void draw() {
// Background
setGradient(0, 0, width/2, height, b1, b2, X_AXIS);
setGradient(width/2, 0, width/2, height, b2, b1, X_AXIS);
// Foreground
setGradient(50, 90, 540, 80, c1, c2, Y_AXIS);
setGradient(50, 190, 540, 80, c2, c1, X_AXIS);
}