Extension:processingjs : Différence entre versions
De fablabo
(→donne :) |
(→donne :) |
||
Ligne 53 : | Ligne 53 : | ||
<processingjs> | <processingjs> | ||
− | + | String[] fontList = PFont.list(); | |
+ | println(fontList); | ||
void setup() | void setup() |
Version du 2 avril 2012 à 10:59
l'extension Processingjs permet d'entrer du code processing qui sera directement interprété dans le wiki à l'aide de http://processingjs.org
exemple
<processingjs> void setup(){ size( 200, 200 ); strokeWeight( 10 ); } void draw(){ background(0); ellipse( mouseX, mouseY, 100, 100 ); } </processingjs>
donne :
<processingjs> void setup(){
size( 200, 200 ); strokeWeight( 10 );
}
void draw(){
background(0); ellipse( mouseX, mouseY, 100, 100 );
}
</processingjs>
<processingjs>
void setup(){
size( 600, 100 ); strokeWeight( 10 );
}
void draw(){
background(200,20,10); ellipse( mouseX, mouseY, 100, 100 );
}
</processingjs>
<processingjs>
String[] fontList = PFont.list();
println(fontList);
void setup() {
size(200,200); noLoop();
font = loadFont("images/Fabada-regular.ttf"); textFont(font, 32);
}
void draw() {
background(255); String t = "P.js"; float tw = textWidth(t); fill(0); text(t, (width-tw)/2, (height+32)/2);
} </processingjs>