varcitation="I want you to get up right now. Sit up. Go to your windows. Open them and stick your head out and yell - 'I'm as mad as hell and I'm not gonna take this anymore!' Things have got to change. But first, you've gotta get mad!...You've got to say, I'M AS MAD AS HELL, AND I'M NOT GOING TO TAKE THIS ANYMORE!"
2
vartableauDeMots= [];
3
varindex=0;
4
5
functionsetup() {
6
createCanvas(windowWidth, windowHeight);
7
8
tableauDeMots=citation.split(" ");
9
10
}
11
12
functiondraw() {
13
14
textAlign(CENTER,CENTER);
15
16
if ( index<tableauDeMots.length ) {
17
// DESSINER LES MOTS UN PAR UN
18
varrouge=index/(tableauDeMots.length-1) *255; // LE ROUGE EST PROPOERTIONNEL A OU ON EST RENDU DANS LA CITATION
19
background(rouge,0,0);
20
fill(255);
21
textSize(64);
22
text(tableauDeMots[index],width*0.5,height*0.5);
23
24
} else {
25
// DESSINER TOUS LES MOTS AVEC DES POSITIONS ALEATOIRES
“Tableau de texte” by Thomas O Fredericks
https://openprocessing.org/sketch/415521
License CreativeCommons Attribution ShareAlike
https://creativecommons.org/licenses/by-sa/3.0
{{filePath}}
{{width}} x {{height}}
Report Sketch
Oh, that naughty sketch! Please let us know what the issue is below.
Apply Template
Applying this template will reset your sketch and remove all your changes. Are you sure you would like to continue?
Report Sketch
Report Comment
Please confirm that you would like to report the comment below.
We will review your submission and take any actions necessary per our Community Guidelines. In addition to reporting this comment, you can also block the user to prevent any future interactions.
Please report comments only when necessary. Unnecessary or abusive use of this tool may result in your own account being suspended.
Are you sure you want to delete your sketch?
Any files uploaded will be deleted as well.
Delete Comment?
This will also delete all the replies to this comment.
Delete this tab? Any code in it will be deleted as well.
Select a collection to submit your sketch
We Need Your Support
Since 2008, OpenProcessing has provided tools for creative coders to learn, create, and share over a million open source projects in a friendly environment.
Niche websites like ours need your continued support for future development and maintenance, while keeping it an ad-free platform that respects your data and privacy!
Please consider subscribing below to show your support with a "Plus" badge on your profile and get access to many other features!
CC Attribution ShareAlike
Tableau de texte
O Fredericks
xxxxxxxxxx
var citation = "I want you to get up right now. Sit up. Go to your windows. Open them and stick your head out and yell - 'I'm as mad as hell and I'm not gonna take this anymore!' Things have got to change. But first, you've gotta get mad!...You've got to say, I'M AS MAD AS HELL, AND I'M NOT GOING TO TAKE THIS ANYMORE!"
var tableauDeMots = [];
var index = 0;
function setup() {
createCanvas(windowWidth, windowHeight);
tableauDeMots = citation.split(" ");
}
function draw() {
textAlign(CENTER,CENTER);
if ( index < tableauDeMots.length ) {
// DESSINER LES MOTS UN PAR UN
var rouge = index/(tableauDeMots.length-1) * 255; // LE ROUGE EST PROPOERTIONNEL A OU ON EST RENDU DANS LA CITATION
background(rouge,0,0);
fill(255);
textSize(64);
text(tableauDeMots[index],width*0.5,height*0.5);
} else {
// DESSINER TOUS LES MOTS AVEC DES POSITIONS ALEATOIRES
for ( var i =0; i < tableauDeMots.length ; i = i + 1 ) {
textSize(12);
fill(0);
text(tableauDeMots[i],random(width),random(height));
}
}
}
function keyTyped() {
if ( key == " " || key == "n" ) { // La touche espace ou la touche 'n'
index = index + 1;
} else if ( keyCode == ENTER || keyCode == RETURN) {
index = 0;
}
}
See More Shortcuts