comparison nodejs/animate.js @ 900:f4fd7a16361d

Remove incompleted functions
author Thinker K.F. Li <thinker@codemud.net>
date Fri, 01 Oct 2010 11:18:31 +0800
parents 6044b977ce4f
children 55767e444436
comparison
equal deleted inserted replaced
899:ec94dd788332 900:f4fd7a16361d
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 /* Following functions is not defined completed.
261 Mark it out to prevent error message.
260 262
261 function multilinear(action,start,stages) { 263 function multilinear(action,start,stages) {
262 sys.puts("Multilinear word is not implemented yet"); 264 sys.puts("Multilinear word is not implemented yet");
263 } 265 }
264 266
276 exponential.prototype.update = exponential_update; 278 exponential.prototype.update = exponential_update;
277 exponential.prototype.start = exponential_start; 279 exponential.prototype.start = exponential_start;
278 exponential.prototype.stop = exponential_stop; 280 exponential.prototype.stop = exponential_stop;
279 exponential.prototype.finish = exponential_finish; 281 exponential.prototype.finish = exponential_finish;
280 282
283 */
284
281 function program(words) 285 function program(words)
282 { 286 {
283 this.words = wrods; 287 this.words = wrods;
284 } 288 }
285 289