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
...
double fpi = 0; double pi = 0; int tku = 1; double sq2 = 0; double last = 0; double sa = 1; double sb = 2; double soa = 2; double sob = 2; int times = 40000; // Ticks por frame void main() { noStroke(); loop(draw); } void draw() { fill(0); rect(15, 0, 220, 45); fill(255); println(sa); println(sb); for (int i = 0; i < times; i++) { // PI fpi += (1.0/((double)pow(tku, 2))); pi = sqrt(fpi*6); tku++; // SQUARE OF 2 soa = sa; sob = sb; sa = sob+soa; sb = (soa*2)+sob; sq2 = sob/soa; } text("PI: " + pi, 20, 20); text("S2: " + sq2, 20, 40); println(sq2); }
Canvas not supported.
Programado por
segfaultdev
0 votos
269 descargas
20 usos