From df09f6ed15e1dec9f5fa0cf10bc4097b8e82ed2c Mon Sep 17 00:00:00 2001 From: sole Date: Mon, 4 Feb 2013 23:34:44 +0000 Subject: [PATCH] 359->360 --- examples/08_repeat.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/08_repeat.html b/examples/08_repeat.html index 64ae62e..b68cc59 100644 --- a/examples/08_repeat.html +++ b/examples/08_repeat.html @@ -34,7 +34,7 @@ function init() { var target1 = document.getElementById( 'target1' ), tween1 = new TWEEN.Tween( target1.dataset ) - .to( { rotation: 359 }, 2000 ) + .to( { rotation: 360 }, 2000 ) .repeat( 1 ) .delay( 1000 ) .onUpdate( function() { @@ -43,7 +43,7 @@ .start(), target2 = document.getElementById( 'target2' ), tween2 = new TWEEN.Tween( target2.dataset ) - .to( { rotation: 359 }, 2000 ) + .to( { rotation: 360 }, 2000 ) .repeat( 5 ) .delay( 1000 ) .onUpdate( function() { @@ -52,7 +52,7 @@ .start(), target3 = document.getElementById( 'target3' ), tween3 = new TWEEN.Tween( target3.dataset ) - .to( { rotation: 359 }, 2000 ) + .to( { rotation: 360 }, 2000 ) .repeat( Infinity ) .delay( 1000 ) .onUpdate( function() {