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(){ double x; for(int i=1;i<=32;i=i+1){ stroke(152,152,159); line(10*i,0,10*i,320); line(0,10*i,320,10*i); } stroke(61,61,64); line(160,0,160,320); line(0,160,320,160); for(x=-16;x<=16;x=x+0.01){ strokeWeight(2); stroke(28,41,197); point(10*x+160.5,160.5-10*(pow(x,2)/(pow(x,2)-1))); } }
Canvas not supported.
Programado por
Jesús Hernández Bastida
0 votos
140 descargas
6 usos