Lines Matching refs:begin
61 Tween = function(obj, prop, func, begin, finish, duration, suffixe){ argument
62 this.init(obj, prop, func, begin, finish, duration, suffixe)
69 t.begin = 0;
122 return this.func(t, this.begin, this.change, this._duration);
125 this.change = f - this.begin;
128 return this.begin + this.change;
130 t.init = function(obj, prop, func, begin, finish, duration, suffixe){ argument
137 this.begin = begin;
138 this._pos = begin;
188 this.begin = this._pos;
200 this.continueTo(this.begin,this._time);