el famoso wiggle,, un clásico sería
pendulo eje z con punto de anclaje mover
freq = 1.0; //oscillations per second
amplitude = 50;
decay = 0; //no decay
amplitude*Math.sin(freq*time*2*Math.PI)/Math.exp(decay*time)
---- ------------------------------------
z eje punto de anclaje
freq = 1.0; //oscillations per second
amplitude = 50;
decay = 0.7;
amplitude*Math.sin(freq*time*2*Math.PI)/Math.exp(decay*time)
wiggle (2,10)
pendulo eje z con punto de anclaje mover
freq = 1.0; //oscillations per second
amplitude = 50;
decay = 0; //no decay
amplitude*Math.sin(freq*time*2*Math.PI)/Math.exp(decay*time)
---- ------------------------------------
z eje punto de anclaje
freq = 1.0; //oscillations per second
amplitude = 50;
decay = 0.7;
amplitude*Math.sin(freq*time*2*Math.PI)/Math.exp(decay*time)
Comentarios
Publicar un comentario