Skip to content

Commit b2d3ad1

Browse files
committed
Spanish translation of example 20_SteepingFeet.js
1 parent cce9b22 commit b2d3ad1

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/data/examples/es/09_Simulate/20_SteepingFeet.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/*
2-
* @name Stepping Feet Illusion
3-
* @description Stepping feet illusion is a very famous psychological experiment
4-
* Both the bricks will appear to move at different speed
5-
* even though they are moving at the same speed.
6-
* Click the mouse inside Canvas to confirm that
7-
* they are moving at the same speed.
8-
* Contributed by Sagar Arora.
2+
* @name Ilusión de los Pasos
3+
* @description La ilusión de los pasos es un experimento
4+
* psicológico muy famoso. Ambos bloques parecen moverse
5+
* a velocidades diferentes, pero en realidad se mueven
6+
* a la misma velocidad. Haga click con el ratón dentro
7+
* del Canvas para confirmar que se mueven a la misma velocidad.
8+
* Contribución de Sagar Arora.
99
*/
1010

1111
// this class describes the structure
@@ -45,7 +45,7 @@ function setup() {
4545
createP("are moving at same speed or not").style('color','#ffffff');
4646
}
4747

48-
// creating two bricks of
48+
// creating two bricks of
4949
// colors white and black
5050
let brick1 = new Brick("white",100);
5151
let brick2 = new Brick("black",250);
@@ -77,4 +77,4 @@ function createBars() {
7777
if(i%2 == 0)
7878
rect(i*len,height,len,-height);
7979
}
80-
}
80+
}

0 commit comments

Comments
 (0)