Last active
August 29, 2015 14:17
-
-
Save steveostudios/f666d0a12b86b0208002 to your computer and use it in GitHub Desktop.
Revisions
-
steveostudios revised this gist
Mar 24, 2015 . 1 changed file with 6 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,9 @@ /* * Swinging Text * apply on parameters that you want to swing (i.e. x-rotation) * credit: Dan Ebberts */ veloc = 7; amplitude = 90 decay = .7; -
steveostudios renamed this gist
Mar 24, 2015 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
steveostudios revised this gist
Mar 24, 2015 . No changes.There are no files selected for viewing
-
steveostudios created this gist
Mar 24, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ veloc = 7; amplitude = 90 decay = .7; t = time - inPoint; amplitude*Math.cos(veloc*t)/Math.exp(decay*t)