Mercurial > MadButterfly
changeset 898:6044b977ce4f
Add stub functions
author | wycc |
---|---|
date | Wed, 29 Sep 2010 07:42:19 +0800 |
parents | b38161a3abae |
children | ec94dd788332 |
files | nodejs/animate.js |
diffstat | 1 files changed, 21 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/nodejs/animate.js Wed Sep 29 07:24:01 2010 +0800 +++ b/nodejs/animate.js Wed Sep 29 07:42:19 2010 +0800 @@ -257,6 +257,27 @@ exports.linear = linear; + +function multilinear(action,start,stages) { + sys.puts("Multilinear word is not implemented yet"); +} + +exports.multilinear = multilinear; +multilinear.prototype.update = multilinear_update; +multilinear.prototype.start = multilinear_start; +multilinear.prototype.stop = multilinear_stop; +multilinear.prototype.finish = multilinear_finish; + +function exponential(action,start,stages) { + sys.puts("exponential word is not implemented yet"); +} + +exports.exponential = exponential; +exponential.prototype.update = exponential_update; +exponential.prototype.start = exponential_start; +exponential.prototype.stop = exponential_stop; +exponential.prototype.finish = exponential_finish; + function program(words) { this.words = wrods;