Mercurial > MadButterfly
comparison nodejs/animate.js @ 898:6044b977ce4f
Add stub functions
author | wycc |
---|---|
date | Wed, 29 Sep 2010 07:42:19 +0800 |
parents | b38161a3abae |
children | f4fd7a16361d |
comparison
equal
deleted
inserted
replaced
897:b38161a3abae | 898:6044b977ce4f |
---|---|
255 linear.prototype.stop = linear_stop; | 255 linear.prototype.stop = linear_stop; |
256 linear.prototype.finish = linear_finish; | 256 linear.prototype.finish = linear_finish; |
257 exports.linear = linear; | 257 exports.linear = linear; |
258 | 258 |
259 | 259 |
260 | |
261 function multilinear(action,start,stages) { | |
262 sys.puts("Multilinear word is not implemented yet"); | |
263 } | |
264 | |
265 exports.multilinear = multilinear; | |
266 multilinear.prototype.update = multilinear_update; | |
267 multilinear.prototype.start = multilinear_start; | |
268 multilinear.prototype.stop = multilinear_stop; | |
269 multilinear.prototype.finish = multilinear_finish; | |
270 | |
271 function exponential(action,start,stages) { | |
272 sys.puts("exponential word is not implemented yet"); | |
273 } | |
274 | |
275 exports.exponential = exponential; | |
276 exponential.prototype.update = exponential_update; | |
277 exponential.prototype.start = exponential_start; | |
278 exponential.prototype.stop = exponential_stop; | |
279 exponential.prototype.finish = exponential_finish; | |
280 | |
260 function program(words) | 281 function program(words) |
261 { | 282 { |
262 this.words = wrods; | 283 this.words = wrods; |
263 } | 284 } |
264 | 285 |