二维码生成

This commit is contained in:
仲么了
2023-07-24 15:00:19 +08:00
parent 689436759f
commit 863d30ee61
40 changed files with 6103 additions and 35 deletions

View File

@@ -0,0 +1,21 @@
import {getTransferedObjectUUID} from './classUtils';
const name = 'WebGLFrameBuffer';
function uuid(id) {
return getTransferedObjectUUID(name, id);
}
export default class WebGLFramebuffer {
className = name;
constructor(id) {
this.id = id;
}
static uuid = uuid;
uuid() {
return uuid(this.id);
}
}