Toggle navigation
Explora
(current)
Aprende
Crea
Retos
×
Aspectos básicos
void main() {...}
for ( int i = 0 ; i < N ; i++ ) {...}
while (condición) {...}
do {...} while (condición);
if (condición) {...}
if (condición) {...} else {...}
switch (valor) {...}
Mostrar y pedir datos
print()
println()
readInteger()
readDouble()
readChar()
readString()
Funciones matemáticas
abs(n)
log(n)
sqrt(n)
pow(b,e)
floor(n)
ceil(n)
round(n)
sin(n)
cos(n)
tan(n)
asin(n)
acos(n)
atan(n)
random(n)
Funciones gráficas
point(x,y)
line(x1,y1,x2,y2)
ellipse(x,y,w,h)
rect(x,y,w,h)
triangle(x1,y1,x2,y2,x3,y3)
text(msg,x,y)
textWidth(msg)
textSize(n)
background(r,g,b,a)
strokeWeight(n)
stroke(r,g,b,a)
noStroke()
fill(r,g,b,a)
noFill()
image(url, x,y,w,h)
Nuevo
Ayuda
Probar
...
void main() { animate(draw); } int pixel[][] = new int[8][16]; void draw() { background(51); for (int i = 0; i < 8; i++) { for (int j = 0; j < 16; j++) { fill(0); stroke(0); if (pixel[i][j] == 1) { fill(255); stroke(255); } rect(i*20 + 80, j*20, 20, 20); } } if (mousePressed) { if (mouseX >= 80 && mouseX <= 240) { int x = floor((mouseX-80)/20); int y = floor(mouseY/20); pixel[x][y] = (mouseButton==LEFTBUTTON)?1:0; } } if (keyPressed) { if (key == "e") { export(); } } } void export() { int bytes[] = new int[16]; for (int i = 0; i < 16; i++) { bytes[i] = (pixel[0][i]*128) + (pixel[1][i]*64) + (pixel[2][i]*32) + (pixel[3][i]*16) + (pixel[4][i]*8) + (pixel[5][i]*4) + (pixel[6][i]*2) + (pixel[7][i]); } for (int i = 0; i < 16; i++) { String s = " *((uint8_t *)(i+" + i + ")) = " + bytes[i] + ";"; println(s); } animate(noloop); } void noloop() {}
Canvas not supported.
Programado por
segfaultdev
0 votos
236 descargas
24 usos