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
...
/** * Para que no se rellenen con ningún color las figuras * dibujadas por las funciones ellipse(), triangle() y * rect() se utiliza noFill(). Esta función también * modifica el color de los textos dibujados con la * función text() dejándolos en blanco. **/ void main() { strokeWeight(3); stroke(32,16,128); noFill(); point(160,160); line(10,10,310,10); ellipse(160,50,300, 40); triangle(10,100, 310, 100, 160,150); rect(10,170,300, 50); textSize(32); text("Hola mundo!", 70, 300); }
Canvas not supported.
Programado por
jlaguna
0 votos
2084 descargas
781 usos