mirror of
https://github.com/linghuam/boutique-books.git
synced 2024-11-21 09:04:56 +00:00
zrender
This commit is contained in:
parent
fad49d69bf
commit
6352527189
@ -386,20 +386,26 @@ function toStatic () {
|
||||
### util.js
|
||||
|
||||
```js
|
||||
function inherits(clazz, baseClazz) {
|
||||
var clazzPrototype = clazz.prototype;
|
||||
function F() {}
|
||||
F.prototype = baseClazz.prototype;
|
||||
clazz.prototype = new F();
|
||||
|
||||
for (var prop in clazzPrototype) {
|
||||
clazz.prototype[prop] = clazzPrototype[prop];
|
||||
function bind(func, context) {
|
||||
var nativeSlice = Array.prototype.slice;
|
||||
var args = nativeSlice.call(arguments, 2);
|
||||
return function() {
|
||||
return func.apply(context, args.concat(nativeSlice.call(arguments)));
|
||||
};
|
||||
}
|
||||
|
||||
function curry(func) {
|
||||
var nativeSlice = Array.prototype.slice;
|
||||
var args = nativeSlice.call(arguments, 1);
|
||||
return function() {
|
||||
return func.apply(this, args.concat(nativeSlice.call(arguments)));
|
||||
}
|
||||
clazz.prototype.constructor = clazz;
|
||||
clazz.superClass = baseClazz;
|
||||
}
|
||||
```
|
||||
|
||||
### vector.js
|
||||
|
||||
向量操作
|
||||
|
||||
## src/animation
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user